Skip to content

Commit

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

## Progress Status

- 5 Nov 2024: Release version v0.6.0
- Step & pose editor (experimental feature): It is now possible to create
completely custom poses from a video or camera input. Then decide which
body parts are how important to get right for live-tracking, combine the
poses to steps, and lastly combine the steps to a dance / choreography.
Custom steps and dances can be used for everything the pre-bundled steps
are used for, including leveling up steps with live-tracking.
- Importing and exporting steps and poses to share them with friends.
- More details on a choreography: Show all poses with corresponding count
and visually link poses with the corresponding step.
- 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.
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 @@ -11,7 +11,7 @@ export const dev = readable(privDev, (set) => {
window.toggleDev = () => { privDev = !privDev; set(privDev); };
}
});
export const displayedVersion = writable(0.005002);
export const displayedVersion = writable(0.006000);
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 75e285c

Please sign in to comment.