scratch-blocks 2.0.0-spork.4 → 2.0.0-spork.5
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/CHANGELOG.md +17 -0
- package/dist/main.js +1 -1
- package/dist/main.js.LICENSE.txt +6 -0
- package/package.json +4 -4
- package/src/blocks/procedures.ts +1 -1
- package/src/checkable_continuous_flyout.ts +4 -0
- package/src/checkbox_bubble.ts +21 -0
- package/src/colours.ts +1 -0
- package/src/context_menu_items.ts +24 -0
- package/src/css.ts +17 -14
- package/src/fields/field_matrix.ts +38 -27
- package/src/fields/field_note.ts +1 -1
- package/src/fields/scratch_field_angle.ts +9 -1
- package/src/fields/scratch_field_variable.ts +9 -8
- package/src/flyout_checkbox_icon.ts +15 -21
- package/src/index.ts +3 -0
- package/src/scratch_block_paster.ts +10 -0
- package/src/{scratch_comment_bubble.js → scratch_comment_bubble.ts} +52 -19
- package/src/scratch_comment_icon.ts +20 -5
- package/src/scratch_continuous_toolbox.ts +16 -0
- package/src/scratch_insertion_marker_previewer.ts +45 -0
- package/src/status_indicator_label_flyout_inflater.ts +4 -4
- package/src/xml.ts +57 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.0.0-spork.5](https://github.com/scratchfoundation/scratch-blocks/compare/v2.0.0-spork.4...v2.0.0-spork.5) (2025-08-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** use blockly 12.3 beta ([76981e1](https://github.com/scratchfoundation/scratch-blocks/commit/76981e1bc22ba3de6e234885bfcee97ca202b7f5))
|
|
12
|
+
* fix bug that could cause the wrong toolbox category to appear selected ([#232](https://github.com/scratchfoundation/scratch-blocks/issues/232)) ([ec918e2](https://github.com/scratchfoundation/scratch-blocks/commit/ec918e2b7c1f8ac05cfe1c93bf37b458bb4767b1))
|
|
13
|
+
* fix bug that could clear the values of procedure block caller arguments ([#247](https://github.com/scratchfoundation/scratch-blocks/issues/247)) ([611e440](https://github.com/scratchfoundation/scratch-blocks/commit/611e44066daa3e2a1201856503b868ced6a2bb1f))
|
|
14
|
+
* fix bug that prevented moving block comments ([#248](https://github.com/scratchfoundation/scratch-blocks/issues/248)) ([dc17159](https://github.com/scratchfoundation/scratch-blocks/commit/dc171596aed0b248086d9110ec08370ed026bf4a))
|
|
15
|
+
* fix deserialization of local/cloud variables ([#245](https://github.com/scratchfoundation/scratch-blocks/issues/245)) ([09bb237](https://github.com/scratchfoundation/scratch-blocks/commit/09bb2379318d107ca473bf7f3cdb797b69c5c42c))
|
|
16
|
+
* fix ephemeral focus handling for `FieldAngle` and `FieldNote` ([#244](https://github.com/scratchfoundation/scratch-blocks/issues/244)) ([8b758db](https://github.com/scratchfoundation/scratch-blocks/commit/8b758db2c4cde80dd977bec05207f855a9d2f742))
|
|
17
|
+
* fix positioning of block comments in RTL mode ([#249](https://github.com/scratchfoundation/scratch-blocks/issues/249)) ([9f1da96](https://github.com/scratchfoundation/scratch-blocks/commit/9f1da96cb250374a367ae4005512b7717a292e9a))
|
|
18
|
+
* improve styling, especially in high contrast mode ([#246](https://github.com/scratchfoundation/scratch-blocks/issues/246)) ([abd9a40](https://github.com/scratchfoundation/scratch-blocks/commit/abd9a40709f615e1a737bddb3906cdf4744b4389))
|
|
19
|
+
* make Duplicate context menu item duplicate subsequent blocks ([#250](https://github.com/scratchfoundation/scratch-blocks/issues/250)) ([3a43e6b](https://github.com/scratchfoundation/scratch-blocks/commit/3a43e6b47b8f7d3cfe99a02eb0e3a6b5d6f59503))
|
|
20
|
+
* make insertion markers reflect the actual size of the block ([#251](https://github.com/scratchfoundation/scratch-blocks/issues/251)) ([c824cc1](https://github.com/scratchfoundation/scratch-blocks/commit/c824cc12617337680d40214c89bf622089da46ac))
|
|
21
|
+
* prevent toolbox categories from becoming unselected ([#233](https://github.com/scratchfoundation/scratch-blocks/issues/233)) ([af66069](https://github.com/scratchfoundation/scratch-blocks/commit/af66069493bea8b17658cf1221d42c71fb2531b3))
|
|
22
|
+
|
|
6
23
|
# [2.0.0-spork.4](https://github.com/scratchfoundation/scratch-blocks/compare/v2.0.0-spork.3...v2.0.0-spork.4) (2025-02-11)
|
|
7
24
|
|
|
8
25
|
|