diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | lib/isodumper.py | 2 |
4 files changed, 5 insertions, 2 deletions
@@ -5,6 +5,7 @@ IsoDumper 1.16 - add format exFAT for formatting the device - add eject instruction after writing operations - add option for creation of encrypted persistent partition, could be used for Mageia 8 and later + - fix detection of SD cards IsoDumper 1.15 -------------- @@ -33,7 +33,7 @@ DBUSDIR=$(SYSCONFDIR)/dbus-1 SYSTEMDCONFDIR=$(LIBDIR)/systemd/system/ PACKAGE = isodumper -VERSION = 1.15 +VERSION = 1.16 GITPATH = git://git.mageia.org/software/isodumper all: dirs pofiles @@ -7,7 +7,9 @@ Features: * dump ISO file on the device; optionnally create a persistent partition, encrypted or not, in the remaining space; * format the device in one partition of ext4, NTFS or FAT32 type; * backup the device as a whole. +* optionnaly add a persistent partition in the remaining space of the device for use with Mageia Live ISOs, possibly encrypted in LUKS format +The program provides a help for it use. Requirements ------------- diff --git a/lib/isodumper.py b/lib/isodumper.py index 4db8e4e..b14d042 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -119,7 +119,7 @@ class Info(object): class IsoDumper(object): - RELEASE="v1.15" + RELEASE="v1.16" def get_devices(self): self.list=self.u.find_devices() |