From a7faaceb83d75296c446ff5a3154c80a6ce48d34 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Wed, 8 Jul 2026 19:51:28 +0200 Subject: [PATCH] refactor(app): rename GitLite to Gitty throughout the application The application has been rebranded from GitLite to Gitty, which involved updating various references across the codebase, including titles, descriptions, and identifiers. This change reflects the new branding strategy and ensures consistency in the user interface and backend. - Updated project name and identifiers in configuration files - Changed all instances of "GitLite" to "Gitty" in HTML and Svelte files - Adjusted descriptions and help texts to match the new branding --- cicd_tool/main.py | 12 ++++++------ index.html | 2 +- package-lock.json | 4 ++-- package.json | 2 +- public/splashscreen.html | 4 ++-- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 6 +++--- src/App.svelte | 2 +- src/lib/TitleBar.svelte | 2 +- src/lib/components/AnalyticsNoticeDialog.svelte | 2 +- src/lib/components/AppSettingsDialog.svelte | 2 +- src/lib/components/UpdateToast.svelte | 2 +- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/cicd_tool/main.py b/cicd_tool/main.py index 9ebb4ef..cf6ced4 100644 --- a/cicd_tool/main.py +++ b/cicd_tool/main.py @@ -11,7 +11,7 @@ from minio import Minio from minio.error import S3Error -# cicd_tool lives inside the GitLite repo, so its parent dir is the app root. +# cicd_tool lives inside the Gitty repo, so its parent dir is the app root. PROJECT_DIR = Path(__file__).resolve().parent.parent ARTIFACT_ROOT = PROJECT_DIR / "src-tauri" / "target" / "release" / "bundle" @@ -266,9 +266,9 @@ def main(version: Optional[str] = None, app_dir: Optional[str] = None) -> None: raise ConfigurationError("ARTIFACT_BASE_URL is required") # S3/MinIO bucket names must be lowercase, so normalise regardless of how the - # S3_BUCKET variable is cased (e.g. "GitLite" -> "gitlite"). - bucket_name = (os.environ.get("S3_BUCKET") or "gitlite").lower() - bucket_prefix = (app_dir or os.environ.get("APP_DIR") or "gitlite").strip("/") + # S3_BUCKET variable is cased (e.g. "Gitty" -> "gitty"). + bucket_name = (os.environ.get("S3_BUCKET") or "gitty").lower() + bucket_prefix = (app_dir or os.environ.get("APP_DIR") or "gitty").strip("/") artifacts = _collect_artifacts() if not artifacts: @@ -329,7 +329,7 @@ def main(version: Optional[str] = None, app_dir: Optional[str] = None) -> None: if __name__ == "__main__": parser = argparse.ArgumentParser( - description="Upload GitLite release artifacts to MinIO." + description="Upload Gitty release artifacts to MinIO." ) parser.add_argument( "-v", @@ -340,7 +340,7 @@ if __name__ == "__main__": parser.add_argument( "--app-dir", default=None, - help="App directory prefix inside the bucket (defaults to gitlite).", + help="App directory prefix inside the bucket (defaults to gitty).", ) args = parser.parse_args() diff --git a/index.html b/index.html index b5d3d25..d3b3c4a 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - Tauri Git Lite + Gitty
diff --git a/package-lock.json b/package-lock.json index c84da96..4e1ae4f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "git-lite", + "name": "gitty", "version": "2026.7.16", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "git-lite", + "name": "gitty", "version": "2026.7.16", "dependencies": { "@lucide/svelte": "^1.21.0", diff --git a/package.json b/package.json index 3acd914..1bb140b 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "git-lite", + "name": "gitty", "version": "2026.7.16", "private": true, "type": "module", diff --git a/public/splashscreen.html b/public/splashscreen.html index ceabb6c..6cbdd54 100644 --- a/public/splashscreen.html +++ b/public/splashscreen.html @@ -3,7 +3,7 @@ - GitLite + Gitty