diff options
author | Papoteur <papoteur@mageia.org> | 2020-01-31 09:29:37 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2020-01-31 09:29:37 +0100 |
commit | e4049963f01de3de1c433c9370f28cb333ee8a76 (patch) | |
tree | e3d05d4b09fa98d9306eb13c9505b57c2d3ff354 | |
parent | 5fe71c7c2c4ff561f0a05c9178fe1a2e7707f0a8 (diff) | |
download | isodumper-e4049963f01de3de1c433c9370f28cb333ee8a76.tar isodumper-e4049963f01de3de1c433c9370f28cb333ee8a76.tar.gz isodumper-e4049963f01de3de1c433c9370f28cb333ee8a76.tar.bz2 isodumper-e4049963f01de3de1c433c9370f28cb333ee8a76.tar.xz isodumper-e4049963f01de3de1c433c9370f28cb333ee8a76.zip |
1.161.16
-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() |