diff options
| author | Dax <[email protected]> | 2026-01-02 16:02:52 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-02 16:02:52 -0500 |
| commit | 3c41e4e8f12b7f06258490bb7a85388de1eca381 (patch) | |
| tree | c031d4b5fd12409c0a25bf18f39a9b8a191cc625 /packages/console | |
| parent | 66bc046503190622e9d652bbed6a940b003aeb77 (diff) | |
| download | opencode-3c41e4e8f12b7f06258490bb7a85388de1eca381.tar.gz opencode-3c41e4e8f12b7f06258490bb7a85388de1eca381.zip | |
chore: rename repo references from sst/opencode to anomalyco/opencode (#6687)
Co-authored-by: Github Action <[email protected]>
Diffstat (limited to 'packages/console')
| -rw-r--r-- | packages/console/app/src/config.ts | 2 | ||||
| -rw-r--r-- | packages/console/app/src/routes/[...404].tsx | 2 | ||||
| -rw-r--r-- | packages/console/app/src/routes/download/[platform].ts | 2 | ||||
| -rw-r--r-- | packages/console/app/src/routes/openapi.json.ts | 2 | ||||
| -rw-r--r-- | packages/console/app/src/routes/temp.tsx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/packages/console/app/src/config.ts b/packages/console/app/src/config.ts index 8d7da0b97..9fd7de5a6 100644 --- a/packages/console/app/src/config.ts +++ b/packages/console/app/src/config.ts @@ -7,7 +7,7 @@ export const config = { // GitHub github: { - repoUrl: "https://github.com/sst/opencode", + repoUrl: "https://github.com/anomalyco/opencode", starsFormatted: { compact: "45K", full: "45,000", diff --git a/packages/console/app/src/routes/[...404].tsx b/packages/console/app/src/routes/[...404].tsx index ba2842b5a..1fd378774 100644 --- a/packages/console/app/src/routes/[...404].tsx +++ b/packages/console/app/src/routes/[...404].tsx @@ -26,7 +26,7 @@ export default function NotFound() { <a href="/docs">Docs</a> </div> <div data-slot="action"> - <a href="https://github.com/sst/opencode">GitHub</a> + <a href="https://github.com/anomalyco/opencode">GitHub</a> </div> <div data-slot="action"> <a href="/discord">Discord</a> diff --git a/packages/console/app/src/routes/download/[platform].ts b/packages/console/app/src/routes/download/[platform].ts index 427fb132b..d8b72aba1 100644 --- a/packages/console/app/src/routes/download/[platform].ts +++ b/packages/console/app/src/routes/download/[platform].ts @@ -21,7 +21,7 @@ export async function GET({ params: { platform } }: APIEvent) { const assetName = assetNames[platform] if (!assetName) return new Response("Not Found", { status: 404 }) - const resp = await fetch(`https://github.com/sst/opencode/releases/latest/download/${assetName}`, { + const resp = await fetch(`https://github.com/anomalyco/opencode/releases/latest/download/${assetName}`, { cf: { // in case gh releases has rate limits cacheTtl: 60 * 60 * 24, diff --git a/packages/console/app/src/routes/openapi.json.ts b/packages/console/app/src/routes/openapi.json.ts index 8b27cb89a..2789e85c4 100644 --- a/packages/console/app/src/routes/openapi.json.ts +++ b/packages/console/app/src/routes/openapi.json.ts @@ -1,6 +1,6 @@ export async function GET() { const response = await fetch( - "https://raw.githubusercontent.com/sst/opencode/refs/heads/dev/packages/sdk/openapi.json", + "https://raw.githubusercontent.com/anomalyco/opencode/refs/heads/dev/packages/sdk/openapi.json", ) const json = await response.json() return json diff --git a/packages/console/app/src/routes/temp.tsx b/packages/console/app/src/routes/temp.tsx index b0aef00e7..28883fca7 100644 --- a/packages/console/app/src/routes/temp.tsx +++ b/packages/console/app/src/routes/temp.tsx @@ -151,7 +151,7 @@ export default function Home() { <a href="https://x.com/opencode">X.com</a> </div> <div data-slot="cell"> - <a href="https://github.com/sst/opencode">GitHub</a> + <a href="https://github.com/anomalyco/opencode">GitHub</a> </div> <div data-slot="cell"> <a href="https://opencode.ai/discord">Discord</a> |
