-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ Fixes ] - Fixed where the Error Message wont pop up if the location is invalid or the config is none. - Fixed where if the location selected has a name "config.ini" but its not the actual game will crash unexpectedly. - Fixed where if the 1st or 2nd game has an invalid location while the 3rd game isn't causes the 3rd game side button still grayed out. [ Changes ] - Moved the hyperlink routed events to a seperate file.
- Loading branch information
1 parent
b8fd9f8
commit 948291d
Showing
6 changed files
with
80 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace HoyoLauncher.HoyoLauncherSettings; | ||
|
||
public partial class HoyoSettings | ||
{ | ||
void GithubHome(object s, RoutedEventArgs e) => | ||
HoyoMain.ProcessStart("https://github.com/IchimakiKasura"); | ||
void GithubLicense(object s, RoutedEventArgs e) => | ||
HoyoMain.ProcessStart("https://github.com/IchimakiKasura/HoyoLauncher/blob/master/LICENSE"); | ||
void GithubProject(object s, RoutedEventArgs e) => | ||
HoyoMain.ProcessStart("https://github.com/IchimakiKasura/HoyoLauncher"); | ||
void GithubPR(object s, RoutedEventArgs e) => | ||
HoyoMain.ProcessStart("https://github.com/IchimakiKasura/HoyoLauncher/pulls"); | ||
void GithubIssue(object s, RoutedEventArgs e) => | ||
HoyoMain.ProcessStart("https://github.com/IchimakiKasura/HoyoLauncher/issues"); | ||
|
||
void MihoyoPage(object s, RoutedEventArgs e) => | ||
HoyoMain.ProcessStart("https://www.mihoyo.com/en/"); | ||
void HoyoversePage(object s, RoutedEventArgs e) => | ||
HoyoMain.ProcessStart("https://www.hoyoverse.com/en-us/"); | ||
|
||
void GithubIconButton(object s, MouseButtonEventArgs e) => | ||
HoyoMain.ProcessStart("https://github.com/IchimakiKasura/HoyoLauncher"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters