Skip to content

Commit 50c8417

Browse files
committed
v0.47.1
Release notes: - [twisty] Ensure the initial hint facelets animation always finishes.
1 parent 047273f commit 50c8417

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cubing",
3-
"version": "0.47.0",
3+
"version": "0.47.1",
44
"description": "A collection of JavaScript cubing libraries.",
55
"author": "The js.cubing.net team",
66
"type": "module",
@@ -97,7 +97,10 @@
9797
"engines": {
9898
"node": ">=19"
9999
},
100-
"files": ["./dist/bin/", "./dist/lib/"],
100+
"files": [
101+
"./dist/bin/",
102+
"./dist/lib/"
103+
],
101104
"scripts": {
102105
"default": "make default",
103106
"build": "make build",

src/cubing/twisty/views/3D/puzzles/Cube3D.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -681,8 +681,8 @@ export class Cube3D extends Object3D implements Twisty3DPuzzle {
681681
lastTranslation = newTranslation;
682682
if (elapsed < translationDuration) {
683683
requestAnimationFrame(animateRaiseHintSticker);
684-
this.scheduleRenderCallback?.();
685684
}
685+
this.scheduleRenderCallback?.();
686686
};
687687
animateRaiseHintSticker();
688688
}, 500);

0 commit comments

Comments
 (0)