+ Add a two new libraries

+ QR-Code is now readable and decryptable
This commit is contained in:
2019-10-25 16:02:37 +02:00
parent 36b3fd6d3c
commit 48c40a5d93
8 changed files with 169 additions and 31 deletions

6
dist/main.js vendored
View File

@@ -7,8 +7,7 @@ electron_1.app.on('ready', function () {
height: 600,
width: 1000,
frame: false,
resizable: false,
alwaysOnTop: true,
resizable: true,
title: "OffPass",
webPreferences: {
nodeIntegration: true,
@@ -17,7 +16,8 @@ electron_1.app.on('ready', function () {
});
//win.loadURL("https://google.de")
win.loadFile('../src/index.html');
win.setTitle("OffPass");
});
electron_1.app.on('window-all-closed', function () {
win = null;
process.exit(0);
});