Skip to content

Commit

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

## Progress Status

- 25 Sep 2024: Release version v0.5.2
- The course lesson review page now shows which body parts are wrong for missed poses.
- Add several prompt and in-between screen to make it easier to follow what is happening in the app.
- Use a smaller model for the detection of the dance in the video.
This should make tracking smoother, especially on less powerful devices, such as old phones.
On the flip side, it will make detection less accurate in some circumstances.
- Enabling experimental features now also shows systems statistics that can be useful to debug performance issues.
- Various UI styling fixes and changes.
- 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.
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.005001);
export const displayedVersion = writable(0.005002);
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 fd2e6cf

Please sign in to comment.