From 07200177f56be217c0a1db2e99e1e4d3776eb053 Mon Sep 17 00:00:00 2001 From: Alex Anderson Date: Sun, 26 Feb 2017 13:38:54 -0800 Subject: [PATCH 1/3] Comment out enabling dev tools I feel like people should know how to do this but I have personally seen people getting confused as to why the developer tools show up. This would make it so you are not required to even touch this file --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () { From a2e009e5c1488c758e1a87410910c2daa03a88b5 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Mon, 13 Mar 2017 12:56:38 -0700 Subject: [PATCH 2/3] update readme with links to more guides and examples --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 78a36f9..449c7c7 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,15 @@ npm install npm start ``` -Learn more about Electron and its API in the [documentation](http://electron.atom.io/docs/). +## Resources for Learning Electron -## Other Example Apps +- [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 -For more example apps, see the -[list of boilerplates](http://electron.atom.io/community/#boilerplates) -created by the awesome electron community. +## License -#### License [CC0 1.0 (Public Domain)](LICENSE.md) +[CC0 1.0 (Public Domain)](LICENSE.md) From 66ec67a8a7888c5d65bf5c0cea3e2ec3f68fdfe1 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Wed, 22 Mar 2017 16:01:06 -0700 Subject: [PATCH 3/3] use safer semver range for electron --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } }