Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aceberg committed Dec 27, 2023
1 parent 760bb59 commit 106a3a3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=0.1.0
VERSION=0.1.1
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.1.1] - 2023-12-23
## [0.1.1] - 2023-12-27
### Added
- Local JS and Themes
- Weight chart
- BodyWeight Chart

## [0.1.0] - 2023-12-23
### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img src="https://raw.githubusercontent.com/aceberg/exercisediary/main/assets/logo.png" width="35" />
</a>Exercise Diary</h1>

Light and easy workout diary
Workout diary with GitHub-style year visualization

- [Quick start](https://github.com/aceberg/exercisediary#quick-start)
- [Config](https://github.com/aceberg/exercisediary#config)
Expand All @@ -22,7 +22,7 @@ Light and easy workout diary
## Quick start

```sh
docker run --name exercisediary \
docker run --name exdiary \
-e "TZ=Asia/Novosibirsk" \
-v ~/.dockerdata/ExerciseDiary:/data/ExerciseDiary \
-p 8851:8851 \
Expand All @@ -40,7 +40,7 @@ Configuration can be done through config file or environment variables
| -------- | ----------- | ------- |
| HOST | Listen address | 0.0.0.0 |
| PORT | Port for web GUI | 8851 |
| THEME | Any theme name from https://bootswatch.com in lowcase | grass |
| THEME | Any theme name from https://bootswatch.com in lowcase or [additional](https://github.com/aceberg/aceberg-bootswatch-fork) (emerald, grass, sand)| grass |
| COLOR | Background color: light or dark | light |
| HEATCOLOR | HeatMap color | #03a70c |
| TZ | Set your timezone for correct time | "" |
Expand Down
5 changes: 3 additions & 2 deletions internal/web/templates/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@
<div class="card border-primary">
<div class="card-header">About</div>
<div class="card-body">
<a href="https://github.com/aceberg/ExerciseDiary">Github</a>
<p>If you consider this app helpful, please donate</p>
<p>● After changing <b>Host</b> or <b>Port</b> the app must be restarted</p>
<p>● Please, check out my other apps on <a href="https://github.com/aceberg">Github</a></p>
<p>● Want your own Self-Hosted app written in Go? Contact and prices <a href="https://github.com/aceberg">here</a></p>
</div>
</div>
</div>
Expand Down
12 changes: 8 additions & 4 deletions internal/web/templates/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,18 @@
<i class="bi bi-list"></i>
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="/config/">Config</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="/exercise/?id=new">Add Exercise</a></li>
<!-- <li><a class="dropdown-item" href="/stats/">Stats</a></li> -->
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" target="_blank" href="https://github.com/aceberg/ExerciseDiary">GitHub</a></li>
<li><a class="dropdown-item" href="/config/">Config</a></li>
<!-- <li><a class="dropdown-item" href="/stats/">Stats</a></li> -->
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="nav-item"><a class="nav-link active" target="_blank" href="https://github.com/aceberg/ExerciseDiary">
<h5><i class="bi bi-github"></i></h5>
</a></li>
</ul>
</div>
</nav>
{{ end }}

0 comments on commit 106a3a3

Please sign in to comment.