diff --git a/dist/macos/update_appcast_tip.py b/dist/macos/update_appcast_tip.py index 6497b8133..2fa0b0d02 100644 --- a/dist/macos/update_appcast_tip.py +++ b/dist/macos/update_appcast_tip.py @@ -22,7 +22,7 @@ from datetime import datetime, timezone now = datetime.now(timezone.utc) build = os.environ["GHOSTTY_BUILD"] commit = os.environ["GHOSTTY_COMMIT"] -repo = "https://github.com/mitchellh/ghostty" +repo = "https://github.com/ghostty-org/ghostty" # Read our sign_update output with open("sign_update.txt", "r") as f: diff --git a/macos/Sources/App/macOS/AppDelegate.swift b/macos/Sources/App/macOS/AppDelegate.swift index 7a11e6ac1..8b6b064a9 100644 --- a/macos/Sources/App/macOS/AppDelegate.swift +++ b/macos/Sources/App/macOS/AppDelegate.swift @@ -463,7 +463,7 @@ class AppDelegate: NSObject, } @IBAction func showHelp(_ sender: Any) { - guard let url = URL(string: "https://github.com/mitchellh/ghostty") else { return } + guard let url = URL(string: "https://github.com/ghostty-org/ghostty") else { return } NSWorkspace.shared.open(url) } } diff --git a/nix/package.nix b/nix/package.nix index b638831da..8888a4e29 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -160,7 +160,7 @@ in ''; meta = with lib; { - homepage = "https://github.com/mitchellh/ghostty"; + homepage = "https://github.com/ghostty-org/ghostty"; license = licenses.mit; platforms = ["x86_64-linux" "aarch64-linux"]; mainProgram = "ghostty"; diff --git a/src/apprt/gtk/Window.zig b/src/apprt/gtk/Window.zig index 91f7f95bb..01e6df77a 100644 --- a/src/apprt/gtk/Window.zig +++ b/src/apprt/gtk/Window.zig @@ -471,7 +471,7 @@ fn gtkActionAbout( "version", build_config.version_string.ptr, "website", - "https://github.com/mitchellh/ghostty", + "https://github.com/ghostty-org/ghostty", @as(?*anyopaque, null), ); }