Merge branch 'master' into refactor-top-bar

This commit is contained in:
Cadence Ember 2020-03-27 16:22:29 +13:00
commit 842cf22300
No known key found for this signature in database
GPG Key ID: 128B99B1B74A6412
3 changed files with 6 additions and 4 deletions

View File

@ -51,8 +51,6 @@ function createWindow () {
backgroundColor: '#fff',
width: 960,
height: 540,
minWidth: 960,
minHeight: 540,
// useContentSize: true,
webPreferences: {
nodeIntegration: true,

View File

@ -1,5 +1,7 @@
import electron from 'electron'
import Datastore from 'nedb'
const localDataStorage = '/db'
// TODO: Add logic for database when electron is not in use
const localDataStorage = electron.remote.app.getPath('userData')
const settingsDb = new Datastore({
filename: localDataStorage + '/settings.db',

View File

@ -1,5 +1,7 @@
import electron from 'electron'
import Datastore from 'nedb'
const localDataStorage = '/db'
// TODO: Add logic for database when electron is not in use
const localDataStorage = electron.remote.app.getPath('userData')
const subDb = new Datastore({
filename: localDataStorage + '/subscriptions.db',