upstream: 8:df8ab86066ea [preparations for 0.79.9 rollout]

This commit is contained in:
Stéphane Lesimple
2021-10-03 17:18:20 +02:00
parent 90b5ab6443
commit a8eb4acf08
4 changed files with 15 additions and 4 deletions

View File

@@ -20,6 +20,11 @@
# You should have received a copy of the GNU General Public License
# along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
0.79.9 12-05-2021
- Revised code for clean compile under gcc-10 and Slackware 15
- added -Wno-deprecated-declarations to shield against a flood of warnings
resulting from gtk-2 / glib mismatches
0.79.8 11-05-2021
- Revised code for clean compile under gcc-8 and Debian 10 (Buster).
- Simplyfied display of URLS and PDF via xdg-open

5
TODO
View File

@@ -7,18 +7,17 @@ Versions 0.79.x: development releases
work in progress (this release):
- clean build fpr gcc-8 and Debian Buster (Work in progress)
- clean build for gcc-10 (Slackware 15, Debian testing)
upcoming (next releases):
- clean build for gcc-10 (Slackware 15, Debian testing)
- split GUI code from core source to allow for command-line only build
- remove obsolete features, especially from the GUI
Versions 0.80.x: development releases
* gtk-4 migration
* lots of micro releases to revive the project and resolve outstanding issues
- remove obsolete features, especially in the GUI
- upgrade from gtk-2 to gtk-4
- re-introduce adaptive reading
- ... many more will likely be added ...

3
configure vendored
View File

@@ -2,6 +2,7 @@
# dvdisaster: Additional error correction for optical media.
# Copyright (C) 2004-2018 Carsten Gnoerlich.
# Copyright (C) 2019-2021 The dvdisaster development team.
#
# Email: support@dvdisaster.org
#
@@ -38,7 +39,7 @@ fi
# Set the package name and version
PACKAGE dvdisaster 0.79.8
PACKAGE dvdisaster 0.79.9
DEFINE_INT PATCHLEVEL 9
DEFINE_STRING HAVE_UNSTABLE_RELEASE 1
DEFINE_STRING HOMEPAGE "https://dvdisaster.jcea.es"

View File

@@ -24,6 +24,9 @@ echo
ADDED=0
echo "Files and dirs ADDED in this distribution:"
for i in $(find .); do
if test "${i:0:9}" == "./PRIVATE";
then continue;
fi
if test -d $i && ! test -e $ref/$i; then
ADDED=$((ADDED+1))
echo " Dir : $i"
@@ -45,6 +48,9 @@ REMOVED=0
echo
echo "Files and dirs REMOVED in this distribution:"
for i in $(find .); do
if test "${i:0:5}" == "./.hg";
then continue;
fi
if test -d $i && ! test -e $new/$i; then
REMOVED=$((REMOVED+1))
echo " Dir : $i"