Update changelog

This commit is contained in:
Tony George 2020-11-16 17:49:55 +05:30
parent ad148a4516
commit b3fb6ef0cb
3 changed files with 21 additions and 7 deletions

22
debian/changelog vendored
View File

@ -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 <teejeetech@gmail.com> Sun, 15 Nov 2020 05:00:00 +0530
-- Tony George <teejeetech@gmail.com> Sun, 15 Nov 2020 20:00:00 +0530
timeshift (20.03) xenial; urgency=medium

View File

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

View File

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