mirror of
https://github.com/taigrr/wails.git
synced 2026-04-14 10:50:53 -07:00
* 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 * chore: version bump * feat: adjust binary name for OS * fix: allow spaces in gcc path * feat: migrate command * fix: npm/node versions * fix: allow IE for serve * feat: go build script * fix: make runtime ES2015 compliant * fix: remove invoke patch * fix: allow any line endings * chore: remove legacy bridge files * chore: latest assets
22 lines
453 B
JavaScript
22 lines
453 B
JavaScript
/*
|
|
_ __ _ __
|
|
| | / /___ _(_) /____
|
|
| | /| / / __ `/ / / ___/
|
|
| |/ |/ / /_/ / / (__ )
|
|
|__/|__/\__,_/_/_/____/
|
|
The lightweight framework for web-like apps
|
|
(c) Lea Anthony 2019-present
|
|
*/
|
|
/* jshint esversion: 6 */
|
|
|
|
const Log = require('./log');
|
|
const Browser = require('./browser');
|
|
const Events = require('./events');
|
|
const Init = require('./init');
|
|
|
|
module.exports = {
|
|
Log: Log,
|
|
Browser: Browser,
|
|
Events: Events,
|
|
Init: Init
|
|
}; |