From 3e6136983a95e6ae4956f5703da41902ed356817 Mon Sep 17 00:00:00 2001 From: dan_s Date: Tue, 3 Mar 2026 01:20:03 -0600 Subject: [PATCH] update links --- .gitignore | 3 ++- CONTRIBUTING.md | 4 ++-- README.md | 8 ++++---- build.sh | 2 +- scripts/legacy/build-windows.sh | 2 +- src/ui/pages/settings_page.cpp | 2 +- src/ui/windows/about_dialog.cpp | 6 +++--- 7 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 35f1ee9..f8f8d76 100644 --- a/.gitignore +++ b/.gitignore @@ -32,4 +32,5 @@ imgui.ini *.bak *.bak* *.params -asmap.dat \ No newline at end of file +asmap.dat +/xmrig-hac \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 376ee00..1bd38f4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,7 +7,7 @@ Thank you for your interest in contributing! This guide will help you get starte 1. Fork the repository 2. Clone your fork and create a branch: ```bash - git clone https://git.hush.is//ObsidianDragon.git + git clone https://git.dragonx.is//ObsidianDragon.git cd ObsidianDragon git checkout -b my-feature ``` @@ -67,7 +67,7 @@ Run the wallet and verify: ## Reporting Issues -- Use the [issue tracker](https://git.hush.is/dragonx/ObsidianDragon/issues) +- Use the [issue tracker](https://git.dragonx.is/dragonx/ObsidianDragon/issues) - Include: OS, wallet version, steps to reproduce, expected vs actual behaviour - For crashes: include any terminal output diff --git a/README.md b/README.md index 0113dbd..2cf5a90 100644 --- a/README.md +++ b/README.md @@ -71,12 +71,12 @@ brew install cmake ### Binaries Download linux and windows binaries of latest releases and place in binary directories: -**DragonX daemon** (https://git.hush.is/dragonx/hush3): +**DragonX daemon** (https://git.dragonx.is/dragonx/hush3): - prebuilt-binaries/dragonxd-linux/ - prebuilt-binaries/dragonxd-win/ - prebuilt-binaries/dragonxd-mac/ -**xmrig HAC fork** (https://git.hush.is/dragonx/xmrig-hac): +**xmrig HAC fork** (https://git.dragonx.is/dragonx/xmrig-hac): - prebuilt-binaries/xmrig-hac/ @@ -84,7 +84,7 @@ Download linux and windows binaries of latest releases and place in binary direc ``` ### Clone repository (if not already) -git clone https://git.hush.is/dragonx/ObsidianDragon.git +git clone https://git.dragonx.is/dragonx/ObsidianDragon.git cd ObsidianDragon/ ``` @@ -223,4 +223,4 @@ This project is licensed under the GNU General Public License v3 (GPLv3). - Website: https://dragonx.is - Explorer: https://explorer.dragonx.is -- Source: https://git.hush.is/dragonx/ObsidianDragon +- Source: https://git.dragonx.is/dragonx/ObsidianDragon diff --git a/build.sh b/build.sh index 5e2c9d6..001a54f 100755 --- a/build.sh +++ b/build.sh @@ -600,7 +600,7 @@ On first run, the wallet will automatically extract: - Sapling parameters to %APPDATA%\ZcashParams\ - asmap.dat to %APPDATA%\Hush\DRAGONX\ -For support: https://git.hush.is/hush/ObsidianDragon +For support: https://git.dragonx.is/dragonx/ObsidianDragon README # Copy single-file exe to release dir diff --git a/scripts/legacy/build-windows.sh b/scripts/legacy/build-windows.sh index 43b0b2b..9526e09 100755 --- a/scripts/legacy/build-windows.sh +++ b/scripts/legacy/build-windows.sh @@ -441,7 +441,7 @@ The wallet will look for the daemon config at: This will be auto-created on first run if the daemon is present. -For support: https://git.hush.is/hush/ObsidianDragon +For support: https://git.dragonx.is/dragonx/ObsidianDragon READMEEOF if command -v zip &> /dev/null; then diff --git a/src/ui/pages/settings_page.cpp b/src/ui/pages/settings_page.cpp index 8fe3f8a..48f77df 100644 --- a/src/ui/pages/settings_page.cpp +++ b/src/ui/pages/settings_page.cpp @@ -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()); diff --git a/src/ui/windows/about_dialog.cpp b/src/ui/windows/about_dialog.cpp index 61b6e04..028a8a8 100644 --- a/src/ui/windows/about_dialog.cpp +++ b/src/ui/windows/about_dialog.cpp @@ -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();