fix: add involves edge from task to agent:nomos at creation
Plus sync vendor directory for Docker build compatibility.
This commit is contained in:
26
vendor/github.com/wailsapp/wails/v3/internal/version/version.go
generated
vendored
Normal file
26
vendor/github.com/wailsapp/wails/v3/internal/version/version.go
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package version
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
"github.com/wailsapp/wails/v3/internal/debug"
|
||||
)
|
||||
|
||||
//go:embed version.txt
|
||||
var versionString string
|
||||
|
||||
const DevVersion = "v3.0.0-dev"
|
||||
|
||||
func String() string {
|
||||
if !IsDev() {
|
||||
return versionString
|
||||
}
|
||||
return DevVersion
|
||||
}
|
||||
|
||||
func LatestStable() string {
|
||||
return versionString
|
||||
}
|
||||
|
||||
func IsDev() bool {
|
||||
return debug.LocalModulePath != ""
|
||||
}
|
||||
1
vendor/github.com/wailsapp/wails/v3/internal/version/version.txt
generated
vendored
Normal file
1
vendor/github.com/wailsapp/wails/v3/internal/version/version.txt
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
v3.0.0-alpha2.117
|
||||
Reference in New Issue
Block a user