Skip to content

Commit

Permalink
v18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
teejee2008 committed Jan 20, 2018
1 parent e8c9dac commit 5880f53
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-installers.sh
Expand Up @@ -33,7 +33,7 @@ echo "--------------------------------------------------------------------------

rm -rfv release/${arch}/${pkg_name}*.* # remove source files created by pbuilder
cp -pv --no-preserve=ownership release/sanity.config release/${arch}/sanity.config
sanity --generate --base-path release/${arch} --out-path release --arch ${arch}
sanity --generate --base-path release/${arch} --out-path release --arch ${arch} --xz

if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi

Expand Down
13 changes: 13 additions & 0 deletions debian/changelog
@@ -1,3 +1,16 @@
groot (18.1) xenial; urgency=medium

* Added command: --chroot-fstab

* Added option: --verbose

* Set environment variables for chroot session from guest system

* Use XZ compression for installers

-- Tony George <tony.george.kol@gmail.com> Sat, 20 Jan 2018 10:00:00 +0530


groot (17.12) xenial; urgency=medium

* Initial release
Expand Down
2 changes: 1 addition & 1 deletion src/Console/GrootConsole.vala
Expand Up @@ -32,7 +32,7 @@ using TeeJee.Misc;

public const string AppName = "Groot";
public const string AppShortName = "groot";
public const string AppVersion = "17.12";
public const string AppVersion = "18.1";
public const string AppAuthor = "Tony George";
public const string AppAuthorEmail = "teejeetech@gmail.com";

Expand Down
2 changes: 1 addition & 1 deletion src/Utility/Console/Device.vala
Expand Up @@ -378,7 +378,7 @@ public class Device : GLib.Object{
var list = get_block_devices_using_lsblk();

if (device_list == null){
device_list = list;
device_list = list; // initialize in advance if null
}

//update_device_ids(list);
Expand Down

0 comments on commit 5880f53

Please sign in to comment.