Skip to content

Commit

Permalink
V2023.1.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Jan 6, 2023
1 parent a5df222 commit a6c60cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions NickvisionMoney.GNOME/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "<ul><li>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!</li><li>Added an \"Ungrouped\" row to the groups section to allow filtering transactions that don't belong to a group</li><li>Added the ability to attach a jpg/pdf of a receipt to a transaction</li><li>Reworked the repeat transaction algorithm and added support for a biweekly interval</li><li>Added the ability to hide the groups section</li><li>Made a group's description an optional field</li></ul>";
mainWindowController.AppInfo.Version = "2023.1.0-beta3";
mainWindowController.AppInfo.Changelog = "<ul><li>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!</li><li>Added an \"Ungrouped\" row to the groups section to allow filtering transactions that don't belong to a group</li><li>Added the ability to attach a jpg/pdf of a receipt to a transaction</li><li>Reworked the repeat transaction system and added support for a biweekly interval</li><li>Added the ability to hide the groups section</li><li>Made a group's description an optional field</li></ul>";
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");
Expand Down
4 changes: 2 additions & 2 deletions NickvisionMoney.GNOME/org.nickvision.money.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
<binary>org.nickvision.money</binary>
</provides>
<releases>
<release version="2023.1.0-beta2" date="2022-12-31">
<release version="2023.1.0-beta3" date="2023-1-6">
<description>
<p>- 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!</p>
<p>- Added an "Ungrouped" row to the groups section to allow filtering transactions that don't belong to a group</p>
<p>- Added the ability to attach a jpg/pdf of a receipt to a transaction</p>
<p>- Reworked the repeat transaction algorithm and added support for a biweekly interval</p>
<p>- Reworked the repeat transaction system and added support for a biweekly interval</p>
<p>- Added the ability to hide the groups section</p>
<p>- Made a group's description an optional field</p>
<p xml:lang="it">- 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!</p>
Expand Down
4 changes: 2 additions & 2 deletions NickvisionMoney.WinUI/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit a6c60cb

Please sign in to comment.