5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 06:01:52 +08:00

Merge pull request #63 from wailsapp/0.9.9

0.9.9
This commit is contained in:
Lea Anthony 2019-03-07 08:25:23 +11:00 committed by GitHub
commit 28b2025aaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -11,12 +11,15 @@ func basic() string {
func main() { func main() {
js := mewn.String("./frontend/dist/app.js")
css := mewn.String("./frontend/dist/app.css")
app := wails.CreateApp(&wails.AppConfig{ app := wails.CreateApp(&wails.AppConfig{
Width: 1024, Width: 1024,
Height: 768, Height: 768,
Title: "{{.Name}}", Title: "{{.Name}}",
JS: mewn.String("./frontend/dist/app.js"), JS: js,
CSS: mewn.String("./frontend/dist/app.css"), CSS: css,
Colour: "#131313", Colour: "#131313",
}) })
app.Bind(basic) app.Bind(basic)

View File

@ -2,4 +2,4 @@ package cmd
// Version - Wails version // Version - Wails version
// ...oO(There must be a better way) // ...oO(There must be a better way)
const Version = "v0.9.8" const Version = "v0.9.9"