Skip to content

Commit

Permalink
Fix UpdateSupport CheckUpdate
Browse files Browse the repository at this point in the history
  • Loading branch information
iodes committed Aug 14, 2022
1 parent e6d0948 commit 3d57f40
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions GestureWheel/GestureWheel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<ApplicationIcon>Logo.ico</ApplicationIcon>
<Company>Kodnix</Company>
<Copyright>Copyright © Kodnix. All rights reserved.</Copyright>
<Version>1.0.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 3 additions & 1 deletion GestureWheel/Supports/UpdateSupport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ public static async Task<bool> CheckUpdateAsync()
{
var updateDialog = new UpdateDialog(info);
updateDialog.ShowDialog();

return true;
}

return true;
return false;
}

public static async Task<UpdateInfo> GetLatestUpdateInfo()
Expand Down
File renamed without changes.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3d57f40

Please sign in to comment.