Rename app to vastly

This commit is contained in:
2024-12-14 13:55:03 -06:00
parent 46be56ff64
commit 56014ec51e
9 changed files with 28 additions and 30 deletions

12
.vscode/launch.json vendored
View File

@@ -2,29 +2,29 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Wails: Production vastop", "name": "Wails: Production vastly",
"type": "go", "type": "go",
"request": "launch", "request": "launch",
"mode": "exec", "mode": "exec",
"program": "${workspaceFolder}/build/bin/vastop.exe", "program": "${workspaceFolder}/build/bin/vastly.exe",
"preLaunchTask": "build", "preLaunchTask": "build",
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },
{ {
"name": "Wails: Debug vastop", "name": "Wails: Debug vastly",
"type": "go", "type": "go",
"request": "launch", "request": "launch",
"mode": "exec", "mode": "exec",
"program": "${workspaceFolder}/build/bin/vastop.exe", "program": "${workspaceFolder}/build/bin/vastly.exe",
"preLaunchTask": "build debug", "preLaunchTask": "build debug",
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },
{ {
"name": "Wails: Dev vastop", "name": "Wails: Dev vastly",
"type": "go", "type": "go",
"request": "launch", "request": "launch",
"mode": "exec", "mode": "exec",
"program": "${workspaceFolder}/build/bin/vastop.exe", "program": "${workspaceFolder}/build/bin/vastly.exe",
"preLaunchTask": "build dev", "preLaunchTask": "build dev",
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
} }

View File

@@ -1,5 +1,5 @@
{ {
"cSpell.words": ["quickvast", "vmem"], "cSpell.words": ["vastly", "vmem"],
"cSpell.ignorePaths": [ "cSpell.ignorePaths": [
"package-lock.json", "package-lock.json",
"node_modules", "node_modules",

7
.vscode/tasks.json vendored
View File

@@ -33,7 +33,7 @@
"-gcflags", "-gcflags",
"all=-N -l", "all=-N -l",
"-o", "-o",
"build/bin/vastop.exe" "build/bin/vastly.exe"
] ]
}, },
{ {
@@ -68,7 +68,7 @@
"-gcflags", "-gcflags",
"all=-N -l", "all=-N -l",
"-o", "-o",
"build/bin/vastop.exe" "build/bin/vastly.exe"
] ]
}, },
{ {
@@ -103,9 +103,8 @@
"-gcflags", "-gcflags",
"all=-N -l", "all=-N -l",
"-o", "-o",
"build/bin/vastop.exe" "build/bin/vastly.exe"
] ]
} }
] ]
} }

View File

@@ -1,3 +1,3 @@
module xevion.dev/quickvast/api module xevion.dev/vastly/api
go 1.23.3 go 1.23.3

2
app.go
View File

@@ -7,7 +7,7 @@ import (
"github.com/joho/godotenv" "github.com/joho/godotenv"
"go.uber.org/zap" "go.uber.org/zap"
"xevion.dev/quickvast/api" "xevion.dev/vastly/api"
) )
// App struct // App struct

View File

@@ -1,13 +1,12 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"/> <meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport"/> <meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>vastop</title> <title>vastly</title>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
<script src="./src/main.tsx" type="module"></script> <script src="./src/main.tsx" type="module"></script>
</body> </body>
</html> </html>

6
go.mod
View File

@@ -1,4 +1,4 @@
module vastop module vastly
go 1.23.3 go 1.23.3
@@ -35,9 +35,9 @@ require (
golang.org/x/net v0.25.0 // indirect golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.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 // replace github.com/wailsapp/wails/v2 v2.9.2 => C:\Users\Xevion\go\pkg\mod

View File

@@ -17,7 +17,7 @@ func main() {
// Create application with options // Create application with options
err := wails.Run(&options.App{ err := wails.Run(&options.App{
Title: "vastop", Title: "vastly",
Width: 768, Width: 768,
Height: 960, Height: 960,
AssetServer: &assetserver.Options{ AssetServer: &assetserver.Options{

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "https://wails.io/schemas/config.v2.json", "$schema": "https://wails.io/schemas/config.v2.json",
"name": "vastop", "name": "vastly",
"outputfilename": "vastop", "outputfilename": "vastly",
"frontend:install": "npm install", "frontend:install": "npm install",
"frontend:build": "npm run build", "frontend:build": "npm run build",
"frontend:dev:watcher": "npm run dev", "frontend:dev:watcher": "npm run dev",