Skip to content

Commit d855f15

Browse files
committed
*更新到0.1.0.1
1 parent 7897938 commit d855f15

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Core/ViewModel/Main/MainWindowViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public partial class MainWindowViewModel : ObservableRecipient
2121
[ObservableProperty] private object? _content;
2222

2323
[ObservableProperty] private bool _settingPage = false;
24-
[ObservableProperty] private string _version = "0.1.0.0";
24+
[ObservableProperty] private string _version = "0.1.0.1";
2525

2626
public MainWindowViewModel()
2727
{

KitopiaAvalonia/KitopiaAvalonia.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
3232
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
3333
<DebugType Condition="'$(Configuration)' == 'Release'">none</DebugType>
34-
<Version>0.1.0.0</Version>
34+
<Version>0.1.0.1</Version>
3535
<AvaloniaVersion>11.3.2</AvaloniaVersion>
3636
<Configurations>Debug;Release</Configurations>
3737
<Platforms>AnyCPU;x64</Platforms>

KitopiaAvalonia/Services/GitHubUpdateService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class GitHubUpdateService
5656

5757
if (Version.TryParse(cleanTagName, out var latestVersion))
5858
{
59-
if (latestVersion== currentVersion)
59+
if (latestVersion> currentVersion)
6060
{
6161
var htmlUrl = ((JArray)release["assets"]).FirstOrDefault(e=>e["name"].ToString()==$"Kitopia{cleanTagName}_Installer.exe")?["browser_download_url"]?.ToString();
6262
var body = release["body"]?.ToString();

build/InstallerAssets/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"DisplayIcon": "",
33
"DisplayName": "Kitopia",
4-
"DisplayVersion": "0.1.0.0",
4+
"DisplayVersion": "0.1.0.1",
55
"Publisher": "MakesYT",
66
"CanExecutePath": "KitopiaAvalonia.exe",
77
"Is64": true

0 commit comments

Comments
 (0)