diff --git a/.github/workflows/docs-site.yml b/.github/workflows/docs-site.yml index 1e0dcb0..204f1c1 100644 --- a/.github/workflows/docs-site.yml +++ b/.github/workflows/docs-site.yml @@ -1,7 +1,7 @@ name: Docs site HTML # Builds the HTML manual with MyST and publishes it to the copperline.dev -# website repository (LinuxJedi/copperline.github.io) under /docs when a v* +# website repository (CopperlineHQ/copperline.github.io) under /docs when a v* # tag is pushed, so the docs on the site always match the latest release. # The HTML build itself is checked on every push/PR by the docs job in # ci.yml; this workflow only handles publication. A workflow_dispatch @@ -10,7 +10,7 @@ name: Docs site HTML # # Pushing to the website repository needs the SITE_DEPLOY_KEY secret: the # private half of an SSH deploy key whose public half is installed with -# write access on LinuxJedi/copperline.github.io. +# write access on CopperlineHQ/copperline.github.io. on: push: tags: ["v*"] @@ -53,7 +53,7 @@ jobs: - name: Check out the website repository uses: actions/checkout@v7 with: - repository: LinuxJedi/copperline.github.io + repository: CopperlineHQ/copperline.github.io ssh-key: ${{ secrets.SITE_DEPLOY_KEY }} path: site - name: Replace /docs with the new build diff --git a/.github/workflows/homebrew.yml b/.github/workflows/homebrew.yml index adb8b10..fd2285e 100644 --- a/.github/workflows/homebrew.yml +++ b/.github/workflows/homebrew.yml @@ -34,5 +34,5 @@ jobs: # that the release tarball is reachable and its sha256 matches; this # is the part `brew style` alone cannot catch. run: | - brew tap LinuxJedi/copperline "$GITHUB_WORKSPACE" - brew audit --strict --online LinuxJedi/copperline/copperline + brew tap copperlinehq/copperline "$GITHUB_WORKSPACE" + brew audit --strict --online copperlinehq/copperline/copperline diff --git a/.github/workflows/wasm-demo.yml b/.github/workflows/wasm-demo.yml index e7bde3d..a63b9c3 100644 --- a/.github/workflows/wasm-demo.yml +++ b/.github/workflows/wasm-demo.yml @@ -1,7 +1,7 @@ name: Browser demo # Builds the wasm browser frontend (crates/copperline-web) and publishes it -# to the copperline.dev website repository (LinuxJedi/copperline.github.io) +# to the copperline.dev website repository (CopperlineHQ/copperline.github.io) # under /try when a v* tag is pushed, so the in-browser emulator always # matches the latest release. A workflow_dispatch trigger allows # re-publishing from whatever ref it is run on without cutting a release. @@ -15,7 +15,7 @@ name: Browser demo # # Pushing to the website repository needs the SITE_DEPLOY_KEY secret: the # private half of an SSH deploy key whose public half is installed with -# write access on LinuxJedi/copperline.github.io (shared with docs-site.yml). +# write access on CopperlineHQ/copperline.github.io (shared with docs-site.yml). on: push: tags: ["v*"] @@ -51,7 +51,7 @@ jobs: - name: Check out the website repository uses: actions/checkout@v7 with: - repository: LinuxJedi/copperline.github.io + repository: CopperlineHQ/copperline.github.io ssh-key: ${{ secrets.SITE_DEPLOY_KEY }} path: site - name: Replace the generated parts of /try diff --git a/Cargo.toml b/Cargo.toml index aad185a..6f7f5a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ rust-version = "1.87" license = "GPL-3.0-or-later" description = "A cycle-driven Amiga emulator written in Rust" readme = "README.md" -repository = "https://github.com/LinuxJedi/Copperline" +repository = "https://github.com/CopperlineHQ/Copperline" keywords = ["amiga", "emulator", "m68k"] categories = ["emulators"] publish = false diff --git a/Formula/copperline.rb b/Formula/copperline.rb index 93ff6b6..78a23c5 100644 --- a/Formula/copperline.rb +++ b/Formula/copperline.rb @@ -5,7 +5,7 @@ # subject to macOS Gatekeeper quarantine -- no Security & Privacy override is # ever needed. Install with: # -# brew tap LinuxJedi/copperline https://github.com/LinuxJedi/Copperline +# brew tap copperlinehq/copperline https://github.com/CopperlineHQ/Copperline # brew install copperline # # or build the in-development tree directly: @@ -15,14 +15,14 @@ # When tagging a release, update both `url` and `sha256` below. Compute the # checksum from the tagged tarball: # -# curl -fsSL https://github.com/LinuxJedi/Copperline/archive/refs/tags/vX.Y.Z.tar.gz | shasum -a 256 +# curl -fsSL https://github.com/CopperlineHQ/Copperline/archive/refs/tags/vX.Y.Z.tar.gz | shasum -a 256 class Copperline < Formula desc "Cycle-driven Amiga emulator (OCS/ECS/AGA) written in Rust" homepage "https://copperline.dev/" - url "https://github.com/LinuxJedi/Copperline/archive/refs/tags/v0.12.0.tar.gz" + url "https://github.com/CopperlineHQ/Copperline/archive/refs/tags/v0.12.0.tar.gz" sha256 "941c08aee236f1fd0a79fdff028b3ed90adb8e74b83b78a52256dcfddab9b145" license "GPL-3.0-or-later" - head "https://github.com/LinuxJedi/Copperline.git", branch: "main" + head "https://github.com/CopperlineHQ/Copperline.git", branch: "main" depends_on "rust" => :build diff --git a/README.md b/README.md index 9579532..6b0fcc7 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ against real hardware. ## Install (macOS, Homebrew) ```sh -brew tap LinuxJedi/copperline https://github.com/LinuxJedi/Copperline +brew tap copperlinehq/copperline https://github.com/CopperlineHQ/Copperline brew install copperline ``` @@ -107,7 +107,7 @@ flatpak install flathub dev.copperline.Copperline # any distribution ``` Or grab the single-file `Copperline-*.AppImage` from the -[releases page](https://github.com/LinuxJedi/Copperline/releases), +[releases page](https://github.com/CopperlineHQ/Copperline/releases), `chmod +x` it and run. Both bundle the AROS boot ROM. Packaging sources are in `packaging/`. diff --git a/RELEASE.md b/RELEASE.md index 41d0684..26b8914 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -108,7 +108,7 @@ the new version: ```sh VER=X.Y.Z -curl -fsSL "https://github.com/LinuxJedi/Copperline/archive/refs/tags/v$VER.tar.gz" | shasum -a 256 +curl -fsSL "https://github.com/CopperlineHQ/Copperline/archive/refs/tags/v$VER.tar.gz" | shasum -a 256 ``` Set `url` to the `v$VER.tar.gz` tarball and `sha256` to the printed digest. @@ -125,9 +125,9 @@ commands unless the formula is loaded from a tap. ```sh brew update -brew audit --strict --formula linuxjedi/copperline/copperline -brew upgrade --build-from-source linuxjedi/copperline/copperline -brew test linuxjedi/copperline/copperline +brew audit --strict --formula copperlinehq/copperline/copperline +brew upgrade --build-from-source copperlinehq/copperline/copperline +brew test copperlinehq/copperline/copperline ``` ## Linux: Flatpak and AppImage diff --git a/SECURITY.md b/SECURITY.md index 6494f30..1f2bd01 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,7 +1,7 @@ # Security Policy Report security issues through GitHub private vulnerability reporting once the -public `LinuxJedi/Copperline` repository is available. If that is not enabled, +public `CopperlineHQ/Copperline` repository is available. If that is not enabled, open a public issue asking for a private contact path and omit exploit details. Do not attach copyrighted ROMs, disks, hard-disk images, CD images, or other diff --git a/crates/copperline-web/www/try.js b/crates/copperline-web/www/try.js index ea6c602..62c3330 100644 --- a/crates/copperline-web/www/try.js +++ b/crates/copperline-web/www/try.js @@ -2378,7 +2378,7 @@ $('kickurl')?.addEventListener('click', () => { // is sent anywhere by the click itself - it all lands in an editable form // on GitHub. Older page shells have neither link and nothing here runs. -const BUG_REPORT_URL = 'https://github.com/LinuxJedi/Copperline/issues/new'; +const BUG_REPORT_URL = 'https://github.com/CopperlineHQ/Copperline/issues/new'; let buildInfo = null; // the wasm build's tag and commit, known once init resolves function bugReportHref() { diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 2369126..1938477 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -25,7 +25,7 @@ native desktop build. ## Installing on macOS (Homebrew) ```sh -brew tap LinuxJedi/copperline https://github.com/LinuxJedi/Copperline +brew tap copperlinehq/copperline https://github.com/CopperlineHQ/Copperline brew install copperline ``` @@ -36,7 +36,7 @@ override to click through, unlike a downloaded prebuilt app. Use most recent tagged release, then run `copperline` from the terminal. For a no-compiler install, download `Copperline-X.Y.Z-macos-universal.dmg` -from the [releases page](https://github.com/LinuxJedi/Copperline/releases), +from the [releases page](https://github.com/CopperlineHQ/Copperline/releases), open it, and drag `Copperline.app` onto the Applications shortcut. The app is a universal binary that runs natively on Apple Silicon and Intel, and bundles the AROS boot ROM, so it runs out of the box. The image is not code-signed or @@ -60,7 +60,7 @@ flatpak run dev.copperline.Copperline **AppImage** is a single self-contained file that needs no installation: download `Copperline-X.Y.Z-.AppImage` from the -[releases page](https://github.com/LinuxJedi/Copperline/releases), then: +[releases page](https://github.com/CopperlineHQ/Copperline/releases), then: ```sh chmod +x Copperline-*.AppImage diff --git a/docs/index.md b/docs/index.md index 84914e6..6aa5ced 100644 --- a/docs/index.md +++ b/docs/index.md @@ -22,7 +22,7 @@ it run the current cycle-sensitive OCS and AGA regression set, as well as Kickstart, Workbench, games, and CDTV/CD32 titles. The project home is [copperline.dev](https://copperline.dev/); the source -lives on [GitHub](https://github.com/LinuxJedi/Copperline). +lives on [GitHub](https://github.com/CopperlineHQ/Copperline). ```{figure} images/state-of-the-art.png :alt: Spaceballs' State of the Art running in Copperline diff --git a/docs/myst.yml b/docs/myst.yml index 2e85ead..e57309f 100644 --- a/docs/myst.yml +++ b/docs/myst.yml @@ -22,7 +22,7 @@ project: - http://archive.org authors: - name: Andrew Hutchings - github: https://github.com/LinuxJedi/Copperline + github: https://github.com/CopperlineHQ/Copperline toc: - file: index.md - title: User guide diff --git a/packaging/flatpak/dev.copperline.Copperline.metainfo.xml b/packaging/flatpak/dev.copperline.Copperline.metainfo.xml index 8520cf4..18a7b02 100644 --- a/packaging/flatpak/dev.copperline.Copperline.metainfo.xml +++ b/packaging/flatpak/dev.copperline.Copperline.metainfo.xml @@ -39,8 +39,8 @@ dev.copperline.Copperline.desktop https://copperline.dev/ - https://github.com/LinuxJedi/Copperline/issues - https://github.com/LinuxJedi/Copperline + https://github.com/CopperlineHQ/Copperline/issues + https://github.com/CopperlineHQ/Copperline Andrew Hutchings @@ -49,11 +49,11 @@ Spaceballs State of the Art running in Copperline - https://raw.githubusercontent.com/LinuxJedi/Copperline/main/docs/images/state-of-the-art.png + https://raw.githubusercontent.com/CopperlineHQ/Copperline/main/docs/images/state-of-the-art.png Built-in debugger overlay - https://raw.githubusercontent.com/LinuxJedi/Copperline/main/docs/images/ui-preview-debugger.png + https://raw.githubusercontent.com/CopperlineHQ/Copperline/main/docs/images/ui-preview-debugger.png diff --git a/packaging/flatpak/dev.copperline.Copperline.yaml b/packaging/flatpak/dev.copperline.Copperline.yaml index de2613d..46c63b1 100644 --- a/packaging/flatpak/dev.copperline.Copperline.yaml +++ b/packaging/flatpak/dev.copperline.Copperline.yaml @@ -95,7 +95,7 @@ modules: # For the Flathub submission, replace this with the tagged release so # builds are reproducible from a fixed point: # - type: git - # url: https://github.com/LinuxJedi/Copperline.git + # url: https://github.com/CopperlineHQ/Copperline.git # tag: vX.Y.Z # commit: # NOTE: the tag must be one that already contains assets/aros/ (the AROS diff --git a/packaging/windows/README.txt b/packaging/windows/README.txt index 8020205..c5ecc85 100644 --- a/packaging/windows/README.txt +++ b/packaging/windows/README.txt @@ -37,6 +37,6 @@ next to copperline.exe (or, if that folder is read-only, to the current directory or the system temporary directory). The file is replaced at the first crash of each run, and any further crashes in the same run are appended to it; please attach it when reporting a bug at -https://github.com/LinuxJedi/Copperline/issues +https://github.com/CopperlineHQ/Copperline/issues Copperline is licensed under GPL-3.0-or-later; see LICENSE.txt.