Merge pull request #1812 from jparise/ghostty-org

Update functional URLs for ghostty-org
This commit is contained in:
Mitchell Hashimoto
2024-06-01 15:32:43 -07:00
committed by GitHub
4 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ from datetime import datetime, timezone
now = datetime.now(timezone.utc) now = datetime.now(timezone.utc)
build = os.environ["GHOSTTY_BUILD"] build = os.environ["GHOSTTY_BUILD"]
commit = os.environ["GHOSTTY_COMMIT"] commit = os.environ["GHOSTTY_COMMIT"]
repo = "https://github.com/mitchellh/ghostty" repo = "https://github.com/ghostty-org/ghostty"
# Read our sign_update output # Read our sign_update output
with open("sign_update.txt", "r") as f: with open("sign_update.txt", "r") as f:

View File

@ -463,7 +463,7 @@ class AppDelegate: NSObject,
} }
@IBAction func showHelp(_ sender: Any) { @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) NSWorkspace.shared.open(url)
} }
} }

View File

@ -160,7 +160,7 @@ in
''; '';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/mitchellh/ghostty"; homepage = "https://github.com/ghostty-org/ghostty";
license = licenses.mit; license = licenses.mit;
platforms = ["x86_64-linux" "aarch64-linux"]; platforms = ["x86_64-linux" "aarch64-linux"];
mainProgram = "ghostty"; mainProgram = "ghostty";

View File

@ -471,7 +471,7 @@ fn gtkActionAbout(
"version", "version",
build_config.version_string.ptr, build_config.version_string.ptr,
"website", "website",
"https://github.com/mitchellh/ghostty", "https://github.com/ghostty-org/ghostty",
@as(?*anyopaque, null), @as(?*anyopaque, null),
); );
} }