File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.7.0] - 2021-10-25
11
+
12
+ ### Features
13
+
14
+ - Add endpoint to show the time spent on the current day on the VS Code statusbar. (#50 )
15
+
10
16
## [ 1.6.3] - 2021-10-16
11
17
12
18
This release should fix the issues encountered using the new wakatime-cli.
Original file line number Diff line number Diff line change @@ -54,15 +54,15 @@ You can use the following docker-compose setup for testing locally or an actual
54
54
deployment. Change ` HAKA_BADGE_URL ` to match the actual external endpoint of your
55
55
instance.
56
56
57
- Deploying on ARM is also possible using the ` mujx/hakatime:latest-arm ` or ` mujx/hakatime:v1.6.3 -arm ` image or the dedicated
57
+ Deploying on ARM is also possible using the ` mujx/hakatime:latest-arm ` or ` mujx/hakatime:v1.7.0 -arm ` image or the dedicated
58
58
Dockerfile ([ ` Dockerfile.arm ` ] ( /Dockerfile.arm ) ) to build the image.
59
59
60
60
``` yaml
61
61
version : " 3"
62
62
services :
63
63
server :
64
64
container_name : hakatime
65
- image : mujx/hakatime:v1.6.3
65
+ image : mujx/hakatime:v1.7.0
66
66
environment :
67
67
# DB settings.
68
68
HAKA_DB_HOST : haka_db
@@ -146,7 +146,7 @@ npm run prod
146
146
## CLI options
147
147
148
148
```
149
- hakatime :: v1.6.3
149
+ hakatime :: v1.7.0
150
150
151
151
Usage: hakatime COMMAND
152
152
Wakatime server implementation
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dashboard" ,
3
- "version" : " 1.6.3 " ,
3
+ "version" : " 1.7.0 " ,
4
4
"description" : " Dashboard for Hakatime" ,
5
5
"main" : " index.js" ,
6
6
"author" :
" Konstantinos Sideris <[email protected] >" ,
Original file line number Diff line number Diff line change 11
11
} :
12
12
mkDerivation {
13
13
pname = "hakatime" ;
14
- version = "1.6.3 " ;
14
+ version = "1.7.0 " ;
15
15
src = ./. ;
16
16
isLibrary = true ;
17
17
isExecutable = true ;
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
name : hakatime
3
- version : 1.6.3
3
+ version : 1.7.0
4
4
synopsis : Wakatime API server implementation / Dashboard UI
5
5
description : Wakatime compatible server with an analytics dashboard.
6
6
license : Unlicense
You can’t perform that action at this time.
0 commit comments