Skip to content

Commit

Permalink
V2023.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Jan 17, 2023
1 parent 0377098 commit 9c9acbb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NickvisionMoney.GNOME/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public Program()
_mainWindowController.AppInfo.Name = "Nickvision Denaro";
_mainWindowController.AppInfo.ShortName = "Denaro";
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
_mainWindowController.AppInfo.Version = "2023.1.0-rc2";
_mainWindowController.AppInfo.Version = "2023.1.0";
_mainWindowController .AppInfo.Changelog = "<ul><li>Money has been completely rewritten in C# and has a new name: Denaro! With the C# rewrite, there is now a new version of Denaro available on Windows!</li><li>Added an Account Settings dialog to allow users to customize their accounts better</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/png/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 export an account as a PDF</li><li>Added the ability to sort transactions by id or date</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");
Expand Down
2 changes: 1 addition & 1 deletion NickvisionMoney.GNOME/org.nickvision.money.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<binary>org.nickvision.money</binary>
</provides>
<releases>
<release version="2023.1.0-rc2" date="2023-1-15">
<release version="2023.1.0" date="2023-1-17">
<description>
<p>- Money has been completely rewritten in C# and now has a new name: Denaro! With the C# rewrite, there is now a new version of Denaro available on Windows!</p>
<p>- Added an Account Settings dialog to allow users to customize their accounts better</p>
Expand Down
2 changes: 1 addition & 1 deletion NickvisionMoney.WinUI/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public App()
_mainWindowController.AppInfo.Name = "Nickvision Denaro";
_mainWindowController.AppInfo.ShortName = "Denaro";
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
_mainWindowController.AppInfo.Version = "2023.1.0-rc2";
_mainWindowController.AppInfo.Version = "2023.1.0";
_mainWindowController.AppInfo.Changelog = "- Money has been completely rewritten in C# and now has a new name: Denaro!\nWith the C# rewrite, there is now a new version of Denaro available on Windows!\n- Added an Account Settings dialog to allow users to customize their accounts better\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/png/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 export an account as a PDF\n- Added the ability to sort transactions by id or date\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");
Expand Down

0 comments on commit 9c9acbb

Please sign in to comment.