Skip to content

Commit

Permalink
V2023.2.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Jan 30, 2023
1 parent c21ae65 commit 2c97086
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.2.0-beta1";
_mainWindowController.AppInfo.Version = "2023.2.0-beta2";
_mainWindowController .AppInfo.Changelog = "<ul><li>Added the ability to sort transactions by amount</li><li>LC_MONETARY and LC_TIME will now be respected</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 copy individual transactions</li><li>Recent accounts are now available to select from the TransferDialog</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 @@ -46,7 +46,7 @@
<binary>org.nickvision.money</binary>
</provides>
<releases>
<release version="2023.2.0-beta1" date="2023-01-22">
<release version="2023.2.0-beta2" date="2023-01-30">
<description>
<p>- Added the ability to sort transactions by amount</p>
<p>- LC_MONETARY and LC_TIME will now be respected</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.2.0-beta1";
_mainWindowController.AppInfo.Version = "2023.2.0-beta2";
_mainWindowController.AppInfo.Changelog = "- Added the ability to sort transactions by amount\n- Added the ability to transfer money between accounts with different currencies\nby providing a conversion rate in TransferDialog\n- Added the ability to copy individual transactions\n- Recent accounts are now available to select from the TransferDialog\n- Updated AccountView design with a new collapsible sidebar\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 2c97086

Please sign in to comment.