Merge commit '73ee9ef5307c6fa12007395efc68c900ba90070a'

This commit is contained in:
Lea Anthony
2020-12-08 20:39:29 +11:00
2 changed files with 4 additions and 1 deletions

View File

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

View File

@@ -83,6 +83,9 @@ func init() {
return fmt.Errorf("Unable to find 'project.json'. Please check you are in a Wails project directory")
}
// Set firebug flag
projectOptions.UseFirebug = usefirebug
// Check that this platform is supported
if !projectOptions.PlatformSupported() {
logger.Yellow("WARNING: This project is unsupported on %s - it probably won't work!\n Valid platforms: %s\n", runtime.GOOS, strings.Join(projectOptions.Platforms, ", "))