upstream: 8:df8ab86066ea [preparations for 0.79.9 rollout]
This commit is contained in:
@@ -20,6 +20,11 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
|
# 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
|
0.79.8 11-05-2021
|
||||||
- Revised code for clean compile under gcc-8 and Debian 10 (Buster).
|
- Revised code for clean compile under gcc-8 and Debian 10 (Buster).
|
||||||
- Simplyfied display of URLS and PDF via xdg-open
|
- Simplyfied display of URLS and PDF via xdg-open
|
||||||
|
|||||||
5
TODO
5
TODO
@@ -7,18 +7,17 @@ Versions 0.79.x: development releases
|
|||||||
|
|
||||||
work in progress (this release):
|
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):
|
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
|
- 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
|
Versions 0.80.x: development releases
|
||||||
* gtk-4 migration
|
* gtk-4 migration
|
||||||
* lots of micro releases to revive the project and resolve outstanding issues
|
* 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
|
- upgrade from gtk-2 to gtk-4
|
||||||
- re-introduce adaptive reading
|
- re-introduce adaptive reading
|
||||||
- ... many more will likely be added ...
|
- ... many more will likely be added ...
|
||||||
|
|||||||
3
configure
vendored
3
configure
vendored
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
# dvdisaster: Additional error correction for optical media.
|
# dvdisaster: Additional error correction for optical media.
|
||||||
# Copyright (C) 2004-2018 Carsten Gnoerlich.
|
# Copyright (C) 2004-2018 Carsten Gnoerlich.
|
||||||
|
# Copyright (C) 2019-2021 The dvdisaster development team.
|
||||||
#
|
#
|
||||||
# Email: support@dvdisaster.org
|
# Email: support@dvdisaster.org
|
||||||
#
|
#
|
||||||
@@ -38,7 +39,7 @@ fi
|
|||||||
|
|
||||||
# Set the package name and version
|
# Set the package name and version
|
||||||
|
|
||||||
PACKAGE dvdisaster 0.79.8
|
PACKAGE dvdisaster 0.79.9
|
||||||
DEFINE_INT PATCHLEVEL 9
|
DEFINE_INT PATCHLEVEL 9
|
||||||
DEFINE_STRING HAVE_UNSTABLE_RELEASE 1
|
DEFINE_STRING HAVE_UNSTABLE_RELEASE 1
|
||||||
DEFINE_STRING HOMEPAGE "https://dvdisaster.jcea.es"
|
DEFINE_STRING HOMEPAGE "https://dvdisaster.jcea.es"
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ echo
|
|||||||
ADDED=0
|
ADDED=0
|
||||||
echo "Files and dirs ADDED in this distribution:"
|
echo "Files and dirs ADDED in this distribution:"
|
||||||
for i in $(find .); do
|
for i in $(find .); do
|
||||||
|
if test "${i:0:9}" == "./PRIVATE";
|
||||||
|
then continue;
|
||||||
|
fi
|
||||||
if test -d $i && ! test -e $ref/$i; then
|
if test -d $i && ! test -e $ref/$i; then
|
||||||
ADDED=$((ADDED+1))
|
ADDED=$((ADDED+1))
|
||||||
echo " Dir : $i"
|
echo " Dir : $i"
|
||||||
@@ -45,6 +48,9 @@ REMOVED=0
|
|||||||
echo
|
echo
|
||||||
echo "Files and dirs REMOVED in this distribution:"
|
echo "Files and dirs REMOVED in this distribution:"
|
||||||
for i in $(find .); do
|
for i in $(find .); do
|
||||||
|
if test "${i:0:5}" == "./.hg";
|
||||||
|
then continue;
|
||||||
|
fi
|
||||||
if test -d $i && ! test -e $new/$i; then
|
if test -d $i && ! test -e $new/$i; then
|
||||||
REMOVED=$((REMOVED+1))
|
REMOVED=$((REMOVED+1))
|
||||||
echo " Dir : $i"
|
echo " Dir : $i"
|
||||||
|
|||||||
Reference in New Issue
Block a user