@rednaxela101/cubing 0.63.8 → 0.63.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist/bin/chunks/{chunk-EWR23OA4.js → chunk-F63RAIBR.js} +2 -2
- package/dist/bin/order.js +1 -1
- package/dist/bin/puzzle-geometry-bin.js +1 -1
- package/dist/bin/scramble.js +1 -1
- package/dist/bin/svg.js +1 -1
- package/dist/lib/cubing/chunks/{chunk-B2YKAP2I.js → chunk-F765ZFNM.js} +2 -2
- package/dist/lib/cubing/chunks/{twisty-dynamic-3d-SLKSUJTE.js → twisty-dynamic-3d-MF76FSDA.js} +336 -204
- package/dist/lib/cubing/chunks/twisty-dynamic-3d-MF76FSDA.js.map +7 -0
- package/dist/lib/cubing/twisty/index.js +1 -1
- package/package.json +1 -1
- package/dist/lib/cubing/chunks/twisty-dynamic-3d-SLKSUJTE.js.map +0 -7
- /package/dist/bin/chunks/{chunk-EWR23OA4.js.map → chunk-F63RAIBR.js.map} +0 -0
- /package/dist/lib/cubing/chunks/{chunk-B2YKAP2I.js.map → chunk-F765ZFNM.js.map} +0 -0
package/README.md
CHANGED
|
@@ -47,11 +47,11 @@ Every WCA event is supported (`222`, `333`, `444`, `555`, `666`, `777`, `333bf`,
|
|
|
47
47
|
|
|
48
48
|
## What this fork adds
|
|
49
49
|
|
|
50
|
-
- **Stickerless 3D models.** Every 3D puzzle is drawn as solid pieces of colored plastic
|
|
50
|
+
- **Stickerless 3D models.** Every 3D puzzle is drawn as solid pieces of colored plastic. Upstream draws flat stickers on a black body.
|
|
51
51
|
- New 3×3×3 pieces: beveled cubies with flat facelets and rounded outlines.
|
|
52
|
-
- 2×2×2 and 4×4×4 through 7×7×7 use the same pieces,
|
|
53
|
-
- Square-1 and
|
|
54
|
-
-
|
|
52
|
+
- 2×2×2 and 4×4×4 through 7×7×7 use the same pieces, cut to size.
|
|
53
|
+
- Square-1, Skewb, Megaminx, Pyraminx and FTO are solid pieces too, with a thin groove between them and a hairline bevel. Their pieces are cut from the puzzle's own faces and turning axes.
|
|
54
|
+
- No puzzle this fork ships is drawn with upstream's `PG3D` any more. It stays as the fallback for anything the piece geometry can't be recovered for.
|
|
55
55
|
- **Square-1 in 3D.** New `Square1_3D` visualization strategy, the default for `puzzle="square1"`. Upstream renders Square-1 flat.
|
|
56
56
|
- **Square-1 2D last-layer diagrams.** `visualization="experimental-2D-LL"` on `square1`, with `OLL` and `PLL` stickerings.
|
|
57
57
|
- **Piece separators in the 2D renderer.** Outlines between two halves of a piece hide and reappear as pieces join and split, for Square-1.
|
|
@@ -65,7 +65,7 @@ Every WCA event is supported (`222`, `333`, `444`, `555`, `666`, `777`, `333bf`,
|
|
|
65
65
|
|
|
66
66
|
## Rendering performance (caching)
|
|
67
67
|
|
|
68
|
-
Several per-frame code paths in `cubing/twisty` were doing work that could be skipped. Measured on Chromium as the cost of one `onPositionChange(…)` call with a move in progress (minimum of 7 rounds of 3000 calls), 2026-08-27.
|
|
68
|
+
Several per-frame code paths in `cubing/twisty` were doing work that could be skipped. Measured on Chromium as the cost of one `onPositionChange(…)` call with a move in progress (minimum of 7 rounds of 3000 calls), 2026-08-27, before the stickerless renderers landed. The renderer column is what each side ran at the time.
|
|
69
69
|
|
|
70
70
|
| Puzzle | Renderer | Upstream | This fork | Change |
|
|
71
71
|
| --- | --- | --- | --- | --- |
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
var packageVersion = (
|
|
5
5
|
// biome-ignore lint/suspicious/noTsIgnore: This comment is stil present in the compiled file, where an error is *not* expected.
|
|
6
6
|
/** @ts-ignore Populated by `esbuild` at compile time. */
|
|
7
|
-
"0.63.
|
|
7
|
+
"0.63.9"
|
|
8
8
|
);
|
|
9
9
|
|
|
10
10
|
export {
|
|
11
11
|
packageVersion
|
|
12
12
|
};
|
|
13
|
-
//# sourceMappingURL=chunk-
|
|
13
|
+
//# sourceMappingURL=chunk-F63RAIBR.js.map
|
package/dist/bin/order.js
CHANGED
package/dist/bin/scramble.js
CHANGED
package/dist/bin/svg.js
CHANGED
|
@@ -531,7 +531,7 @@ var StatsPanel = class {
|
|
|
531
531
|
|
|
532
532
|
// src/cubing/twisty/heavy-code-imports/3d.ts
|
|
533
533
|
var bulk3DCode = new LazyPromise(
|
|
534
|
-
() => import("./twisty-dynamic-3d-
|
|
534
|
+
() => import("./twisty-dynamic-3d-MF76FSDA.js")
|
|
535
535
|
);
|
|
536
536
|
|
|
537
537
|
// src/cubing/twisty/views/canvas.ts
|
|
@@ -1192,4 +1192,4 @@ export {
|
|
|
1192
1192
|
Twisty3DVantage,
|
|
1193
1193
|
bulk3DCode
|
|
1194
1194
|
};
|
|
1195
|
-
//# sourceMappingURL=chunk-
|
|
1195
|
+
//# sourceMappingURL=chunk-F765ZFNM.js.map
|