mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-09 08:57:46 +02:00
2022-10-02 Fred Gleason <fredg@paravelsystems.com>
* Incremented the package version to 4.0.0rc0. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
c9fcf7b51b
commit
de392e43b0
@ -23454,3 +23454,5 @@
|
|||||||
2022-09-30 Fred Gleason <fredg@paravelsystems.com>
|
2022-09-30 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a regression in rdcatchd(8) that caused posted podcast
|
* Fixed a regression in rdcatchd(8) that caused posted podcast
|
||||||
items to be given the incorrect title.
|
items to be given the incorrect title.
|
||||||
|
2022-10-02 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Incremented the package version to 4.0.0rc0.
|
||||||
|
14
NEWS
14
NEWS
@ -1,31 +1,31 @@
|
|||||||
The NEWS file for the Rivendell package.
|
The NEWS file for the Rivendell package.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
v4.0.0beta3int4 -- 26 September 2022
|
v4.0.0rc0 -- 2 October 2022
|
||||||
|
|
||||||
Internal test release.
|
First Release Candidate
|
||||||
|
|
||||||
Major Changes Between v3.x and v4.x:
|
Major Changes Between v3.x and v4.x:
|
||||||
Qt Toolkit. Rivendell v4.x uses and is fully compatibile with major
|
Qt Toolkit. Rivendell v4.x uses and is fully compatibile with major
|
||||||
version 5 of Qt (Qt5). See the INSTALL documents for specifics.
|
version 5 of Qt (Qt5). See the INSTALL documents for specifics.
|
||||||
|
|
||||||
Date/Time Customizability. Date/Time presentation formats can now be
|
Date/Time Customizability. Date/Time presentation formats can now be
|
||||||
customized on the basis of site perferences.
|
customized on the basis of site preferences.
|
||||||
|
|
||||||
MySQL Compatibility. Rivendell v4.x aims for full compatibility with
|
MySQL Compatibility. Rivendell v4.x aims for full compatibility with
|
||||||
MySQL 8.0 and earlier versions in their default installation
|
MySQL 8.0 and earlier versions in their default installation
|
||||||
configurations.
|
configurations.
|
||||||
|
|
||||||
RDAirPlay. The rdairplay(1) has been completely overhauled, and now
|
RDAirPlay. The rdairplay(1) module has been completely overhauled, and
|
||||||
supports dynamic resizeability as well as a revamped level metering
|
now supports dynamic resizeability as well as a revamped level metering
|
||||||
system.
|
system.
|
||||||
|
|
||||||
RDPanel. The rdpanel(1) now supports dynamic resizing.
|
RDPanel. The rdpanel(1) module now supports dynamic resizing.
|
||||||
|
|
||||||
Many bug and regression fixes. See the 'ChangeLog' for details.
|
Many bug and regression fixes. See the 'ChangeLog' for details.
|
||||||
|
|
||||||
Database Update:
|
Database Update:
|
||||||
This version of Rivendell uses database schema version 356, and will
|
This version of Rivendell uses database schema version 358, and will
|
||||||
automatically upgrade any earlier versions. To see the current schema
|
automatically upgrade any earlier versions. To see the current schema
|
||||||
version prior to upgrade, see RDAdmin->SystemInfo.
|
version prior to upgrade, see RDAdmin->SystemInfo.
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
4.0.0beta3int4
|
4.0.0rc0
|
@ -1,7 +1,7 @@
|
|||||||
This directory contains the canonical version strings for Rivendell
|
This directory contains the canonical version strings for Rivendell
|
||||||
and its various components. Each version definition consists of a
|
and its various components. Each version definition consists of a
|
||||||
file containing the version string on a single line. THERE MUST BE
|
file containing the version string on a single line. THERE MUST BE
|
||||||
NO WHITESPACE,NEWLINE OR CARRIAGE RETURN CHARACTERS!
|
NO WHITESPACE,NEWLINE OR CARRIAGE RETURN CHARACTERS IN THESE STRINGS!
|
||||||
|
|
||||||
PACKAGE_VERSION - Primary version string for Rivendell itself.
|
PACKAGE_VERSION - Primary version string for Rivendell itself.
|
||||||
See https://semver.org/.
|
See https://semver.org/.
|
||||||
@ -9,23 +9,23 @@ PACKAGE_VERSION - Primary version string for Rivendell itself.
|
|||||||
RIVWEBCAPI_CURRENT - ABI versioning for rivwebcapi. Each file should contain
|
RIVWEBCAPI_CURRENT - ABI versioning for rivwebcapi. Each file should contain
|
||||||
RIVWEBCAPI_REVISION - a single integer, updated as follows:
|
RIVWEBCAPI_REVISION - a single integer, updated as follows:
|
||||||
RIVWEBCAPI_AGE
|
RIVWEBCAPI_AGE
|
||||||
#
|
|
||||||
# From http://www.gnu.org/software/libtool/manual.html#Updating-version-info
|
From http://www.gnu.org/software/libtool/manual.html#Updating-version-info
|
||||||
#
|
|
||||||
# 1. Start with version information of 0:0:0 for each libtool library.
|
1. Start with version information of 0:0:0 for each libtool library.
|
||||||
# 2. Update the version information only immediately before a public
|
2. Update the version information only immediately before a public
|
||||||
# release of your software. More frequent updates are unnecessary,
|
release of your software. More frequent updates are unnecessary,
|
||||||
# and only guarantee that the current interface number gets larger
|
and only guarantee that the current interface number gets larger
|
||||||
# faster.
|
faster.
|
||||||
# 3. If the library source code has changed at all since the last update,
|
3. If the library source code has changed at all since the last update,
|
||||||
# then increment 'RIVWEBCAPI_REVISION' (c:r:a becomes c:r+1:a).
|
then increment 'RIVWEBCAPI_REVISION' (c:r:a becomes c:r+1:a).
|
||||||
# 4. If any interfaces have been added, removed, or changed since the last
|
4. If any interfaces have been added, removed, or changed since the last
|
||||||
# update, increment 'RIVWEBCAPI_CURRENT', and set 'RIVWEBCAPI_REVISION'
|
update, increment 'RIVWEBCAPI_CURRENT', and set 'RIVWEBCAPI_REVISION'
|
||||||
# to 0.
|
to 0.
|
||||||
# 5. If any interfaces have been added since the last public release, then
|
5. If any interfaces have been added since the last public release, then
|
||||||
# increment 'RIVWEBCAPI_AGE'.
|
increment 'RIVWEBCAPI_AGE'.
|
||||||
# 6. If any interfaces have been removed since the last public release,
|
6. If any interfaces have been removed since the last public release,
|
||||||
# then set 'RIVWEBCAPI_AGE' to 0.
|
then set 'RIVWEBCAPI_AGE' to 0.
|
||||||
|
|
||||||
PYTHONAPI_VERSION - Version string for the Python components beneath '/apis/'.
|
PYTHONAPI_VERSION - Version string for the Python components beneath '/apis/'.
|
||||||
See PEP 440 [https://www.python.org/dev/peps/pep-0440/]
|
See PEP 440 [https://www.python.org/dev/peps/pep-0440/]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user