Fixed the setup script to ensure that doesn't produce errors when creating .deb packages

Updated to version 4.9.0
This commit is contained in:
Sergio Costas 2018-04-08 18:49:45 +02:00
parent 6b3b7ccf81
commit 810495c0d7
2 changed files with 85 additions and 80 deletions

View file

@ -1,4 +1,9 @@
## History of versions ##
# History of versions #
* version 4.9.0 (2018-04-08)
* Fixed a division by 0 when it is not possible to get the original aspect ratio
* Added extra check for MSGFMT binary, needed to install Devede
* version 4.8.12 (2018-01-21)
* Fixed the icons in the main window

View file

@ -44,7 +44,7 @@ def get_data_files():
def compile_translations():
if (os.system("msgfmt -V") != 0):
if (os.system("msgfmt -V > /dev/null") != 0):
print('You need the binary "msgfmt" (from "gettext") to compile the translations. Aborting')
sys.exit(-1)
@ -81,7 +81,7 @@ except:
setup(
name='devedeng',
version='4.8.12',
version='4.9.0',
description='A video DVD creator',
long_description="A program that allows to create video DVDs",