Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.

Commit ab06179

Browse files
committed
Release 0.2.7
1 parent b6bd284 commit ab06179

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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",

src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const os = require('os');
1313

1414
const moment = require('moment');
1515
const log = require('electron-log');
16+
const pjson = require('./package.json');
1617

1718
log.transports.file.appName = 'gtt-taskbar';
1819

@@ -27,7 +28,7 @@ let gtt = new events.EventEmitter(),
2728
debug = false;
2829

2930
gtt._app = app;
30-
gtt._version = '0.2.6';
31+
gtt._version = pjson.version;
3132
gtt._config = new Config(__dirname);
3233

3334
gtt._api = new Base(gtt._config);

0 commit comments

Comments
 (0)