File tree 4 files changed +5
-6
lines changed
4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
- 0.10.3 / ####-##-##
2
- ===================
1
+ 1.0.0 / 2021-08-09
2
+ ==================
3
3
4
4
* Electron.remote deprecated in favor of @electron/remote
5
5
* Fix bug with scheduling
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const utils = require('./src/common/utils');
10
10
const {
11
11
app
12
12
} = require ( 'electron' ) ;
13
- require ( '@electron/remote/main' ) . initialize ( )
13
+ require ( '@electron/remote/main' ) . initialize ( ) ;
14
14
// Global reference to window
15
15
let win = null ;
16
16
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaucho" ,
3
- "version" : " 0.10.3 " ,
3
+ "version" : " 1.0.0 " ,
4
4
"description" : " Minimalistic task launcher" ,
5
5
"main" : " main.js" ,
6
6
"dependencies" : {
Original file line number Diff line number Diff line change 1
1
"use strict" ;
2
2
3
3
const os = require ( 'os' ) ;
4
- const fs = require ( 'fs/promises' )
5
4
const yerbamate = require ( 'yerbamate' ) ;
6
5
7
6
const TaskStatus = require ( './task_status' ) ;
@@ -51,7 +50,7 @@ class Task {
51
50
maxOutputSize : 1 ,
52
51
env : this . _getEnvVariablesForExecution ( globalVariables )
53
52
} ,
54
- ( statusCode , out , err ) => {
53
+ ( statusCode , out , err ) => {
55
54
onOutput ( out ) ;
56
55
onOutput ( err ) ;
57
56
You can’t perform that action at this time.
0 commit comments