diff -Nru timeshift-22.11.1/debian/changelog timeshift-22.11.2/debian/changelog --- timeshift-22.11.1/debian/changelog 2022-11-23 21:58:42.000000000 +0000 +++ timeshift-22.11.2/debian/changelog 2023-01-12 01:43:46.000000000 +0000 @@ -1,3 +1,10 @@ +timeshift (22.11.2-1) unstable; urgency=medium + + * Team upload. + * New upstream release. + + -- Boyuan Yang Wed, 11 Jan 2023 20:43:46 -0500 + timeshift (22.11.1-1) unstable; urgency=medium * Team upload. diff -Nru timeshift-22.11.1/src/Console/AppConsole.vala timeshift-22.11.2/src/Console/AppConsole.vala --- timeshift-22.11.1/src/Console/AppConsole.vala 2022-11-22 10:11:02.000000000 +0000 +++ timeshift-22.11.2/src/Console/AppConsole.vala 2023-01-07 16:04:37.000000000 +0000 @@ -38,7 +38,7 @@ public Main App; public const string AppName = "Timeshift"; public const string AppShortName = "timeshift"; -public const string AppVersion = "22.11.1"; +public const string AppVersion = "22.11.2"; public const string AppAuthor = "Tony George"; public const string AppAuthorEmail = "teejeetech@gmail.com"; diff -Nru timeshift-22.11.1/src/Core/Main.vala timeshift-22.11.2/src/Core/Main.vala --- timeshift-22.11.1/src/Core/Main.vala 2022-11-22 10:11:02.000000000 +0000 +++ timeshift-22.11.2/src/Core/Main.vala 2023-01-07 16:04:37.000000000 +0000 @@ -4107,6 +4107,10 @@ } if (ret_val != 0){ + if (std_err.contains("not enabled")) { + log_msg("btrfs: Quotas are not enabled"); + return false; + } log_error (std_err); log_error(_("btrfs returned an error") + ": %d".printf(ret_val)); log_error(_("Failed to query subvolume quota")); diff -Nru timeshift-22.11.1/src/Gtk/AppGtk.vala timeshift-22.11.2/src/Gtk/AppGtk.vala --- timeshift-22.11.1/src/Gtk/AppGtk.vala 2022-11-22 10:11:02.000000000 +0000 +++ timeshift-22.11.2/src/Gtk/AppGtk.vala 2023-01-07 16:04:37.000000000 +0000 @@ -37,7 +37,7 @@ public Main App; public const string AppName = "Timeshift"; public const string AppShortName = "timeshift"; -public const string AppVersion = "22.11.1"; +public const string AppVersion = "22.11.2"; public const string AppAuthor = "Tony George"; public const string AppAuthorEmail = "teejeetech@gmail.com";