Skip to content

Commit

Permalink
hotfix2: item graph
Browse files Browse the repository at this point in the history
  • Loading branch information
qLVN committed May 30, 2021
1 parent 64fc61f commit 10a52dc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
const { app, BrowserWindow, ipcMain } = require('electron')
const { autoUpdater } = require('electron-updater');
const log = require('electron-log');
const path = require('path')

let win;

autoUpdater.logger = log;
autoUpdater.logger.transports.file.level = 'info';
log.info('App starting...');

const iconPath = process.platform !== 'darwin'
? 'src/assets/icons/icon.ico'
: 'src/assets/icons/icon.icns';
Expand Down Expand Up @@ -87,6 +82,5 @@ function createWindow() {
});

function sendStatusToWindow(text) {
log.info(text);
win.webContents.send('message', text);
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rltrader",
"version": "0.1.8",
"version": "0.1.9",
"author": "LIVEN",
"license": "Apache-2.0",
"description": "RLTrader app",
Expand Down
1 change: 1 addition & 0 deletions src/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,7 @@ function startConfig(type) {

userDataContent.didFirstConnect = 1;
userDataContent.username = username_field.value;
userDataContent.idIncrement = 0;
userDataContent.inventory = [];
userDataContent.settings = {};

Expand Down

0 comments on commit 10a52dc

Please sign in to comment.