Skip to content

Commit 234dca8

Browse files
committed
Release 0.1.9 (#4)
1 parent 38a5d77 commit 234dca8

File tree

8 files changed

+114
-91
lines changed

8 files changed

+114
-91
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These are supported funding model platforms
22

3-
custom: ['https://boosty.to/aceberg/donate', 'https://aceberg.github.io/MyDocs/sponsor']
3+
custom: ['https://boosty.to/aceberg/donate', 'https://github.com/aceberg#donate']

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
# Change Log
33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.9] - 2024-10-26
6+
### Changed
7+
- All weights are decimal now [#4](https://github.com/aceberg/ExerciseDiary/issues/4)
8+
9+
### Added
10+
- New themes: grayscale, ocean, wood
11+
512
## [0.1.8] - 2024-03-10
613
### Added
714
- Login/Password

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Configuration can be done through config file or environment variables
4848
| AUTH_PASSWORD | Encrypted password (bcrypt). [How to encrypt password with bcrypt?](docs/BCRYPT.md) | "" |
4949
| HOST | Listen address | 0.0.0.0 |
5050
| PORT | Port for web GUI | 8851 |
51-
| THEME | Any theme name from https://bootswatch.com in lowcase or [additional](https://github.com/aceberg/aceberg-bootswatch-fork) (emerald, grass, sand)| grass |
51+
| THEME | Any theme name from https://bootswatch.com in lowcase or [additional](https://github.com/aceberg/aceberg-bootswatch-fork) (emerald, grass, grayscale, ocean, sand, wood)| grass |
5252
| COLOR | Background color: light or dark | light |
5353
| HEATCOLOR | HeatMap color | #03a70c |
5454
| PAGESTEP | Items on one page | 10 |

go.mod

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,42 @@
11
module github.com/aceberg/ExerciseDiary
22

3-
go 1.21.7
3+
go 1.23.2
44

55
require (
6-
github.com/gin-gonic/gin v1.9.1
6+
github.com/gin-gonic/gin v1.10.0
77
github.com/google/uuid v1.6.0
8+
github.com/jmoiron/sqlx v1.4.0
89
github.com/shopspring/decimal v1.4.0
9-
github.com/jmoiron/sqlx v1.3.5
10-
github.com/spf13/viper v1.18.2
11-
golang.org/x/crypto v0.21.0
12-
modernc.org/sqlite v1.29.3
10+
github.com/spf13/viper v1.19.0
11+
golang.org/x/crypto v0.28.0
12+
modernc.org/sqlite v1.33.1
1313
)
1414

1515
require (
16-
github.com/bytedance/sonic v1.9.1 // indirect
17-
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
16+
github.com/bytedance/sonic v1.11.6 // indirect
17+
github.com/bytedance/sonic/loader v0.1.1 // indirect
18+
github.com/cloudwego/base64x v0.1.4 // indirect
19+
github.com/cloudwego/iasm v0.2.0 // indirect
1820
github.com/dustin/go-humanize v1.0.1 // indirect
1921
github.com/fsnotify/fsnotify v1.7.0 // indirect
20-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
22+
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
2123
github.com/gin-contrib/sse v0.1.0 // indirect
2224
github.com/go-playground/locales v0.14.1 // indirect
2325
github.com/go-playground/universal-translator v0.18.1 // indirect
24-
github.com/go-playground/validator/v10 v10.14.0 // indirect
26+
github.com/go-playground/validator/v10 v10.20.0 // indirect
2527
github.com/goccy/go-json v0.10.2 // indirect
2628
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
2729
github.com/hashicorp/hcl v1.0.0 // indirect
2830
github.com/json-iterator/go v1.1.12 // indirect
29-
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
30-
github.com/leodido/go-urn v1.2.4 // indirect
31+
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
32+
github.com/leodido/go-urn v1.4.0 // indirect
3133
github.com/magiconair/properties v1.8.7 // indirect
32-
github.com/mattn/go-isatty v0.0.19 // indirect
34+
github.com/mattn/go-isatty v0.0.20 // indirect
3335
github.com/mitchellh/mapstructure v1.5.0 // indirect
3436
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3537
github.com/modern-go/reflect2 v1.0.2 // indirect
3638
github.com/ncruces/go-strftime v0.1.9 // indirect
37-
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
39+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
3840
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
3941
github.com/sagikazarmark/locafero v0.4.0 // indirect
4042
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
@@ -44,21 +46,21 @@ require (
4446
github.com/spf13/pflag v1.0.5 // indirect
4547
github.com/subosito/gotenv v1.6.0 // indirect
4648
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
47-
github.com/ugorji/go/codec v1.2.11 // indirect
49+
github.com/ugorji/go/codec v1.2.12 // indirect
4850
go.uber.org/atomic v1.9.0 // indirect
4951
go.uber.org/multierr v1.9.0 // indirect
50-
golang.org/x/arch v0.3.0 // indirect
52+
golang.org/x/arch v0.8.0 // indirect
5153
golang.org/x/exp v0.0.0-20231108232855-2478ac86f678 // indirect
52-
golang.org/x/net v0.21.0 // indirect
53-
golang.org/x/sys v0.18.0 // indirect
54-
golang.org/x/text v0.14.0 // indirect
55-
google.golang.org/protobuf v1.31.0 // indirect
54+
golang.org/x/net v0.25.0 // indirect
55+
golang.org/x/sys v0.26.0 // indirect
56+
golang.org/x/text v0.19.0 // indirect
57+
google.golang.org/protobuf v1.34.1 // indirect
5658
gopkg.in/ini.v1 v1.67.0 // indirect
5759
gopkg.in/yaml.v3 v3.0.1 // indirect
5860
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
59-
modernc.org/libc v1.41.0 // indirect
61+
modernc.org/libc v1.55.3 // indirect
6062
modernc.org/mathutil v1.6.0 // indirect
61-
modernc.org/memory v1.7.2 // indirect
63+
modernc.org/memory v1.8.0 // indirect
6264
modernc.org/strutil v1.2.0 // indirect
6365
modernc.org/token v1.1.0 // indirect
6466
)

0 commit comments

Comments
 (0)