Skip to content

Commit

Permalink
V2023.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Feb 10, 2023
1 parent 6d33fb5 commit 3caaf9d
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 @@ -51,7 +51,7 @@ public Program()
_mainWindowController.AppInfo.Name = "Nickvision Denaro";
_mainWindowController.AppInfo.ShortName = "Denaro";
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
_mainWindowController.AppInfo.Version = "2023.2.0-rc1";
_mainWindowController.AppInfo.Version = "2023.2.0";
_mainWindowController.AppInfo.Changelog = "<ul><li>Added the ability to add a password to an account (This will encrypt the nmoney file)</li><li>Added the ability to transfer money between accounts with different currencies by providing a conversion rate in TransferDialog</li><li>Added the ability to configure how Denaro uses locale separators in amount fields</li><li>Added the ability to copy individual transactions</li><li>Added the ability to sort transactions by amount</li><li>LC_MONETARY and LC_TIME will now be respected</li><li>Recent accounts are now available to select from the TransferDialog</li><li>Improved importing of qif and ofx files</li><li>Added a \"New Window\" action to the main menu</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 @@ -45,7 +45,7 @@
<mediatype>application/x-nmoney</mediatype>
</provides>
<releases>
<release version="2023.2.0-rc1" date="2023-02-06">
<release version="2023.2.0" date="2023-02-10">
<description>
<p>- Added the ability to add a password to an account (This will encrypt the nmoney file)</p>
<p>- Added the ability to transfer money between accounts with different currencies by providing a conversion rate in TransferDialog</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 @@ -27,7 +27,7 @@ public App()
_mainWindowController.AppInfo.Name = "Nickvision Denaro";
_mainWindowController.AppInfo.ShortName = "Denaro";
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
_mainWindowController.AppInfo.Version = "2023.2.0-rc1";
_mainWindowController.AppInfo.Version = "2023.2.0";
_mainWindowController.AppInfo.Changelog = "- Added the ability to add a password to an account (This will encrypt the nmoney file)\n- Added the ability to transfer money between accounts with different currencies\nby providing a conversion rate in TransferDialog\n- Added the ability to configure how Denaro uses locale separators in amount fields\n- Added the ability to copy individual transactions\n- Added the ability to sort transactions by amount\n- New AccountView design with a collapsible sidebar\n- Recent accounts are now available to select from the TransferDialog\n- Improved importing of qif and ofx file\n- Fixed an issue where dates in TransactionDialog were not displayed with locale settings";
_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 3caaf9d

Please sign in to comment.