update links

This commit is contained in:
dan_s
2026-03-03 01:20:03 -06:00
parent 2c1862aed3
commit 3e6136983a
7 changed files with 14 additions and 13 deletions

View File

@@ -1612,7 +1612,7 @@ void RenderSettingsPage(App* app) {
if (ImGui::IsItemHovered()) ImGui::SetTooltip("Open the DragonX website");
ImGui::SameLine(0, Layout::spacingMd());
if (TactileButton("Report Bug", ImVec2(aboutBtnW, 0), S.resolveFont("button"))) {
util::Platform::openUrl("https://git.hush.is/dragonx/ObsidianDragon/issues");
util::Platform::openUrl("https://git.dragonx.is/dragonx/ObsidianDragon/issues");
}
if (ImGui::IsItemHovered()) ImGui::SetTooltip("Report an issue on the project tracker");
ImGui::SameLine(0, Layout::spacingMd());

View File

@@ -134,11 +134,11 @@ void RenderAboutDialog(App* app, bool* p_open)
ImGui::SameLine();
if (material::StyledButton("GitHub", ImVec2(linkBtn.width, 0), S.resolveFont(linkBtn.font))) {
#ifdef _WIN32
system("start https://git.hush.is/dragonx/ObsidianDragon");
system("start https://git.dragonx.is/dragonx/ObsidianDragon");
#elif __APPLE__
system("open https://git.hush.is/dragonx/ObsidianDragon");
system("open https://git.dragonx.is/dragonx/ObsidianDragon");
#else
system("xdg-open https://git.hush.is/dragonx/ObsidianDragon &");
system("xdg-open https://git.dragonx.is/dragonx/ObsidianDragon &");
#endif
}
ImGui::SameLine();