From 82ea6770a903d2af066f3ea06040114539da1c17 Mon Sep 17 00:00:00 2001 From: mbusb Date: Sun, 5 Feb 2017 16:36:44 +0530 Subject: [PATCH 1/3] Updating CHANGELOG --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index 258e8c6..a15fee1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ Version - 8.5.0 * Added Solus OS * Added Ka OS * Added PC Unlocker +* Added Acronis True Image * Fixed bug - Same drives appearing multiple times under imager tab * Fixed HBCD boot issue * Fix crash when using ISO Imager option to write ISO files (fix by bagage) From 1aa03afaeaec9db060bf3679518e97d95b5edeac Mon Sep 17 00:00:00 2001 From: mbusb Date: Mon, 6 Feb 2017 22:25:37 +0530 Subject: [PATCH 2/3] Update for fedora install script --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 91d080e..ca3f281 100644 --- a/install.py +++ b/install.py @@ -82,7 +82,7 @@ class Install(): result = True elif subprocess.call("which yum", shell=True) == 0: subprocess.call("yum check-update", shell=True) - if subprocess.call("yum install mtools PyQt5 pkexec util-linux parted p7zip p7zip-plugins python3-dbus -y", shell=True) == 0: + if subprocess.call("dnf install mtools python3-PyQt5 util-linux parted p7zip p7zip-plugins python3-dbus -y", shell=True) == 0: result = True elif subprocess.call("which apt-get", shell=True) == 0: subprocess.call("apt-get -q update", shell=True) From b9fb603f27b47278fc171e13c1564bf2a687c587 Mon Sep 17 00:00:00 2001 From: mbusb Date: Mon, 6 Feb 2017 22:57:58 +0530 Subject: [PATCH 3/3] Change in debian installer detection. --- scripts/distro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/distro.py b/scripts/distro.py index 0c788ec..0b8beab 100644 --- a/scripts/distro.py +++ b/scripts/distro.py @@ -60,7 +60,7 @@ def distro(iso_cfg_ext_dir, iso_link): return "kaos" elif re.search(r'boot=live', string, re.I) and isolinux_bin_exist(iso_link): return "debian" - elif re.search(r'debian-installer', string, re.I) and isolinux_bin_exist(iso_link): + elif re.search(r'debian-installer', string, re.I) and not any("casper" in s.lower() for s in iso_file_list): return "debian-install" elif re.search(r'solydx', string, re.I): return "solydx"