Skip to content

Commit

Permalink
v0.47.1
Browse files Browse the repository at this point in the history
Release notes:

- [twisty] Ensure the initial hint facelets animation always finishes.
  • Loading branch information
lgarron committed Feb 4, 2024
1 parent 3452df9 commit 38d73c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cubing",
"version": "0.47.0",
"version": "0.47.1",
"description": "A collection of JavaScript cubing libraries.",
"author": "The js.cubing.net team",
"type": "module",
Expand Down Expand Up @@ -97,7 +97,10 @@
"engines": {
"node": ">=19"
},
"files": ["./dist/bin/", "./dist/lib/"],
"files": [
"./dist/bin/",
"./dist/lib/"
],
"scripts": {
"default": "make default",
"build": "make build",
Expand Down
2 changes: 1 addition & 1 deletion src/cubing/twisty/views/3D/puzzles/Cube3D.ts
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,8 @@ export class Cube3D extends Object3D implements Twisty3DPuzzle {
lastTranslation = newTranslation;
if (elapsed < translationDuration) {
requestAnimationFrame(animateRaiseHintSticker);
this.scheduleRenderCallback?.();
}
this.scheduleRenderCallback?.();
};
animateRaiseHintSticker();
}, 500);
Expand Down

0 comments on commit 38d73c0

Please sign in to comment.