mirror of
https://github.com/Xevion/vastly.git
synced 2025-12-06 01:16:50 -06:00
Rename app to vastly
This commit is contained in:
12
.vscode/launch.json
vendored
12
.vscode/launch.json
vendored
@@ -2,29 +2,29 @@
|
||||
"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}"
|
||||
}
|
||||
|
||||
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"cSpell.words": ["quickvast", "vmem"],
|
||||
"cSpell.words": ["vastly", "vmem"],
|
||||
"cSpell.ignorePaths": [
|
||||
"package-lock.json",
|
||||
"node_modules",
|
||||
|
||||
7
.vscode/tasks.json
vendored
7
.vscode/tasks.json
vendored
@@ -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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module xevion.dev/quickvast/api
|
||||
module xevion.dev/vastly/api
|
||||
|
||||
go 1.23.3
|
||||
|
||||
2
app.go
2
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
|
||||
|
||||
@@ -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
6
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
|
||||
|
||||
2
main.go
2
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{
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user