Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions WIKI_FIX_README.md
Original file line number Diff line number Diff line change
@@ -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
25 changes: 25 additions & 0 deletions wiki-fix.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
From ed65c5f3c030dd2852ba175e67ab301434022ad3 Mon Sep 17 00:00:00 2001
From: GitHub Copilot <copilot@github.com>
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