Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add direct link to changelog in the footer #214

Merged
merged 2 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}
Loading