diff --git a/NickvisionMoney.GNOME/Program.cs b/NickvisionMoney.GNOME/Program.cs index 54073121b..128c5c0b0 100644 --- a/NickvisionMoney.GNOME/Program.cs +++ b/NickvisionMoney.GNOME/Program.cs @@ -89,8 +89,8 @@ private void OnActivate(Gio.Application sedner, EventArgs e) mainWindowController.AppInfo.Name = "Nickvision Money"; mainWindowController.AppInfo.ShortName = "Money"; mainWindowController.AppInfo.Description = mainWindowController.Localizer["Description"]; - mainWindowController.AppInfo.Version = "2023.1.0-beta2"; - mainWindowController.AppInfo.Changelog = "
- Money has been completely rewritten in C#. Money should now be a lot more stable and responsive. With the C# rewrite, there is now a new version of Money available on Windows!
- Added an "Ungrouped" row to the groups section to allow filtering transactions that don't belong to a group
- Added the ability to attach a jpg/pdf of a receipt to a transaction
-- Reworked the repeat transaction algorithm and added support for a biweekly interval
+- Reworked the repeat transaction system and added support for a biweekly interval
- Added the ability to hide the groups section
- Made a group's description an optional field
- Money è stato riscritto completamente in C#. Adesso dovrebbe essere più stabile e veloce. Con la conversione a C#, arriva una versione di Money per Windows!
diff --git a/NickvisionMoney.WinUI/App.xaml.cs b/NickvisionMoney.WinUI/App.xaml.cs index 91601ed22..cca681301 100644 --- a/NickvisionMoney.WinUI/App.xaml.cs +++ b/NickvisionMoney.WinUI/App.xaml.cs @@ -20,8 +20,8 @@ public App() _mainWindowController.AppInfo.Name = "Nickvision Money"; _mainWindowController.AppInfo.ShortName = "Money"; _mainWindowController.AppInfo.Description = _mainWindowController.Localizer["Description"]; - _mainWindowController.AppInfo.Version = "2023.1.0-beta2"; - _mainWindowController.AppInfo.Changelog = "- Money has been completely rewritten in C#. Money should now be a lot more stable and responsive. With the C# rewrite, there is now a new version of Money available on Windows!\n- Added an \"Ungrouped\" row to the groups section to allow filtering transactions that don't belong to a group\n- Added the ability to attach a jpg/pdf of a receipt to a transaction\n- Reworked the repeat transaction algorithm and added support for a biweekly interval\n- Added the ability to hide the groups section\n- Made a group's description an optional field"; + _mainWindowController.AppInfo.Version = "2023.1.0-beta3"; + _mainWindowController.AppInfo.Changelog = "- Money has been completely rewritten in C#. Money should now be a lot more stable and responsive.\nWith the C# rewrite, there is now a new version of Money available on Windows!\n- Added an \"Ungrouped\" row to the groups section to allow filtering transactions that don't belong to a group\n- Added the ability to attach a jpg/pdf of a receipt to a transaction\n- Reworked the repeat transaction system and added support for a biweekly interval\n- Added the ability to hide the groups section\n- Made a group's description an optional field"; _mainWindowController.AppInfo.GitHubRepo = new Uri("https://github.com/nlogozzo/NickvisionMoney"); _mainWindowController.AppInfo.IssueTracker = new Uri("https://github.com/nlogozzo/NickvisionMoney/issues/new"); _mainWindowController.AppInfo.SupportUrl = new Uri("https://github.com/nlogozzo/NickvisionMoney/discussions");