Skip to content

Commit

Permalink
version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jakmeier committed Sep 9, 2024
1 parent 199e086 commit 6edb3bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
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

- 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.
- A course has several lessons, each with an explanation video and a tracked exercise.
- Hitting 60% on the traced exercise will grant the "absolved" mark on the course lesson.
- The last lesson can be a step or choreography that's learned incrementally throughout the course.
- Changed the style of the home screen quite a bit.
- Many bug fixes, probably many new bugs.
- 30 Aug 2024: Overhaul README and change license
- Describe the latest project goals, such as potential monetization ideas
and take a clear stance on free and open-source software.
Expand Down
4 changes: 2 additions & 2 deletions 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.004001);
export const displayedVersion = writable(0.005);
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 All @@ -28,14 +28,14 @@ export const features = derived([version, dev], ([$v, $dev]) => {
/* Fully enabled features for now but might be disabled again*/
enableDanceCollection: $v >= 0.003,
enableDanceCreator: $v >= 0.003,
enableCourses: $v >= 0.005,

/* Partially enabled features */
enableStepRecording: (stepName) => STABLE_TRACKING_STEPS.includes(stepName),

/* Features that are not ready to be released */
enableAvatarRotation: $v >= 0.999,
enableFreestyleRecording: $v >= 0.999,
enableCourses: $v >= 0.005,

/* Features that stay in dev */
enableDevView: $dev,
Expand Down

0 comments on commit 6edb3bf

Please sign in to comment.