Skip to content

Commit

Permalink
version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jakmeier committed Sep 18, 2024
1 parent 751c552 commit c77f8a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ core business logic (dance detection).

## Progress Status

- 18 Sep 2024: Release version v0.5.1
- Fix language selection based on locale configured on the client device.
- Fix: Preserve icons in automated translation.
- Server infrastructure changes. (Scoreboard is now hosted on stats.bouncy-feet.ch)
- 9 Sep 2024: Release version v0.5.0
- Introduce courses, with a running man course as a first example.
- Note: This is a poorly made example course for demonstration purposes. Actual courses will have better quality videos and better tracking.
Expand Down
2 changes: 1 addition & 1 deletion bouncy_frontend/src/lib/stores/FeatureSelection.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const dev = readable(privDev, (set) => {
window.toggleDev = () => { privDev = !privDev; set(privDev); };
}
});
export const displayedVersion = writable(0.005);
export const displayedVersion = writable(0.005001);
export const version = derived([dev, displayedVersion], ([$dev, $version]) => $dev ? 0.999 : $version);
export const versionString = derived([dev, displayedVersion], ([$dev, $version]) => ($dev ? "DEV " : "") + versionNumberToString($version));

Expand Down

0 comments on commit c77f8a5

Please sign in to comment.