Update changelog

This commit is contained in:
Tony George 2020-11-15 19:41:34 +05:30
parent 9f98fbba77
commit 6cd136404e
2 changed files with 17 additions and 2 deletions

15
debian/changelog vendored
View File

@ -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 <teejeetech@gmail.com> Sun, 15 Nov 2020 05:00:00 +0530
timeshift (20.03) xenial; urgency=medium
* Fix an issue with script execution

View File

@ -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);