Compare commits

..

2 Commits

Author SHA1 Message Date
Lea Anthony
ed8884a581 v1.8.1-pre1 2020-09-15 17:52:39 +10:00
Lea Anthony
05d27dda64 Remove incorrect build flag 2020-09-15 17:51:14 +10:00
2 changed files with 2 additions and 6 deletions

View File

@@ -216,10 +216,6 @@ func BuildNative(binaryName string, forceRebuild bool, buildMode string, project
buildCommand.Add("go")
buildCommand.Add("build")
if buildMode == BuildModeBridge {
// Ignore errors
buildCommand.Add("-i")
}
if binaryName != "" {
// Alter binary name based on OS
@@ -557,7 +553,7 @@ func ldFlags(po *ProjectOptions, buildMode string) string {
}
// Add windows flags
if po.Platform == "windows" {
if po.Platform == "windows" && buildMode == BuildModeProd {
ldflags += "-H windowsgui "
}

View File

@@ -1,4 +1,4 @@
package cmd
// Version - Wails version
const Version = "v1.8.0"
const Version = "v1.8.1-pre1"