File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.7.3] - 2023-04-13
9
+
10
+ ### Bug fixes
11
+
12
+ - Fix off by one error when grouping activity by hour (@ablearthy #74 )
13
+ - Add psql client on the ARM image (#71 )
14
+
8
15
## [ 1.7.2] - 2022-09-17
9
16
10
17
### Bug fixes
Original file line number Diff line number Diff line change @@ -56,15 +56,15 @@ You can use the following docker-compose setup for testing locally or an actual
56
56
deployment. Change ` HAKA_BADGE_URL ` to match the actual external endpoint of your
57
57
instance.
58
58
59
- Deploying on ARM is also possible using the ` mujx/hakatime:latest-arm ` or ` mujx/hakatime:v1.7.2 -arm ` image or the dedicated
59
+ Deploying on ARM is also possible using the ` mujx/hakatime:latest-arm ` or ` mujx/hakatime:v1.7.3 -arm ` image or the dedicated
60
60
Dockerfile ([ ` Dockerfile.arm ` ] ( /Dockerfile.arm ) ) to build the image.
61
61
62
62
``` yaml
63
63
version : " 3"
64
64
services :
65
65
server :
66
66
container_name : hakatime
67
- image : mujx/hakatime:v1.7.2
67
+ image : mujx/hakatime:v1.7.3
68
68
environment :
69
69
# DB settings.
70
70
HAKA_DB_HOST : haka_db
@@ -148,7 +148,7 @@ npm run prod
148
148
## CLI options
149
149
150
150
```
151
- hakatime :: v1.7.2
151
+ hakatime :: v1.7.3
152
152
153
153
Usage: hakatime COMMAND
154
154
Wakatime server implementation
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dashboard" ,
3
- "version" : " 1.7.2 " ,
3
+ "version" : " 1.7.3 " ,
4
4
"description" : " Dashboard for Hakatime" ,
5
5
"author" :
" Konstantinos Sideris <[email protected] >" ,
6
6
"license" : " UNLICENSE" ,
Original file line number Diff line number Diff line change 11
11
} :
12
12
mkDerivation {
13
13
pname = "hakatime" ;
14
- version = "1.7.2 " ;
14
+ version = "1.7.3 " ;
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.7.2
3
+ version : 1.7.3
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