diff --git a/README.md b/README.md index 58216ef..383cbfb 100644 --- a/README.md +++ b/README.md @@ -29,16 +29,17 @@ npm install npm start ``` -Learn more about Electron and its API in the [documentation](http://electron.atom.io/docs/). +Note: If you're using Linux Bash for Windows, [see this guide](https://www.howtogeek.com/261575/how-to-run-graphical-linux-desktop-applications-from-windows-10s-bash-shell/) or use `node` from the command prompt. ---- -Note: If you're using Linux Bash for Windows, [see this guide](https://www.howtogeek.com/261575/how-to-run-graphical-linux-desktop-applications-from-windows-10s-bash-shell/) or use `node` from Command Prompt +## Resources for Learning Electron +- [electron.atom.io/docs](http://electron.atom.io/docs) - all of Electron's documentation +- [electron.atom.io/community/#boilerplates](http://electron.atom.io/community/#boilerplates) - sample starter apps created by the community +- [electron/electron-quick-start](https://github.com/electron/electron-quick-start) - a very basic starter Electron app +- [electron/simple-samples](https://github.com/electron/simple-samples) - small applications with ideas for taking them further +- [electron/electron-api-demos](https://github.com/electron/electron-api-demos) - an Electron app that teaches you how to use Electron +- [hokein/electron-sample-apps](https://github.com/hokein/electron-sample-apps) - small demo apps for the various Electron APIs -## Other Example Apps +## License -For more example apps, see the -[list of boilerplates](http://electron.atom.io/community/#boilerplates) -created by the awesome electron community. - -#### License [CC0 1.0 (Public Domain)](LICENSE.md) +[CC0 1.0 (Public Domain)](LICENSE.md) diff --git a/main.js b/main.js index 623740a..07561fa 100644 --- a/main.js +++ b/main.js @@ -23,7 +23,7 @@ function createWindow () { })) // Open the DevTools. - mainWindow.webContents.openDevTools() + // mainWindow.webContents.openDevTools() // Emitted when the window is closed. mainWindow.on('closed', function () { diff --git a/package.json b/package.json index f868ebb..845fe01 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,6 @@ "author": "GitHub", "license": "CC0-1.0", "devDependencies": { - "electron": "^1.4.1" + "electron": "~1.6.2" } }