Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
medistar1 committed Jun 13, 2021
1 parent 95ab26f commit 98f6fff
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 63 deletions.
Binary file added assets/images/Opus1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/linux/gtsf
Binary file not shown.
129 changes: 67 additions & 62 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,86 +1,91 @@
// Modules to control application life and create native browser window
const {app, Menu, ipcMain, BrowserWindow} = require('electron');
const {
app,
Menu,
ipcMain,
BrowserWindow
} = require('electron');
const singleInstance = require('single-instance');
const path = require('path');
const fs = require('fs');

var locker = new singleInstance('LibertasTsfWallet');

locker.lock().then(function() {
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
mainWindow = null;
locker.lock().then(function () {
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
mainWindow = null;

function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1200,
height: 800,
minWidth: 1000,
minHeight: 650,
backgroundColor: "#000000",
icon: 'assets/images/brand-logo-icon.png'
});
function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1200,
height: 800,
minWidth: 1000,
minHeight: 650,
backgroundColor: "#000000",
icon: path.join(__dirname, 'assets/images/Opus1024.png')
});

// and load the index.html of the app.
mainWindow.loadFile('index.html');
TSFGtsf.startGtsf();
// and load the index.html of the app.
mainWindow.loadFile('index.html');
TSFGtsf.startGtsf();

// Open the DevTools.
// mainWindow.webContents.openDevTools()
// Open the DevTools.
// mainWindow.webContents.openDevTools()

// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
});
// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
});

require('./modules/menu.js');
}
require('./modules/menu.js');
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)

// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
TSFGtsf.stopGtsf();
app.quit();
}
})
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
TSFGtsf.stopGtsf();
app.quit();
}
})

app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
}
})
app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
}
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
// listen for request to get template
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
// listen for request to get template

// get the template content from file
ipcMain.on('getTemplateContent', (event, arg) => {
event.returnValue = fs.readFileSync(path.join(app.getAppPath(), "assets/templates/") + arg, 'utf8');
});
// get the template content from file
ipcMain.on('getTemplateContent', (event, arg) => {
event.returnValue = fs.readFileSync(path.join(app.getAppPath(), "assets/templates/") + arg, 'utf8');
});

// quit the app on coomand
ipcMain.on('appQuit', (event, arg) => {
app.quit();
});
})
.catch(function(err) {
app.quit();
})
});
})
.catch(function (err) {
app.quit();
})

require('./modules/gtsf.js');
require('./modules/accounts.js');
require('./modules/database.js');
require('./modules/database.js');
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"scripts": {
"start": "electron .",
"pack": "build --dir",
"linux": "build --linux",
"dist": "build",
"installer": "electron-installer-windows --src dist/win-unpacked/ --dest dist/installers/ --config config.json"
},
Expand All @@ -30,7 +31,7 @@
"asar": true,
"linux": {
"target": "tar.gz",
"icon": "build/icon.icns",
"icon": "assets/images/Opus1024.png",
"artifactName": "Linux-${productName}-${version}.${ext}",
"extraResources": [
"bin/linux/*"
Expand Down

0 comments on commit 98f6fff

Please sign in to comment.