Compare commits

..

7 Commits

Author SHA1 Message Date
Lea Anthony
0367bdf8be Merge branch 'develop' into migrate-tool 2019-10-24 16:05:44 +11:00
Lea Anthony
594efcb79e fix: go.mod 2019-10-24 16:01:25 +11:00
Lea Anthony
8c96bba1f9 fix: update text 2019-10-24 15:37:59 +11:00
Lea Anthony
1d785d7d40 feat: Install NPM Package 2019-10-24 15:29:09 +11:00
Lea Anthony
cfc0cc053b feat: initial migrate command 2019-10-24 14:29:54 +11:00
Lea Anthony
d572418ec3 chore: version bump 2019-10-23 14:12:38 +11:00
Lea Anthony
8c7480d277 Develop (#265)
* Patch for file dialog on OSX

* Update CONTRIBUTORS.md

* 262 add wails shutdown method (#264)

* feat: support close in bridge mode

* feat: WailsShutdown callback

Now handles proper shutdown through:
  * runtime.Window.Close()
  * Killing the main window
  * Ctrl-C

* chore: version bump
2019-10-23 14:08:56 +11:00
2 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
package cmd
// Version - Wails version
const Version = "v0.18.9-pre"
const Version = "v0.18.7-pre"

View File

@@ -1,5 +1,6 @@
// Package webview implements Go bindings to https://github.com/zserge/webview C library.
// Package wails implements Go bindings to https://github.com/zserge/webview C library.
// It is a modified version of webview.go from that repository
// Bindings closely repeat the C APIs and include both, a simplified
// single-function API to just open a full-screen webview window, and a more
// advanced and featureful set of APIs, including Go-to-JavaScript bindings.
@@ -13,7 +14,7 @@ package webview
#cgo linux openbsd freebsd CFLAGS: -DWEBVIEW_GTK=1 -Wno-deprecated-declarations
#cgo linux openbsd freebsd pkg-config: gtk+-3.0 webkit2gtk-4.0
#cgo windows CFLAGS: -DWEBVIEW_WINAPI=1 -std=c99
#cgo windows CFLAGS: -DWEBVIEW_WINAPI=1
#cgo windows LDFLAGS: -lole32 -lcomctl32 -loleaut32 -luuid -lgdi32
#cgo darwin CFLAGS: -DWEBVIEW_COCOA=1 -x objective-c