From 6cd136404e624215514dc339584ac41c5b21b49d Mon Sep 17 00:00:00 2001 From: Tony George Date: Sun, 15 Nov 2020 19:41:34 +0530 Subject: [PATCH] Update changelog --- debian/changelog | 15 +++++++++++++++ src/Gtk/AppGtk.vala | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ea25272..ca0b30f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +timeshift (20.11) 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 + + * 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 + + timeshift (20.03) xenial; urgency=medium * Fix an issue with script execution diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 107a35f..21a40d9 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -26,7 +26,6 @@ using Gtk; using Gee; using Json; - using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; @@ -38,7 +37,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"; public const string AppAuthor = "Tony George"; public const string AppAuthorEmail = "teejeetech@gmail.com"; @@ -72,6 +71,7 @@ public class AppGtk : GLib.Object { } private static void set_locale() { + log_debug("setting locale..."); Intl.setlocale(GLib.LocaleCategory.MESSAGES, "timeshift"); Intl.textdomain(GETTEXT_PACKAGE);