From 64531dfdc45ec3722327aa8d4ed0bedb289dc245 Mon Sep 17 00:00:00 2001 From: karasu Date: Fri, 28 Sep 2018 10:18:08 +0200 Subject: [PATCH] Set correct version number --- README.md | 2 +- src/info.py | 2 +- src/pages/advanced.py | 11 ++++++----- update.info | 2 +- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 009b12f54..4c8b70829 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You are viewing the `0.16.x` branch (stable). |Development Stage|Branch|Version| Code Status| ----------------- | -------------- | -------------- | -------- | -|Cnchi Stable|0.16.x|![0.16.7](https://img.shields.io/github/release/antergos/cnchi.svg)|Frozen| +|Cnchi Stable|0.16.x|![0.16.8](https://img.shields.io/github/release/antergos/cnchi.svg)|Frozen| |Cnchi Development|0.17.x|![0.17.1](https://img.shields.io/github/release/antergos/cnchi/all.svg)|Development| |Cnchi Next (UI agnostic)|master|master|Development| diff --git a/src/info.py b/src/info.py index 1ff5fbad6..a252e545c 100755 --- a/src/info.py +++ b/src/info.py @@ -29,7 +29,7 @@ """ Set some Cnchi global constants """ -CNCHI_VERSION = "0.16.7" +CNCHI_VERSION = "0.16.8" """ Cnchi version """ CNCHI_WEBSITE = "http://www.antergos.com" diff --git a/src/pages/advanced.py b/src/pages/advanced.py index 58f9d78e6..27a67f267 100644 --- a/src/pages/advanced.py +++ b/src/pages/advanced.py @@ -962,7 +962,7 @@ def new_partition(self, _button): pm.create_partition( disk, pm.PARTITION_LOGICAL, geometry) - if self.is_uefi and (mymount == "/boot" or mymount == "/boot/efi"): + if self.is_uefi and mymount in ["/boot", "/boot/efi"]: logging.info( "/boot or /boot/efi need to be fat32 in UEFI systems. Forcing it.") myfs = "fat32" @@ -985,12 +985,13 @@ def new_partition(self, _button): # Store partition luks options self.luks_options[uid] = self.create_part_dlg.luks_options if mymount == "/": - # Set if we'll be using LUKS in the root partition - # (for process.py to know) + # Set if we'll be using LUKS in the root partition (for process.py) self.settings.set( - 'use_luks_in_root', self.create_part_dlg.luks_options[0]) + 'use_luks_in_root', + self.create_part_dlg.luks_options[0]) self.settings.set( - 'luks_root_volume', self.create_part_dlg.luks_options[1]) + 'luks_root_volume', + self.create_part_dlg.luks_options[1]) # Update partition list treeview self.update_view() diff --git a/update.info b/update.info index 95bb713c9..0eef6d0b1 100644 --- a/update.info +++ b/update.info @@ -1,2 +1,2 @@ -{"version":"0.16.7","files":[ +{"version":"0.16.8","files":[ ]}