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

3
.gitignore vendored
View File

@@ -32,4 +32,5 @@ imgui.ini
*.bak
*.bak*
*.params
asmap.dat
asmap.dat
/xmrig-hac

View File

@@ -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/<your-username>/ObsidianDragon.git
git clone https://git.dragonx.is/<your-username>/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

View File

@@ -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

View File

@@ -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

View File

@@ -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

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();