diff options
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | lib/isodumper.py | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ The modifications are: +IsoDumper 1.17 +-------------- + - check SHA3-512 instead of SHA512 + - add description for exFat + - update translations + IsoDumper 1.16 -------------- - add format exFAT for formatting the device @@ -33,7 +33,7 @@ DBUSDIR=$(SYSCONFDIR)/dbus-1 SYSTEMDCONFDIR=$(LIBDIR)/systemd/system/ PACKAGE = isodumper -VERSION = 1.16 +VERSION = 1.17 GITPATH = git://git.mageia.org/software/isodumper all: dirs pofiles diff --git a/lib/isodumper.py b/lib/isodumper.py index 87bd631..1fcd4ff 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -119,7 +119,7 @@ class Info(object): class IsoDumper(object): - RELEASE="v1.16" + RELEASE="v1.17" def get_devices(self): self.list=self.u.find_devices() |