File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 22 "name" : " gtt-taskbar" ,
33 "productName" : " gitlab time tracker taskbar" ,
44 "description" : " A crossplatform menubar/taskbar application for GitLabs time tracking feature." ,
5- "version" : " 0.2.6 " ,
5+ "version" : " 0.2.7 " ,
66 "main" : " src/index.js" ,
77 "scripts" : {
88 "start" : " electron-forge start" ,
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ const os = require('os');
1313
1414const moment = require ( 'moment' ) ;
1515const log = require ( 'electron-log' ) ;
16+ const pjson = require ( './package.json' ) ;
1617
1718log . transports . file . appName = 'gtt-taskbar' ;
1819
@@ -27,7 +28,7 @@ let gtt = new events.EventEmitter(),
2728 debug = false ;
2829
2930gtt . _app = app ;
30- gtt . _version = '0.2.6' ;
31+ gtt . _version = pjson . version ;
3132gtt . _config = new Config ( __dirname ) ;
3233
3334gtt . _api = new Base ( gtt . _config ) ;
You can’t perform that action at this time.
0 commit comments