diff --git a/.vscode/launch.json b/.vscode/launch.json index 7380bfe..23de613 100755 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,31 +2,31 @@ "version": "0.2.0", "configurations": [ { - "name": "Wails: Production vastop", + "name": "Wails: Production vastly", "type": "go", "request": "launch", "mode": "exec", - "program": "${workspaceFolder}/build/bin/vastop.exe", + "program": "${workspaceFolder}/build/bin/vastly.exe", "preLaunchTask": "build", "cwd": "${workspaceFolder}" }, { - "name": "Wails: Debug vastop", + "name": "Wails: Debug vastly", "type": "go", "request": "launch", "mode": "exec", - "program": "${workspaceFolder}/build/bin/vastop.exe", + "program": "${workspaceFolder}/build/bin/vastly.exe", "preLaunchTask": "build debug", "cwd": "${workspaceFolder}" }, { - "name": "Wails: Dev vastop", + "name": "Wails: Dev vastly", "type": "go", "request": "launch", "mode": "exec", - "program": "${workspaceFolder}/build/bin/vastop.exe", + "program": "${workspaceFolder}/build/bin/vastly.exe", "preLaunchTask": "build dev", "cwd": "${workspaceFolder}" } ] -} \ No newline at end of file +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 5b92f23..4c6ccf3 100755 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "cSpell.words": ["quickvast", "vmem"], + "cSpell.words": ["vastly", "vmem"], "cSpell.ignorePaths": [ "package-lock.json", "node_modules", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 006251c..b901a47 100755 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -33,7 +33,7 @@ "-gcflags", "all=-N -l", "-o", - "build/bin/vastop.exe" + "build/bin/vastly.exe" ] }, { @@ -68,7 +68,7 @@ "-gcflags", "all=-N -l", "-o", - "build/bin/vastop.exe" + "build/bin/vastly.exe" ] }, { @@ -103,9 +103,8 @@ "-gcflags", "all=-N -l", "-o", - "build/bin/vastop.exe" + "build/bin/vastly.exe" ] } ] } - \ No newline at end of file diff --git a/api/go.mod b/api/go.mod index 9b754aa..1f68b6e 100755 --- a/api/go.mod +++ b/api/go.mod @@ -1,3 +1,3 @@ -module xevion.dev/quickvast/api +module xevion.dev/vastly/api go 1.23.3 diff --git a/app.go b/app.go index 0fd4076..c8bd865 100755 --- a/app.go +++ b/app.go @@ -7,7 +7,7 @@ import ( "github.com/joho/godotenv" "go.uber.org/zap" - "xevion.dev/quickvast/api" + "xevion.dev/vastly/api" ) // App struct diff --git a/frontend/index.html b/frontend/index.html index 815ec91..9dff091 100755 --- a/frontend/index.html +++ b/frontend/index.html @@ -1,13 +1,12 @@ - - - - vastop - - -
- - + + + + vastly + + +
+ + - diff --git a/go.mod b/go.mod index e5df3a6..2681be9 100755 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module vastop +module vastly go 1.23.3 @@ -35,9 +35,9 @@ require ( golang.org/x/net v0.25.0 // indirect golang.org/x/sys v0.20.0 // indirect golang.org/x/text v0.15.0 // indirect - xevion.dev/quickvast/api v0.0.0 + xevion.dev/vastly/api v0.0.0 ) -replace xevion.dev/quickvast/api => ./api +replace xevion.dev/vastly/api => ./api // replace github.com/wailsapp/wails/v2 v2.9.2 => C:\Users\Xevion\go\pkg\mod diff --git a/main.go b/main.go index e9e8063..aef13a4 100755 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ func main() { // Create application with options err := wails.Run(&options.App{ - Title: "vastop", + Title: "vastly", Width: 768, Height: 960, AssetServer: &assetserver.Options{ diff --git a/wails.json b/wails.json index 232cbd1..fc670c7 100755 --- a/wails.json +++ b/wails.json @@ -1,7 +1,7 @@ { "$schema": "https://wails.io/schemas/config.v2.json", - "name": "vastop", - "outputfilename": "vastop", + "name": "vastly", + "outputfilename": "vastly", "frontend:install": "npm install", "frontend:build": "npm run build", "frontend:dev:watcher": "npm run dev",