Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
Set correct version number
Browse files Browse the repository at this point in the history
  • Loading branch information
karasu committed Sep 28, 2018
1 parent cbc4fb9 commit 64531df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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|

Expand Down
2 changes: 1 addition & 1 deletion src/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
11 changes: 6 additions & 5 deletions src/pages/advanced.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion update.info
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{"version":"0.16.7","files":[
{"version":"0.16.8","files":[
]}

0 comments on commit 64531df

Please sign in to comment.