From b17c759bd624499b150ca326ea8da463b1eb4cee Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Fri, 13 Mar 2026 11:31:46 -0700 Subject: [PATCH] Fix remaining repo.anhonesthost.net references in user-facing code - help_commands.rs: fetch HOW-TO-USE.md from GitHub raw instead of Gitea - DockerSettings.tsx: display GHCR image address in settings UI - HOW-TO-USE.md: update registry description to ghcr.io Co-Authored-By: Claude Opus 4.6 --- HOW-TO-USE.md | 2 +- app/src-tauri/src/commands/help_commands.rs | 2 +- app/src/components/settings/DockerSettings.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HOW-TO-USE.md b/HOW-TO-USE.md index 25e1c54..b91d20e 100644 --- a/HOW-TO-USE.md +++ b/HOW-TO-USE.md @@ -70,7 +70,7 @@ Choose an **Image Source**: | Source | Description | When to Use | |--------|-------------|-------------| -| **Registry** | Pulls the pre-built image from `repo.anhonesthost.net` | Fastest setup — recommended for most users | +| **Registry** | Pulls the pre-built image from `ghcr.io` | Fastest setup — recommended for most users | | **Local Build** | Builds the image locally from the embedded Dockerfile | If you can't reach the registry, or want a custom build | | **Custom** | Use any Docker image you specify | Advanced — bring your own sandbox image | diff --git a/app/src-tauri/src/commands/help_commands.rs b/app/src-tauri/src/commands/help_commands.rs index 383e457..a5e01cf 100644 --- a/app/src-tauri/src/commands/help_commands.rs +++ b/app/src-tauri/src/commands/help_commands.rs @@ -2,7 +2,7 @@ use std::sync::OnceLock; use tokio::sync::Mutex; const HELP_URL: &str = - "https://repo.anhonesthost.net/cybercovellc/triple-c/raw/branch/main/HOW-TO-USE.md"; + "https://raw.githubusercontent.com/shadowdao/triple-c/main/HOW-TO-USE.md"; const EMBEDDED_HELP: &str = include_str!("../../../../HOW-TO-USE.md"); diff --git a/app/src/components/settings/DockerSettings.tsx b/app/src/components/settings/DockerSettings.tsx index 3a2274a..3a318d9 100644 --- a/app/src/components/settings/DockerSettings.tsx +++ b/app/src/components/settings/DockerSettings.tsx @@ -4,7 +4,7 @@ import { useSettings } from "../../hooks/useSettings"; import type { ImageSource } from "../../lib/types"; import Tooltip from "../ui/Tooltip"; -const REGISTRY_IMAGE = "repo.anhonesthost.net/cybercovellc/triple-c/triple-c-sandbox:latest"; +const REGISTRY_IMAGE = "ghcr.io/shadowdao/triple-c-sandbox:latest"; const IMAGE_SOURCE_OPTIONS: { value: ImageSource; label: string; description: string }[] = [ { value: "registry", label: "Registry", description: "Pull from container registry" },