Skip to content

Commit cc8e18f

Browse files
committed
minor code fixes & release 1.0
1 parent 561225f commit cc8e18f

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
0.10.3 / ####-##-##
2-
===================
1+
1.0.0 / 2021-08-09
2+
==================
33

44
* Electron.remote deprecated in favor of @electron/remote
55
* Fix bug with scheduling

main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const utils = require('./src/common/utils');
1010
const {
1111
app
1212
} = require('electron');
13-
require('@electron/remote/main').initialize()
13+
require('@electron/remote/main').initialize();
1414
// Global reference to window
1515
let win = null;
1616

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gaucho",
3-
"version": "0.10.3",
3+
"version": "1.0.0",
44
"description": "Minimalistic task launcher",
55
"main": "main.js",
66
"dependencies": {

src/app/common/task.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"use strict";
22

33
const os = require('os');
4-
const fs = require('fs/promises')
54
const yerbamate = require('yerbamate');
65

76
const TaskStatus = require('./task_status');
@@ -51,7 +50,7 @@ class Task {
5150
maxOutputSize: 1,
5251
env: this._getEnvVariablesForExecution(globalVariables)
5352
},
54-
(statusCode,out, err) => {
53+
(statusCode, out, err) => {
5554
onOutput(out);
5655
onOutput(err);
5756

0 commit comments

Comments
 (0)