diff --git a/debian/changelog b/debian/changelog index ca0b30f..42f3bd5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,16 +1,28 @@ -timeshift (20.11) focal; urgency=medium +timeshift (20.11.1) focal; urgency=medium - * Fix #626: Save filter order changes when clicking OK - * Fix #631: Escape single quote in LUKS password when unlocking device - * Fix #643: Save changes after Include/Exclude radio is toggled + * Fix #626: Filters: Save filter order changes when clicking OK + + * Fix #643: Filters: Save changes after Include/Exclude radio is toggled + + * Fix #668: Filters: Save changes immediately after pattern is edited + + * Fix #666: Filters: Save changes immediately after adding a pattern; + and before clicking Summary button + + * Move config file to /etc/timeshift/timeshift.json + + * Move default config to /etc/timeshift/default.json + + * AppStream: Install only under /usr/share/metainfo. Don't install + under /usr/share/appdata/ * Remove unused functions and code * pkexec: Don't pass DISPLAY and AUTHORITY in launcher script - -- Tony George Sun, 15 Nov 2020 05:00:00 +0530 + -- Tony George Sun, 15 Nov 2020 20:00:00 +0530 timeshift (20.03) xenial; urgency=medium diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 3790697..d673c1d 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -38,7 +38,7 @@ using TeeJee.Misc; public Main App; public const string AppName = "Timeshift"; public const string AppShortName = "timeshift"; -public const string AppVersion = "20.03"; +public const string AppVersion = "20.11.1"; public const string AppAuthor = "Tony George"; public const string AppAuthorEmail = "teejeetech@gmail.com"; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 21a40d9..18ba8ae 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -37,7 +37,7 @@ using TeeJee.Misc; public Main App; public const string AppName = "Timeshift"; public const string AppShortName = "timeshift"; -public const string AppVersion = "20.11"; +public const string AppVersion = "20.11.1"; public const string AppAuthor = "Tony George"; public const string AppAuthorEmail = "teejeetech@gmail.com"; @@ -107,6 +107,7 @@ public class AppGtk : GLib.Object { } public static string help_message() { + string msg = "\n%s v%s by Tony George (%s)\n".printf(AppName, AppVersion, AppAuthorEmail); msg += "\n"; msg += _("Syntax") + ": timeshift-gtk [options]\n"; @@ -123,6 +124,7 @@ public class AppGtk : GLib.Object { public static void check_if_admin(){ if (!user_is_admin()){ + var msg = _("Admin access is required to backup and restore system files.") + "\n"; msg += _("Please re-run the application as admin (using 'sudo' or 'su')");