electronbkupdater
v1.1.1
Published
electron application auto update
Downloads
28
Maintainers
Readme
Support platform
Windows Mac
Release Versions
electronbkupdater:1.0.0
Installation
npm install electronbkupdater
Usage On Windows AND MAC
Installing electron-installer-windows "npm i electron-installer-windows"
"setup": "electron-installer-windows --src releases/simple-samples-win32-ia32/ --dest releases/installers/",edit your app main
const bk = require('electronbkupdater');
bk.server = serverPath;
bk.versions = app.getVersion();
bk.app = app;
bk.app_id = 'com.bkmobil.SeeMeet';
app.on('ready', function() {
bk.update();
});
<b>Options</b> <br/>
server = null;
progressBar = '';
title = 'Application Update';
progress_title = 'Wait';
progress_text = 'Preparing data...';
app = null;
dialogBtn = ['Yükle','Sonra'];
dialogType = 'info';
app_id = '';
message = ['Yükleme Tamamlandı. Lütfen Bekleyin.',
'A new version has been downloaded. Restart the application to apply the updates.']