From df988fb670a9d4a5d3266973d18ece43ea2da199 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 12 Jul 2025 21:20:51 -0500 Subject: [PATCH] chore: rename to 'byteme' --- README.md | 2 +- frontend/index.html | 2 +- go.mod | 2 +- main.go | 2 +- wails.json | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f48df6f..cddbd95 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# bitme +# byteme A 'simple' application for reading and visualizing the bitrate of media files. diff --git a/frontend/index.html b/frontend/index.html index 7f3e711..b424743 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,7 +3,7 @@ - bitme + byteme
diff --git a/go.mod b/go.mod index 9cfdd64..eadd9c9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module bitme +module byteme go 1.23 diff --git a/main.go b/main.go index b9b25a6..f698735 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ func main() { // Create application with options err := wails.Run(&options.App{ - Title: "bitme", + Title: "byteme", Width: 1024, Height: 768, AssetServer: &assetserver.Options{ diff --git a/wails.json b/wails.json index 4584a90..72af063 100644 --- a/wails.json +++ b/wails.json @@ -1,7 +1,7 @@ { "$schema": "https://wails.io/schemas/config.v2.json", - "name": "bitme", - "outputfilename": "bitme", + "name": "byteme", + "outputfilename": "byteme", "frontend:install": "pnpm install", "frontend:build": "pnpm run build", "frontend:dev:watcher": "pnpm run dev",