diff --git a/WIKI_FIX_README.md b/WIKI_FIX_README.md new file mode 100644 index 0000000..cb76d71 --- /dev/null +++ b/WIKI_FIX_README.md @@ -0,0 +1,47 @@ +# Wiki Fix Instructions + +This directory contains a patch file to fix broken links in the GitHub wiki. + +## The Problem +The wiki contained a broken placeholder link: +- **Location**: Standalone Instance.md, line 48 +- **Broken URL**: `https://github.com/youruser/galactic/issues` +- **This led to**: 404 error page + +## The Solution +The link has been corrected to point to the actual repository: +- **Correct URL**: `https://github.com/GalaxyBotTeam/galactic.ts/issues` + +## Applying the Fix + +### Option 1: Manual Edit +1. Navigate to the wiki: https://github.com/GalaxyBotTeam/galactic.ts/wiki +2. Edit the "Standalone Instance" page +3. Find line 48: `If you have questions or want to contribute, visit [GitHub discussions or the issue tracker](https://github.com/youruser/galactic/issues).` +4. Replace `youruser/galactic` with `GalaxyBotTeam/galactic.ts` +5. Save the changes + +### Option 2: Using Git Patch +1. Clone the wiki repository: + ```bash + git clone https://github.com/GalaxyBotTeam/galactic.ts.wiki.git + cd galactic.ts.wiki + ``` + +2. Apply the patch: + ```bash + git apply /path/to/wiki-fix.patch + ``` + +3. Commit and push: + ```bash + git add "Standalone Instance.md" + git commit -m "Fix broken link: Replace placeholder URL with correct repository" + git push + ``` + +## Verification +After applying the fix, verify all GitHub links in the wiki point to the correct repository: +- ✅ Home.md - Links are correct +- ✅ Standalone Instance.md - Link fixed +- ✅ Other wiki pages - Links are correct diff --git a/wiki-fix.patch b/wiki-fix.patch new file mode 100644 index 0000000..ae5ed3d --- /dev/null +++ b/wiki-fix.patch @@ -0,0 +1,25 @@ +From ed65c5f3c030dd2852ba175e67ab301434022ad3 Mon Sep 17 00:00:00 2001 +From: GitHub Copilot +Date: Sat, 10 Jan 2026 00:34:04 +0000 +Subject: [PATCH] Fix broken link: Replace placeholder URL with correct + repository + +--- + Standalone Instance.md | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Standalone Instance.md b/Standalone Instance.md +index 77f2f94..73458dc 100644 +--- a/Standalone Instance.md ++++ b/Standalone Instance.md +@@ -45,4 +45,4 @@ Your standalone instance will start multiple clusters and shards according to yo + + *** + +-If you have questions or want to contribute, visit [GitHub discussions or the issue tracker](https://github.com/youruser/galactic/issues). +\ No newline at end of file ++If you have questions or want to contribute, visit [GitHub discussions or the issue tracker](https://github.com/GalaxyBotTeam/galactic.ts/issues). +\ No newline at end of file +-- +2.52.0 +