Skip to content

Commit 9328150

Browse files
committed
V2023.2.0-beta1
1 parent b22db0f commit 9328150

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

NickvisionMoney.GNOME/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public Program()
5757
_mainWindowController.AppInfo.Name = "Nickvision Denaro";
5858
_mainWindowController.AppInfo.ShortName = "Denaro";
5959
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
60-
_mainWindowController.AppInfo.Version = "2023.2.0-next";
60+
_mainWindowController.AppInfo.Version = "2023.2.0-beta1";
6161
_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>Recent accounts are now available to select from the TransferDialog</li></ul>";
6262
_mainWindowController.AppInfo.GitHubRepo = new Uri("https://github.com/nlogozzo/NickvisionMoney");
6363
_mainWindowController.AppInfo.IssueTracker = new Uri("https://github.com/nlogozzo/NickvisionMoney/issues/new");

NickvisionMoney.GNOME/org.nickvision.money.metainfo.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<binary>org.nickvision.money</binary>
4747
</provides>
4848
<releases>
49-
<release version="2023.2.0-next" date="2023-1-18">
49+
<release version="2023.2.0-beta1" date="2023-01-22">
5050
<description>
5151
<p>- Added the ability to sort transactions by amount</p>
5252
<p>- LC_MONETARY and LC_TIME will now be respected</p>

NickvisionMoney.GNOME/sources.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -148,17 +148,17 @@
148148
},
149149
{
150150
"type": "file",
151-
"url": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/7.0.1/microsoft.data.sqlite.7.0.1.nupkg",
152-
"sha512": "e6da7a4d77fb56b82ea8d8cab460c455063b1734f8f659f4891ddcdff089e3049dbc64035f6d72b3743bd76b546b58dec3146064b5a3f923c778549fab8b4424",
151+
"url": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/7.0.2/microsoft.data.sqlite.7.0.2.nupkg",
152+
"sha512": "957a01842f8402c8ea7655c0b9f1dabeb661b8beac7f6dcf0239950df2078f7f63ae1050cbe90151b7d46f06fd6e7d510f8c0db028531d099fc9ea2bd14a59c8",
153153
"dest": "nuget-sources",
154-
"dest-filename": "microsoft.data.sqlite.7.0.1.nupkg"
154+
"dest-filename": "microsoft.data.sqlite.7.0.2.nupkg"
155155
},
156156
{
157157
"type": "file",
158-
"url": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite.core/7.0.1/microsoft.data.sqlite.core.7.0.1.nupkg",
159-
"sha512": "88ba307fcb1aa5dda1c1744da352279cac1c8ddda93f40a6a05f41fb3fae0f0d1cdc0fd4952f00316cfea92a0a9b41c4e42f43e44ba6b7b3d6a1e3688ddb81b2",
158+
"url": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite.core/7.0.2/microsoft.data.sqlite.core.7.0.2.nupkg",
159+
"sha512": "d42cd7c91e6afddb7fdb0f6a98540e608221b9276f66119a0e9c92ce5afb3ac950fc40857cf1be7b1a20b1623394f6cb91702c3e366d377587fe1b4c0ecd3936",
160160
"dest": "nuget-sources",
161-
"dest-filename": "microsoft.data.sqlite.core.7.0.1.nupkg"
161+
"dest-filename": "microsoft.data.sqlite.core.7.0.2.nupkg"
162162
},
163163
{
164164
"type": "file",
@@ -190,10 +190,10 @@
190190
},
191191
{
192192
"type": "file",
193-
"url": "https://api.nuget.org/v3-flatcontainer/questpdf/2022.12.0/questpdf.2022.12.0.nupkg",
194-
"sha512": "304bc94f1cb8491d7e098d6b3e4c363df81a5cc0bef25358ab43da05b4fabab93f3a44bf5af2ef89b9b0bad29daca28f5fe8a7836b1918aaf6ada287e089fea1",
193+
"url": "https://api.nuget.org/v3-flatcontainer/questpdf/2022.12.1/questpdf.2022.12.1.nupkg",
194+
"sha512": "92853ee6e3d69e80153927784ea8b8faada88b168acbfc8e688b9b4366540e54a98c5519026a5555f0a7b27b25e932e63d7e2c4c6a8f0d8830d8743097ade378",
195195
"dest": "nuget-sources",
196-
"dest-filename": "questpdf.2022.12.0.nupkg"
196+
"dest-filename": "questpdf.2022.12.1.nupkg"
197197
},
198198
{
199199
"type": "file",

NickvisionMoney.Shared/NickvisionMoney.Shared.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030
<ItemGroup>
3131
<PackageReference Include="Docnet.Core" Version="2.3.1" />
32-
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.1" />
33-
<PackageReference Include="QuestPDF" Version="2022.12.0" />
32+
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.2" />
33+
<PackageReference Include="QuestPDF" Version="2022.12.1" />
3434
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
3535
</ItemGroup>
3636

NickvisionMoney.WinUI/App.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public App()
2626
_mainWindowController.AppInfo.Name = "Nickvision Denaro";
2727
_mainWindowController.AppInfo.ShortName = "Denaro";
2828
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
29-
_mainWindowController.AppInfo.Version = "2023.2.0-next";
29+
_mainWindowController.AppInfo.Version = "2023.2.0-beta1";
3030
_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- Recent accounts are now available to select from the TransferDialog\n- Fixed an issue where dates in TransactionDialog were not displayed with locale settings";
3131
_mainWindowController.AppInfo.GitHubRepo = new Uri("https://github.com/nlogozzo/NickvisionMoney");
3232
_mainWindowController.AppInfo.IssueTracker = new Uri("https://github.com/nlogozzo/NickvisionMoney/issues/new");

NickvisionMoney.WinUI/NickvisionMoney.WinUI.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls" Version="7.1.2" />
5151
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.2.221209.1" />
5252
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.755" />
53-
<PackageReference Include="Vanara.PInvoke.User32" Version="3.4.11" />
53+
<PackageReference Include="Vanara.PInvoke.User32" Version="3.4.12" />
5454
<Manifest Include="$(ApplicationManifest)" />
5555
</ItemGroup>
5656

0 commit comments

Comments
 (0)