Skip to content
This repository has been archived by the owner on Oct 16, 2022. It is now read-only.

Commit

Permalink
v17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teejee2008 committed Jan 26, 2017
1 parent af2684b commit c8e9cf2
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@

timeshift (17.2) trusty; urgency=medium

* Use StackWidget for Settings window

* Fixed: Hourly task was not created correctly

* Settings: Updated messages in Schedule tab to avoid confusion

-- Tony George <[email protected]> Thu, 26 Jan 2016 10:00:00 +0530


timeshift (17.1) trusty; urgency=medium

* Added support for BTRFS snapshots. There's a new tab in Settings
Expand Down
2 changes: 1 addition & 1 deletion src/Console/AppConsole.vala
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ using TeeJee.Misc;
public Main App;
public const string AppName = "Timeshift";
public const string AppShortName = "timeshift";
public const string AppVersion = "17.1";
public const string AppVersion = "17.2";
public const string AppAuthor = "Tony George";
public const string AppAuthorEmail = "[email protected]";

Expand Down
11 changes: 8 additions & 3 deletions src/Core/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -3805,6 +3805,8 @@ public class Main : GLib.Object{

if (live_system()) { return; }

// remove entries created by previous versions -----------

string entry = "timeshift --backup";

int count = 0;
Expand All @@ -3825,9 +3827,12 @@ public class Main : GLib.Object{
}
}

CronTab.remove_script_file("timeshift-hourly", "hourly");

// start update ---------------------------

if (scheduled){
//others
CronTab.remove_script_file("timeshift-hourly", "hourly");
//hourly
CronTab.add_script_file("timeshift-hourly", "d", "0 * * * * root timeshift --check", stop_cron_emails);

//boot
Expand All @@ -3839,7 +3844,7 @@ public class Main : GLib.Object{
}
}
else{
CronTab.remove_script_file("timeshift-hourly", "hourly");
CronTab.remove_script_file("timeshift-hourly", "d");
CronTab.remove_script_file("timeshift-boot", "d");
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Gtk/AppGtk.vala
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ using TeeJee.Misc;
public Main App;
public const string AppName = "Timeshift";
public const string AppShortName = "timeshift";
public const string AppVersion = "17.1";
public const string AppVersion = "17.2";
public const string AppAuthor = "Tony George";
public const string AppAuthorEmail = "[email protected]";

Expand Down

0 comments on commit c8e9cf2

Please sign in to comment.