Canaryize

Co-Authored-By: illusion0001 <37698908+illusion0001@users.noreply.github.com>
This commit is contained in:
Margen67
2024-10-13 14:46:12 -07:00
parent 85458c811f
commit 731c6057de
5 changed files with 25 additions and 25 deletions

View File

@@ -716,8 +716,8 @@ bool EmulatorWindow::Initialize() {
help_menu->AddChild(MenuItem::Create(
MenuItem::Type::kString, "Recent changes on GitHub...", []() {
LaunchWebBrowser(
"https://github.com/xenia-project/xenia/compare/" XE_BUILD_COMMIT
"..." XE_BUILD_BRANCH);
"https://github.com/xenia-canary/xenia-canary/"
"compare/" XE_BUILD_COMMIT "..." XE_BUILD_BRANCH);
}));
help_menu->AddChild(MenuItem::Create(MenuItem::Type::kSeparator));
help_menu->AddChild(MenuItem::Create(
@@ -1430,7 +1430,7 @@ void EmulatorWindow::ToggleControllerVibration() {
void EmulatorWindow::ShowCompatibility() {
const std::string_view base_url =
"https://github.com/xenia-project/game-compatibility/issues";
"https://github.com/xenia-canary/game-compatibility/issues";
std::string url;
// Avoid searching for a title ID of "00000000".
uint32_t title_id = emulator_->title_id();
@@ -1443,16 +1443,16 @@ void EmulatorWindow::ShowCompatibility() {
}
void EmulatorWindow::ShowFAQ() {
LaunchWebBrowser("https://github.com/xenia-project/xenia/wiki/FAQ");
LaunchWebBrowser("https://github.com/xenia-canary/xenia-canary/wiki/FAQ");
}
void EmulatorWindow::ShowBuildCommit() {
#ifdef XE_BUILD_IS_PR
LaunchWebBrowser(
"https://github.com/xenia-project/xenia/pull/" XE_BUILD_PR_NUMBER);
"https://github.com/xenia-canary/xenia-canary/pull/" XE_BUILD_PR_NUMBER);
#else
LaunchWebBrowser(
"https://github.com/xenia-project/xenia/commit/" XE_BUILD_COMMIT);
"https://github.com/xenia-canary/xenia-canary/commit/" XE_BUILD_COMMIT);
#endif
}

View File

@@ -140,7 +140,7 @@ Emulator::Emulator(const std::filesystem::path& command_line,
"to open it?",
L"Xenia", MB_YESNO | MB_ICONQUESTION) == IDYES)) {
LaunchWebBrowser(
"https://github.com/xenia-project/xenia/wiki/"
"https://github.com/xenia-canary/xenia-canary/wiki/"
"Quickstart#how-to-rip-games");
}
SetPersistentEmulatorFlags(persistent_flags |