Skip to content

Commit

Permalink
fix: link
Browse files Browse the repository at this point in the history
  • Loading branch information
OpportunityLiu committed Oct 28, 2023
1 parent 72d83e7 commit 4924a10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ExViewer/Controls/AboutControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ M0.1,49.9h1.8l0.8-3.3h2.9L6,45.2H3.1l0.5-2.1h3.1l0.4-1.7h-5L0.1,49.9z M8,49.9l0.
<HyperlinkButton Style="{StaticResource AboutControlHyperLinkButtonStyle}"
x:Uid="Controls/AboutControl/HelpTranslateTagsHyperlinkButton"
Content="Help translate tags into Chinese"
NavigateUri="https://github.com/Mapaler/EhTagTranslator/wiki" />
NavigateUri="https://github.com/EhTagTranslation/Editor/wiki" />
<HyperlinkButton Style="{StaticResource AboutControlHyperLinkButtonStyle}"
x:Uid="Controls/AboutControl/ForumsHyperlinkButton"
Content="E-Hentai Forums"
Expand Down
2 changes: 1 addition & 1 deletion ExViewer/VersionChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static IAsyncOperation<GitHubRelease> CheckAsync()
Build = subver[2],
Revision = subver.Length == 4 ? subver[3] : (ushort)0
};
if (release.Version.CompareTo(currentVersion) > 0)
if (release.Version.CompareTo(currentVersion) > 0 || (release.Version.CompareTo(currentVersion) == 0 && Package.Current.IsDevelopmentMode))
{
return release;
}
Expand Down

0 comments on commit 4924a10

Please sign in to comment.