diff options
-rw-r--r-- | CHANGELOG | 14 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | lib/isodumper.py | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -1,6 +1,20 @@ The initial state comes from https://launchpad.net/usb-imagewriter The modifications are: +IsoDumper 0.51 +------------ + - Better managing grayed or enabled widgets + - Deal with device selection + - Better managing names in file picker buttons + - Reduce the size of dialog windows + - Clean code + - Add new design + - Change Maindialog to PopupDialog, to have a smaller window, nicer. + - Add comments + - Update some strings for better language + - Correction for closing application, without segfault. + - Format the messages + IsoDumper 0.50 ------------ - yui release @@ -30,7 +30,7 @@ DIRS = polkit POFILES = po PACKAGE = isodumper -VERSION = 0.50 +VERSION = 0.51 GITPATH = git://git.mageia.org/software/isodumper all: dirs pofiles diff --git a/lib/isodumper.py b/lib/isodumper.py index 0229a20..e9a877e 100644 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -586,7 +586,7 @@ The fields of the main window are as follows:<BR />\ def __init__(self,user): APP="isodumper" DIR="/usr/share/locale" - self.RELEASE="v0.50" + self.RELEASE="v0.51" gettext.bindtextdomain(APP, DIR) gettext.textdomain(APP) |