Skip to content

Commit

Permalink
Merge pull request #214 from jovandeginste/link-changelog
Browse files Browse the repository at this point in the history
Add direct link to changelog in the footer
  • Loading branch information
jovandeginste authored Aug 2, 2024
2 parents d96cd05 + 2e00e7b commit 0a86bb9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## What's Changed

- Add direct link to changelog in the footer

## What's Changed in v1.17.0

- Merge pull request #213 from jovandeginste/ignore-changelog
- Update all screenshots
- Exclude some commits from the changelog
- Automate changelog commit (and exclude changelog updates from changelog), by @jovandeginste, in [#212](https://github.com/jovandeginste/workout-tracker/pull/212)
- Update changelog, by @jovandeginste, in [#211](https://github.com/jovandeginste/workout-tracker/pull/211)
Expand All @@ -23,6 +29,8 @@
- Update all meta-information (screenshots, changelog, swagger), by @jovandeginste
- Add a changelog system and the changelog, by @jovandeginste, in [#204](https://github.com/jovandeginste/workout-tracker/pull/204)

**Full Changelog**: https://github.com/jovandeginste/workout-tracker/compare/v1.16.5...v1.17.0

## What's Changed in v1.16.5

- Skip updates for non-GPX based workouts, by @jovandeginste, in [#203](https://github.com/jovandeginste/workout-tracker/pull/203)
Expand Down
8 changes: 8 additions & 0 deletions assets/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -2558,6 +2558,14 @@ table {
content: "\f328";
}

.icon-clipboard-check::before {
content: "\f46c";
}

.icon-clipboard-check::after {
content: "\f46c";
}

.icon-clock::before {
content: "\f017";
}
Expand Down
10 changes: 9 additions & 1 deletion views/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<a
target="_blank"
title="Build time: {{ .BuildTime }}"
href="https://github.com/jovandeginste/workout-tracker/tree/{{ .RefName }}"
href="https://github.com/jovandeginste/workout-tracker/tree/{{ .Sha }}"
>
{{ if eq .RefType "branch" }}{{ .RefType }} {{ end }}{{ .RefName }} ({{
printf "%.8s" .Sha }})</a
Expand All @@ -20,5 +20,13 @@
>GitHub</a
>
</div>
<div>
<a
class="icon-solid icon-baseline icon-space-sm icon-outside icon-clipboard-check"
target="_blank"
href="https://github.com/jovandeginste/workout-tracker/tree/{{ Version.Sha }}/CHANGELOG.md"
>Changelog</a
>
</div>
</div>
{{ end }}

0 comments on commit 0a86bb9

Please sign in to comment.