generated from iffy/electron-updater-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 50891c0
Showing
8 changed files
with
368 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
dist/ | ||
yarn.lock | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
This is free and unencumbered software released into the public domain. | ||
|
||
Anyone is free to copy, modify, publish, use, compile, sell, or | ||
distribute this software, either in source code form or as a compiled | ||
binary, for any purpose, commercial or non-commercial, and by any | ||
means. | ||
|
||
In jurisdictions that recognize copyright laws, the author or authors | ||
of this software dedicate any and all copyright interest in the | ||
software to the public domain. We make this dedication for the benefit | ||
of the public at large and to the detriment of our heirs and | ||
successors. We intend this dedication to be an overt act of | ||
relinquishment in perpetuity of all present and future rights to this | ||
software under copyright law. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
For more information, please refer to <http://unlicense.org/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
This repo contains the **bare minimum code** to have an auto-updating Electron app using [`electron-updater`](https://github.com/electron-userland/electron-builder/tree/master/packages/electron-updater) with releases stored on GitHub. | ||
|
||
If you can't use GitHub, you can use other providers: | ||
|
||
- [Complete electron-updater HTTP example](https://gist.github.com/iffy/0ff845e8e3f59dbe7eaf2bf24443f104) | ||
- [Complete electron-updater from gitlab.com private repo example](https://gist.github.com/Slauta/5b2bcf9fa1f6f6a9443aa6b447bcae05) | ||
|
||
**NOTE:** If you want to run through this whole process, either fork this repo or [start your own from a template](https://github.com/iffy/electron-updater-example/generate). Then replace all instances of `iffy` with your GitHub username before doing the following steps. | ||
|
||
1. For macOS, you will need a code-signing certificate. | ||
|
||
Install Xcode (from the App Store), then follow [these instructions](https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/MaintainingCertificates/MaintainingCertificates.html#//apple_ref/doc/uid/TP40012582-CH31-SW6) to make sure you have a "Developer ID Application" certificate. If you'd like to export the certificate (for automated building, for instance) [you can](https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/MaintainingCertificates/MaintainingCertificates.html#//apple_ref/doc/uid/TP40012582-CH31-SW7). You would then follow [these instructions](https://www.electron.build/code-signing). | ||
|
||
This example application is set up to perform code-signing and notarization on Mac OS provided that a `Developer ID | ||
Application` certificate is installed in the default keychain. The following environment variables are important for the signing process: | ||
|
||
- `CSC_IDENTITY_AUTO_DISCOVERY` - controls whether `electron-builder` tries to sign the application; default is `true`, set to `false` to skip signing | ||
- `APPLE_ID` - the Apple ID to use for notarization (required for signing). | ||
- `APPLE_ID_PASSWORD` - the password to use with the specified Apple ID for notarization (required for signing). Apple recommends setting up an app-specific password to safeguard the Apple ID password (see [Apple Support](https://support.apple.com/en-us/HT204397)) for more information. | ||
|
||
To enable code-signing and notarization: | ||
|
||
export CSC_IDENTITY_AUTO_DISCOVERY="true" | ||
export APPLE_ID="<your Apple ID>" | ||
export APPLE_ID_PASSWORD="<your Apple Password>" | ||
|
||
2. Adjust `package.json` if needed. | ||
|
||
By default, `electron-updater` will try to detect the GitHub settings (such as the repo name and owner) from reading the `.git/config` or from reading other attributes within `package.json`. If the auto-detected settings are not what you want, configure the [`publish`](https://github.com/electron-userland/electron-builder/wiki/Publishing-Artifacts#PublishConfiguration) property as follows: | ||
|
||
{ | ||
... | ||
"build": { | ||
"publish": [{ | ||
"provider": "github", | ||
"owner": "iffy", | ||
"repo": "electron-updater-example" | ||
}], | ||
... | ||
} | ||
} | ||
|
||
3. Install necessary dependencies with: | ||
|
||
yarn | ||
|
||
or | ||
|
||
npm install | ||
|
||
4. Generate a GitHub access token by going to <https://github.com/settings/tokens/new>. The access token should have the `repo` scope/permission. Once you have the token, assign it to an environment variable | ||
|
||
On macOS/linux: | ||
|
||
export GH_TOKEN="<YOUR_TOKEN_HERE>" | ||
|
||
On Windows, run in powershell: | ||
|
||
[Environment]::SetEnvironmentVariable("GH_TOKEN","<YOUR_TOKEN_HERE>","User") | ||
|
||
Make sure to restart your IDE/Terminal to inherit latest env variable. | ||
|
||
5. Publish for your platform with: | ||
|
||
electron-builder -p always | ||
|
||
or | ||
|
||
npm run publish | ||
|
||
If you want to publish for more platforms, edit the `publish` script in `package.json`. For instance, to build for Windows and macOS: | ||
|
||
... | ||
"scripts": { | ||
"publish": "electron-builder --mac --win -p always" | ||
}, | ||
... | ||
|
||
NOTE: The Mac OS signing/notarization process must be run on Mac OS. | ||
|
||
6. Release the release on GitHub by going to <https://github.com/YOUR_GIT_HUB_USERNAME/electron-updater-example/releases>, editing the release and clicking "Publish release." | ||
|
||
7. Download and install the app from <https://github.com/YOUR_GIT_HUB_USERNAME/electron-updater-example/releases>. | ||
|
||
8. Update the version in `package.json`, commit and push to GitHub. | ||
|
||
9. Do steps 5 and 6 again. | ||
|
||
10. Open the installed version of the app and see that it updates itself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.security.cs.allow-jit</key> | ||
<true/> | ||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||
<true/> | ||
<key>com.apple.security.cs.allow-dyld-environment-variables</key> | ||
<true/> | ||
<key>com.apple.security.cs.disable-library-validation</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
const { notarize } = require('electron-notarize'); | ||
const path = require('path'); | ||
|
||
exports.default = async function notarizing(context) { | ||
if (context.electronPlatformName !== 'darwin' || process.env.CSC_IDENTITY_AUTO_DISCOVERY === 'false') { | ||
console.log("Skipping notarization"); | ||
return; | ||
} | ||
console.log("Notarizing...") | ||
|
||
const appBundleId = context.packager.appInfo.info._configuration.appId; | ||
const appName = context.packager.appInfo.productFilename; | ||
const appPath = path.normalize(path.join(context.appOutDir, `${appName}.app`)); | ||
const appleId = process.env.APPLE_ID; | ||
const appleIdPassword = process.env.APPLE_ID_PASSWORD; | ||
if (!appleId) { | ||
console.warn("Not notarizing: Missing APPLE_ID environment variable"); | ||
return; | ||
} | ||
if (!appleIdPassword) { | ||
console.warn("Not notarizing: Missing APPLE_ID_PASSWORD environment variable"); | ||
return; | ||
} | ||
return notarize({ | ||
appBundleId, | ||
appPath, | ||
appleId, | ||
appleIdPassword, | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
// This is free and unencumbered software released into the public domain. | ||
// See LICENSE for details | ||
|
||
const {app, BrowserWindow, Menu} = require('electron'); | ||
const log = require('electron-log'); | ||
const {autoUpdater} = require("electron-updater"); | ||
|
||
//------------------------------------------------------------------- | ||
// Logging | ||
// | ||
// THIS SECTION IS NOT REQUIRED | ||
// | ||
// This logging setup is not required for auto-updates to work, | ||
// but it sure makes debugging easier :) | ||
//------------------------------------------------------------------- | ||
autoUpdater.logger = log; | ||
autoUpdater.logger.transports.file.level = 'info'; | ||
log.info('App starting...'); | ||
|
||
//------------------------------------------------------------------- | ||
// Define the menu | ||
// | ||
// THIS SECTION IS NOT REQUIRED | ||
//------------------------------------------------------------------- | ||
let template = [] | ||
if (process.platform === 'darwin') { | ||
// OS X | ||
const name = app.getName(); | ||
template.unshift({ | ||
label: name, | ||
submenu: [ | ||
{ | ||
label: 'About ' + name, | ||
role: 'about' | ||
}, | ||
{ | ||
label: 'Quit', | ||
accelerator: 'Command+Q', | ||
click() { app.quit(); } | ||
}, | ||
] | ||
}) | ||
} | ||
|
||
|
||
//------------------------------------------------------------------- | ||
// Open a window that displays the version | ||
// | ||
// THIS SECTION IS NOT REQUIRED | ||
// | ||
// This isn't required for auto-updates to work, but it's easier | ||
// for the app to show a window than to have to click "About" to see | ||
// that updates are working. | ||
//------------------------------------------------------------------- | ||
let win; | ||
|
||
function sendStatusToWindow(text) { | ||
log.info(text); | ||
win.webContents.send('message', text); | ||
} | ||
function createDefaultWindow() { | ||
win = new BrowserWindow({ | ||
webPreferences: { | ||
nodeIntegration: true, | ||
contextIsolation: false | ||
} | ||
}); | ||
win.webContents.openDevTools(); | ||
win.on('closed', () => { | ||
win = null; | ||
}); | ||
win.loadURL(`file://${__dirname}/version.html#v${app.getVersion()}`); | ||
return win; | ||
} | ||
autoUpdater.on('checking-for-update', () => { | ||
sendStatusToWindow('Checking for update...'); | ||
}) | ||
autoUpdater.on('update-available', (info) => { | ||
sendStatusToWindow('Update available.'); | ||
}) | ||
autoUpdater.on('update-not-available', (info) => { | ||
sendStatusToWindow('Update not available.'); | ||
}) | ||
autoUpdater.on('error', (err) => { | ||
sendStatusToWindow('Error in auto-updater. ' + err); | ||
}) | ||
autoUpdater.on('download-progress', (progressObj) => { | ||
let log_message = "Download speed: " + progressObj.bytesPerSecond; | ||
log_message = log_message + ' - Downloaded ' + progressObj.percent + '%'; | ||
log_message = log_message + ' (' + progressObj.transferred + "/" + progressObj.total + ')'; | ||
sendStatusToWindow(log_message); | ||
}) | ||
autoUpdater.on('update-downloaded', (info) => { | ||
sendStatusToWindow('Update downloaded'); | ||
}); | ||
app.on('ready', function() { | ||
// Create the Menu | ||
const menu = Menu.buildFromTemplate(template); | ||
Menu.setApplicationMenu(menu); | ||
|
||
createDefaultWindow(); | ||
}); | ||
app.on('window-all-closed', () => { | ||
app.quit(); | ||
}); | ||
|
||
// | ||
// CHOOSE one of the following options for Auto updates | ||
// | ||
|
||
//------------------------------------------------------------------- | ||
// Auto updates - Option 1 - Simplest version | ||
// | ||
// This will immediately download an update, then install when the | ||
// app quits. | ||
//------------------------------------------------------------------- | ||
app.on('ready', function() { | ||
autoUpdater.checkForUpdatesAndNotify(); | ||
}); | ||
|
||
//------------------------------------------------------------------- | ||
// Auto updates - Option 2 - More control | ||
// | ||
// For details about these events, see the Wiki: | ||
// https://github.com/electron-userland/electron-builder/wiki/Auto-Update#events | ||
// | ||
// The app doesn't need to listen to any events except `update-downloaded` | ||
// | ||
// Uncomment any of the below events to listen for them. Also, | ||
// look in the previous section to see them being used. | ||
//------------------------------------------------------------------- | ||
// app.on('ready', function() { | ||
// autoUpdater.checkForUpdates(); | ||
// }); | ||
// autoUpdater.on('checking-for-update', () => { | ||
// }) | ||
// autoUpdater.on('update-available', (info) => { | ||
// }) | ||
// autoUpdater.on('update-not-available', (info) => { | ||
// }) | ||
// autoUpdater.on('error', (err) => { | ||
// }) | ||
// autoUpdater.on('download-progress', (progressObj) => { | ||
// }) | ||
// autoUpdater.on('update-downloaded', (info) => { | ||
// autoUpdater.quitAndInstall(); | ||
// }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"name": "electron-updater-example", | ||
"version": "0.8.1", | ||
"main": "main.js", | ||
"description": "electron-updater example project", | ||
"author": "Matt Haggard", | ||
"scripts": { | ||
"publish": "electron-builder -p always" | ||
}, | ||
"devDependencies": { | ||
"electron": "^14.0.1", | ||
"electron-builder": "^22.11.7", | ||
"electron-notarize": "^1.1.1" | ||
}, | ||
"dependencies": { | ||
"electron-log": "^4.4.1", | ||
"electron-updater": "^4.3.9" | ||
}, | ||
"build": { | ||
"appId": "com.github.iffy.electronupdaterexample", | ||
"afterSign": "./build/notarize.js", | ||
"mac": { | ||
"category": "your.app.category.type" | ||
}, | ||
"win": { | ||
"target": "nsis" | ||
}, | ||
"nsis": { | ||
"oneClick": false | ||
}, | ||
"linux": { | ||
"category": "your.app.category.type", | ||
"target": "AppImage" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Electron Updater Example</title> | ||
</head> | ||
<body> | ||
Current version: <span id="version">vX.Y.Z</span> | ||
<div id="messages"></div> | ||
<script> | ||
// Display the current version | ||
let version = window.location.hash.substring(1); | ||
document.getElementById('version').innerText = version; | ||
|
||
// Listen for messages | ||
const {ipcRenderer} = require('electron'); | ||
ipcRenderer.on('message', function(event, text) { | ||
var container = document.getElementById('messages'); | ||
var message = document.createElement('div'); | ||
message.innerHTML = text; | ||
container.appendChild(message); | ||
}) | ||
</script> | ||
</body> | ||
</html> |