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

14
.vscode/launch.json vendored
View File

@@ -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}"
}
]
}
}

View File

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

7
.vscode/tasks.json vendored
View File

@@ -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"
]
}
]
}

View File

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

2
app.go
View File

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

View File

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

6
go.mod
View File

@@ -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

View File

@@ -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{

View File

@@ -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",