diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 657e14ed5..c35ca50ec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,5 +59,5 @@ jobs: args: --target ${{ matrix.target }} tagName: ${{ github.ref_name }} releaseName: 'OpenPencil ${{ github.ref_name }}' - releaseBody: 'See [CHANGELOG.md](https://github.com/dannote/open-pencil/blob/${{ github.ref_name }}/CHANGELOG.md) for details.' + releaseBody: 'See [CHANGELOG.md](https://github.com/open-pencil/open-pencil/blob/${{ github.ref_name }}/CHANGELOG.md) for details.' releaseDraft: true diff --git a/packages/docs/.vitepress/config.ts b/packages/docs/.vitepress/config.ts index e3441c82d..8f0435dd7 100644 --- a/packages/docs/.vitepress/config.ts +++ b/packages/docs/.vitepress/config.ts @@ -97,11 +97,11 @@ export default defineConfig({ }, socialLinks: [ - { icon: 'github', link: 'https://github.com/dannote/open-pencil' }, + { icon: 'github', link: 'https://github.com/open-pencil/open-pencil' }, ], editLink: { - pattern: 'https://github.com/dannote/open-pencil/edit/main/packages/docs/:path', + pattern: 'https://github.com/open-pencil/open-pencil/edit/main/packages/docs/:path', }, footer: { diff --git a/packages/docs/development/contributing.md b/packages/docs/development/contributing.md index d60cdb847..fe64506b1 100644 --- a/packages/docs/development/contributing.md +++ b/packages/docs/development/contributing.md @@ -61,7 +61,7 @@ bun run check ### AI Agent Conventions -Developers and AI agents working on the codebase should read `AGENTS.md` in the repo root ([view on GitHub](https://github.com/dannote/open-pencil/blob/master/AGENTS.md)). Covers rendering, scene graph, components & instances, layout, UI, file format, Tauri conventions, and known issues. +Developers and AI agents working on the codebase should read `AGENTS.md` in the repo root ([view on GitHub](https://github.com/open-pencil/open-pencil/blob/master/AGENTS.md)). Covers rendering, scene graph, components & instances, layout, UI, file format, Tauri conventions, and known issues. ## Making Changes diff --git a/packages/docs/guide/getting-started.md b/packages/docs/guide/getting-started.md index 1eaccee4e..44deec66b 100644 --- a/packages/docs/guide/getting-started.md +++ b/packages/docs/guide/getting-started.md @@ -12,7 +12,7 @@ OpenPencil runs in the browser — no installation required. Open [app.openpenci ## Installation ```sh -git clone https://github.com/dannote/open-pencil.git +git clone https://github.com/open-pencil/open-pencil.git cd open-pencil bun install ``` diff --git a/packages/docs/index.md b/packages/docs/index.md index 324c0706a..fa46e2390 100644 --- a/packages/docs/index.md +++ b/packages/docs/index.md @@ -15,7 +15,7 @@ hero: link: /guide/getting-started - theme: alt text: View on GitHub - link: https://github.com/dannote/open-pencil + link: https://github.com/open-pencil/open-pencil features: - icon: 📖 diff --git a/src/composables/use-chat.ts b/src/composables/use-chat.ts index 0fbd5c8d7..b0455548e 100644 --- a/src/composables/use-chat.ts +++ b/src/composables/use-chat.ts @@ -61,7 +61,7 @@ function createTransport() { apiKey: apiKey.value, headers: { 'X-OpenRouter-Title': 'OpenPencil', - 'HTTP-Referer': 'https://github.com/dannote/open-pencil' + 'HTTP-Referer': 'https://github.com/open-pencil/open-pencil' } })