scratch-blocks 2.0.0-spork.5 → 2.0.0-spork.7
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/.nvmrc +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.LICENSE.txt +6 -0
- package/msg/js/en.js +1 -0
- package/msg/json/en.json +2 -1
- package/msg/messages.js +1 -0
- package/msg/scratch_msgs.js +117 -37
- package/package.json +10 -10
- package/src/blocks/sensing.ts +12 -0
- package/src/constants.ts +9 -0
- package/src/index.ts +21 -2
- package/src/renderer/bowler_hat.ts +3 -2
- package/src/renderer/cat/cat_face.ts +226 -0
- package/src/renderer/cat/constants.ts +136 -0
- package/src/renderer/cat/drawer.ts +63 -0
- package/src/renderer/cat/path_object.ts +16 -0
- package/src/renderer/cat/render_info.ts +15 -0
- package/src/renderer/cat/renderer.ts +34 -0
- package/src/renderer/constants.ts +16 -2
- package/src/renderer/drawer.ts +17 -10
- package/src/renderer/path_object.ts +1 -1
- package/src/renderer/render_info.ts +15 -7
- package/src/renderer/renderer.ts +16 -6
- package/CHANGELOG.md +0 -1157
package/CHANGELOG.md
DELETED
|
@@ -1,1157 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See
|
|
4
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
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
|
-
|
|
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)
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
### Bug Fixes
|
|
27
|
-
|
|
28
|
-
* new beta release for better Blockly v12 beta compatibility ([127ac8b](https://github.com/scratchfoundation/scratch-blocks/commit/127ac8b7b14e3ee86e4c6d038cb1759495f93001))
|
|
29
|
-
|
|
30
|
-
# [2.0.0-spork.3](https://github.com/scratchfoundation/scratch-blocks/compare/v2.0.0-spork.2...v2.0.0-spork.3) (2024-12-10)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
### Bug Fixes
|
|
34
|
-
|
|
35
|
-
* rename mouseDownWrapper fields for Blockly v12 compatibility ([adaf531](https://github.com/scratchfoundation/scratch-blocks/commit/adaf531cadf51f797cf6c33050df2380bb3cf372))
|
|
36
|
-
|
|
37
|
-
# [2.0.0-spork.2](https://github.com/scratchfoundation/scratch-blocks/compare/v2.0.0-spork.1...v2.0.0-spork.2) (2024-12-10)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### Bug Fixes
|
|
41
|
-
|
|
42
|
-
* **deps:** use Blockly 12 beta instead of RC ([92a8a01](https://github.com/scratchfoundation/scratch-blocks/commit/92a8a010c496569ba04ca077744582e0ab71cd93))
|
|
43
|
-
|
|
44
|
-
# [2.0.0-spork.1](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.86...v2.0.0-spork.1) (2024-10-21)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Bug Fixes
|
|
48
|
-
|
|
49
|
-
* Add support for flyout labels with status indicators ([#212](https://github.com/scratchfoundation/scratch-blocks/issues/212)) ([665d196](https://github.com/scratchfoundation/scratch-blocks/commit/665d1963759caab39c1a0078a81e5e3b63734f05))
|
|
50
|
-
* add support for Scratch-style block comments ([#83](https://github.com/scratchfoundation/scratch-blocks/issues/83)) ([8902091](https://github.com/scratchfoundation/scratch-blocks/commit/8902091c2da8ab68aeac6e2a3954741197a50b37))
|
|
51
|
-
* add support for Scratch-style procedures ([#39](https://github.com/scratchfoundation/scratch-blocks/issues/39)) ([13647eb](https://github.com/scratchfoundation/scratch-blocks/commit/13647eb36439926e82cbe847a643f592702690ab))
|
|
52
|
-
* add zoom controls config ([#126](https://github.com/scratchfoundation/scratch-blocks/issues/126)) ([a09ae24](https://github.com/scratchfoundation/scratch-blocks/commit/a09ae248a1c3aa422942b1f9d21487c79c0c4b86))
|
|
53
|
-
* allow focusing fields in the flyout on mobile ([#184](https://github.com/scratchfoundation/scratch-blocks/issues/184)) ([6c9d3a6](https://github.com/scratchfoundation/scratch-blocks/commit/6c9d3a6026f67fd4a173c718d7a2ba66b69922f6))
|
|
54
|
-
* allow specifying the function to be used for prompting about variable creation/edits ([#106](https://github.com/scratchfoundation/scratch-blocks/issues/106)) ([4cfe66f](https://github.com/scratchfoundation/scratch-blocks/commit/4cfe66fa0419e6140ff6f7cad1c1bfc884917a72))
|
|
55
|
-
* clean up data block definitions ([#90](https://github.com/scratchfoundation/scratch-blocks/issues/90)) ([9ea96e2](https://github.com/scratchfoundation/scratch-blocks/commit/9ea96e27f43688bcf81bdc006adac129a1b286c8))
|
|
56
|
-
* correctly align extension block icons ([#182](https://github.com/scratchfoundation/scratch-blocks/issues/182)) ([e3dbad1](https://github.com/scratchfoundation/scratch-blocks/commit/e3dbad1feb19c5e72ac66ba9aa9e6f47580a414b))
|
|
57
|
-
* delete context menu to display the correct number of blocks ([#127](https://github.com/scratchfoundation/scratch-blocks/issues/127)) ([a65d24a](https://github.com/scratchfoundation/scratch-blocks/commit/a65d24a38daf8a740d5230ee9a7fbac5ae70e2af))
|
|
58
|
-
* **deps:** after installing deps, replace Blockly v11 with v12 RC ([677ff6f](https://github.com/scratchfoundation/scratch-blocks/commit/677ff6f9589ef84b849822e17a705583a55e50db))
|
|
59
|
-
* **deps:** clone Blockly RC over HTTP instead of SSH ([8a861f0](https://github.com/scratchfoundation/scratch-blocks/commit/8a861f0aac2737de08cc3e1c65942a99d21f1ba8))
|
|
60
|
-
* display icons in the toolbox for extension categories ([#47](https://github.com/scratchfoundation/scratch-blocks/issues/47)) ([b53eadd](https://github.com/scratchfoundation/scratch-blocks/commit/b53eaddcf2ca261ea5798f342e0ec600bf60ca19))
|
|
61
|
-
* don't hide the drag surface ([#38](https://github.com/scratchfoundation/scratch-blocks/issues/38)) ([7f70f09](https://github.com/scratchfoundation/scratch-blocks/commit/7f70f09e11972be8a6ee512323a0a39a52ef0452))
|
|
62
|
-
* don't include Blockly RC source in npm package ([21b15d1](https://github.com/scratchfoundation/scratch-blocks/commit/21b15d1d8e29eef836615ac45488d856b6a22d01))
|
|
63
|
-
* don't show global/local options when renaming a variable ([#123](https://github.com/scratchfoundation/scratch-blocks/issues/123)) ([22a6b73](https://github.com/scratchfoundation/scratch-blocks/commit/22a6b733636b738d200c67ae53caee3e072e043a))
|
|
64
|
-
* don't show scope options when renaming a variable from the variable getter context menu ([#139](https://github.com/scratchfoundation/scratch-blocks/issues/139)) ([375e56d](https://github.com/scratchfoundation/scratch-blocks/commit/375e56db6918dc3475d5c8f29f53cd03f138e4a7))
|
|
65
|
-
* don't warn about procedure references when moving the definition on the workspace ([#131](https://github.com/scratchfoundation/scratch-blocks/issues/131)) ([cda58cc](https://github.com/scratchfoundation/scratch-blocks/commit/cda58ccfa799a0d301d6ba842c6546c1eb9f5614))
|
|
66
|
-
* enable and style workspace comments ([#82](https://github.com/scratchfoundation/scratch-blocks/issues/82)) ([98ccb62](https://github.com/scratchfoundation/scratch-blocks/commit/98ccb62d7280d2cc711337581464138a281453e3))
|
|
67
|
-
* enable dragging arguments out of procedure blocks ([#119](https://github.com/scratchfoundation/scratch-blocks/issues/119)) ([0ca0620](https://github.com/scratchfoundation/scratch-blocks/commit/0ca0620aad343cdbb1d632ddf3ae73a70085aa03))
|
|
68
|
-
* Export colours. ([7c346fa](https://github.com/scratchfoundation/scratch-blocks/commit/7c346fa2424962d7796e42232d9e7db5899dfd5a))
|
|
69
|
-
* Export Scratch messages. ([09326a1](https://github.com/scratchfoundation/scratch-blocks/commit/09326a1c82e5dfa4316d426cd745a8f1c52315b9))
|
|
70
|
-
* fix a crash when adding a broadcast message ([#150](https://github.com/scratchfoundation/scratch-blocks/issues/150)) ([8e165ce](https://github.com/scratchfoundation/scratch-blocks/commit/8e165cec9a45f5f9d17f2255ed3fd58f834881f7))
|
|
71
|
-
* fix alignment of "define" text baseline on custom blocks ([#220](https://github.com/scratchfoundation/scratch-blocks/issues/220)) ([cc4d9f9](https://github.com/scratchfoundation/scratch-blocks/commit/cc4d9f9bc7520313145c4c0cb9978c4dfc6b3bfc))
|
|
72
|
-
* fix bug that caused the number/string input in the custom block editor to have square corners ([#213](https://github.com/scratchfoundation/scratch-blocks/issues/213)) ([c3ee958](https://github.com/scratchfoundation/scratch-blocks/commit/c3ee958a5b5b8cf1ae375f82b5dce88a81ee62dd))
|
|
73
|
-
* fix bug that could cause duplicated procedure argument blocks to create more duplicates on drag ([#217](https://github.com/scratchfoundation/scratch-blocks/issues/217)) ([6a1c8a9](https://github.com/scratchfoundation/scratch-blocks/commit/6a1c8a9e745d77f2aec49c3cae06dd6836bd58ef))
|
|
74
|
-
* fix bug that prevented modal dialogs from appearing on mobile ([#183](https://github.com/scratchfoundation/scratch-blocks/issues/183)) ([37e0f10](https://github.com/scratchfoundation/scratch-blocks/commit/37e0f10f4a59e1bb32734b955b7f2f17e4f2fca0))
|
|
75
|
-
* fix bug that prevented showing the contextual menu on blocks ([#176](https://github.com/scratchfoundation/scratch-blocks/issues/176)) ([2e98ff1](https://github.com/scratchfoundation/scratch-blocks/commit/2e98ff15a149b0ff44e30e7023b36d1605030311))
|
|
76
|
-
* fix color of block reporter dropdown text ([#205](https://github.com/scratchfoundation/scratch-blocks/issues/205)) ([73d978e](https://github.com/scratchfoundation/scratch-blocks/commit/73d978e6c98d546774398e4d48faa7c181fdac11))
|
|
77
|
-
* fix dropdown menu metrics ([#148](https://github.com/scratchfoundation/scratch-blocks/issues/148)) ([40eee91](https://github.com/scratchfoundation/scratch-blocks/commit/40eee91711fb2cc76494221ce2f8b08fc5d9f868))
|
|
78
|
-
* fix exception when editing custom blocks ([#105](https://github.com/scratchfoundation/scratch-blocks/issues/105)) ([7478546](https://github.com/scratchfoundation/scratch-blocks/commit/747854658b5db2f4cfc00d827ef00c1081ab3c28))
|
|
79
|
-
* fix positioning of categories when scrolling via the toolbox ([#186](https://github.com/scratchfoundation/scratch-blocks/issues/186)) ([6d14530](https://github.com/scratchfoundation/scratch-blocks/commit/6d1453082c3ed220c0ff09bf5b785a49df9f4312))
|
|
80
|
-
* fix styling of dropdown menus ([#152](https://github.com/scratchfoundation/scratch-blocks/issues/152)) ([0e80277](https://github.com/scratchfoundation/scratch-blocks/commit/0e802773ce3749a3f74f5fec986aba54312a56cd))
|
|
81
|
-
* fix the color of procedure argument blocks ([#216](https://github.com/scratchfoundation/scratch-blocks/issues/216)) ([88c700e](https://github.com/scratchfoundation/scratch-blocks/commit/88c700e40ea9ed05d3a237936ae44d2b62b1424f))
|
|
82
|
-
* fix the colors of the angle picker dropdown ([#179](https://github.com/scratchfoundation/scratch-blocks/issues/179)) ([59896d2](https://github.com/scratchfoundation/scratch-blocks/commit/59896d2f55e12f5f28bb8bc615f4b5eb186e0ae6))
|
|
83
|
-
* fix the flyout width at 250 pixels ([#168](https://github.com/scratchfoundation/scratch-blocks/issues/168)) ([a47aba6](https://github.com/scratchfoundation/scratch-blocks/commit/a47aba6189fbbb825ad24bd05ab3c8ecdc3dc972))
|
|
84
|
-
* fix the styling of contextual menus ([#147](https://github.com/scratchfoundation/scratch-blocks/issues/147)) ([6fbc2e5](https://github.com/scratchfoundation/scratch-blocks/commit/6fbc2e5ef4d24279be3073021319e717963d76e4))
|
|
85
|
-
* fix toolbox category selection ([#141](https://github.com/scratchfoundation/scratch-blocks/issues/141)) ([d3e1a1b](https://github.com/scratchfoundation/scratch-blocks/commit/d3e1a1b39099ec8a8ca72f3cac21fac5d588d449))
|
|
86
|
-
* fix wrapping of long category labels ([#166](https://github.com/scratchfoundation/scratch-blocks/issues/166)) ([7b39ac1](https://github.com/scratchfoundation/scratch-blocks/commit/7b39ac141bf353edf0cc5379289a33dd3a3ecba8))
|
|
87
|
-
* fixed bug where broadcast messages would appear in the variable dropdown list ([#124](https://github.com/scratchfoundation/scratch-blocks/issues/124)) ([b1e67f6](https://github.com/scratchfoundation/scratch-blocks/commit/b1e67f62dcedbd35e1b92d1ec1c773ff74b2ef56))
|
|
88
|
-
* hide disable and inline inputs contextual menu items ([#35](https://github.com/scratchfoundation/scratch-blocks/issues/35)) ([c548298](https://github.com/scratchfoundation/scratch-blocks/commit/c548298f3b9cf6baa0c27fdb54b5336538d4abf0))
|
|
89
|
-
* improve positioning of newly created procedure blocks ([#121](https://github.com/scratchfoundation/scratch-blocks/issues/121)) ([84a9e5b](https://github.com/scratchfoundation/scratch-blocks/commit/84a9e5b8e9aba2688fd10672a852827311f32259))
|
|
90
|
-
* improve reliability of block value reporting ([#77](https://github.com/scratchfoundation/scratch-blocks/issues/77)) ([cb5b068](https://github.com/scratchfoundation/scratch-blocks/commit/cb5b068afa6e781e649754b55fc013a02112431e))
|
|
91
|
-
* improve sizing and rendering of comments ([#219](https://github.com/scratchfoundation/scratch-blocks/issues/219)) ([1279c0a](https://github.com/scratchfoundation/scratch-blocks/commit/1279c0aacefb8bbfaaa9786531a56c5a45cf24ee))
|
|
92
|
-
* load CSS and fix up UI appearance ([#33](https://github.com/scratchfoundation/scratch-blocks/issues/33)) ([1645129](https://github.com/scratchfoundation/scratch-blocks/commit/1645129950797408d01e3966a9d1b7bdf6223226))
|
|
93
|
-
* load the continuous toolbox ([#31](https://github.com/scratchfoundation/scratch-blocks/issues/31)) ([ea68b1c](https://github.com/scratchfoundation/scratch-blocks/commit/ea68b1c25f055288e2ee39f846c17e5861f1a01f))
|
|
94
|
-
* make block images work in all contexts ([#30](https://github.com/scratchfoundation/scratch-blocks/issues/30)) ([920febf](https://github.com/scratchfoundation/scratch-blocks/commit/920febf5c3304bcf3a561b1e7c0e016540399540))
|
|
95
|
-
* make FieldNumber a subclass of FieldTextInput ([#214](https://github.com/scratchfoundation/scratch-blocks/issues/214)) ([3ae2235](https://github.com/scratchfoundation/scratch-blocks/commit/3ae22356f5ee9ed5da55b744657a033e43ad1ce0))
|
|
96
|
-
* make variable names case-sensitive ([#122](https://github.com/scratchfoundation/scratch-blocks/issues/122)) ([46854cd](https://github.com/scratchfoundation/scratch-blocks/commit/46854cdb7c9fe92b8621a9e36acd6f94e9383a9f))
|
|
97
|
-
* match Scratch behaviors around dragging and connection stickiness ([#80](https://github.com/scratchfoundation/scratch-blocks/issues/80)) ([fd1bc58](https://github.com/scratchfoundation/scratch-blocks/commit/fd1bc58bdef66697b0630d1c67f5a04d01dfa716))
|
|
98
|
-
* miscellaneous UI fixits ([#41](https://github.com/scratchfoundation/scratch-blocks/issues/41)) ([300a1ce](https://github.com/scratchfoundation/scratch-blocks/commit/300a1ce564a55cb65ef2e01792a0ba1149621c50))
|
|
99
|
-
* modernize and reenable the colour slider field ([#42](https://github.com/scratchfoundation/scratch-blocks/issues/42)) ([4f97982](https://github.com/scratchfoundation/scratch-blocks/commit/4f979828f1122d5cf314a8de464457ae8b925ed7))
|
|
100
|
-
* more closely align flyout layout with Scratch ([#45](https://github.com/scratchfoundation/scratch-blocks/issues/45)) ([49663ed](https://github.com/scratchfoundation/scratch-blocks/commit/49663ed2f823ea45a04c0201d467d4e06e0d7078))
|
|
101
|
-
* prevent deleting procedure definition blocks with references by dragging to the flyout ([#120](https://github.com/scratchfoundation/scratch-blocks/issues/120)) ([fa9367d](https://github.com/scratchfoundation/scratch-blocks/commit/fa9367d975e8c3fd45321248eb365c9cd0477dbb))
|
|
102
|
-
* prevent dragging blocks into the slot occupied by the procedure definition block's example caller block ([#118](https://github.com/scratchfoundation/scratch-blocks/issues/118)) ([453ffa9](https://github.com/scratchfoundation/scratch-blocks/commit/453ffa9654927be023571f5bb496a1d0ff36aad9))
|
|
103
|
-
* re-export scratch-blocks utility functions ([#26](https://github.com/scratchfoundation/scratch-blocks/issues/26)) ([685ecfc](https://github.com/scratchfoundation/scratch-blocks/commit/685ecfc0ce9f3c9335393f5af71eb3755aabedd4))
|
|
104
|
-
* readd the control blocks ([#22](https://github.com/scratchfoundation/scratch-blocks/issues/22)) ([f69d4ac](https://github.com/scratchfoundation/scratch-blocks/commit/f69d4ac8ebd128b318919f4a3ac5222d211adfbb))
|
|
105
|
-
* readd the data blocks ([#29](https://github.com/scratchfoundation/scratch-blocks/issues/29)) ([fafed65](https://github.com/scratchfoundation/scratch-blocks/commit/fafed65e73f59877200741c36244d082f2b3aad1))
|
|
106
|
-
* readd the event blocks ([#21](https://github.com/scratchfoundation/scratch-blocks/issues/21)) ([4de530f](https://github.com/scratchfoundation/scratch-blocks/commit/4de530f00310ee27c0ad55940c9cb6bf1208df91))
|
|
107
|
-
* readd the looks blocks ([#23](https://github.com/scratchfoundation/scratch-blocks/issues/23)) ([34f07c0](https://github.com/scratchfoundation/scratch-blocks/commit/34f07c0ed7982963ded8563b5f45d374e740d98c))
|
|
108
|
-
* readd the motion blocks ([#20](https://github.com/scratchfoundation/scratch-blocks/issues/20)) ([79398c2](https://github.com/scratchfoundation/scratch-blocks/commit/79398c2ebae7329d0d428bab5870e559423ab36b))
|
|
109
|
-
* readd the operator blocks and dependencies ([#19](https://github.com/scratchfoundation/scratch-blocks/issues/19)) ([8024e9f](https://github.com/scratchfoundation/scratch-blocks/commit/8024e9fd638586d26e6b47424e0067c0387af8cd))
|
|
110
|
-
* readd the sensing blocks ([#27](https://github.com/scratchfoundation/scratch-blocks/issues/27)) ([9f5f135](https://github.com/scratchfoundation/scratch-blocks/commit/9f5f1351be5818fb9392214b8047acace8333a65))
|
|
111
|
-
* readd the sound blocks ([#24](https://github.com/scratchfoundation/scratch-blocks/issues/24)) ([6837513](https://github.com/scratchfoundation/scratch-blocks/commit/6837513d3f217e94522a3ce756273d6ff8e7538c))
|
|
112
|
-
* reenable reporting block values ([#55](https://github.com/scratchfoundation/scratch-blocks/issues/55)) ([70c8cfd](https://github.com/scratchfoundation/scratch-blocks/commit/70c8cfd73ee1081eafcb2773fe56a4e078cb2bea))
|
|
113
|
-
* reenable shadows for blocks being dragged ([#79](https://github.com/scratchfoundation/scratch-blocks/issues/79)) ([94d2a2c](https://github.com/scratchfoundation/scratch-blocks/commit/94d2a2ca55c0d0265a79237610bcf8c246d74a9b))
|
|
114
|
-
* reenable support for checkboxes in the flyout ([#43](https://github.com/scratchfoundation/scratch-blocks/issues/43)) ([e603c67](https://github.com/scratchfoundation/scratch-blocks/commit/e603c67cf7c55ff09c292991ef6b9f9ac3aae0f9))
|
|
115
|
-
* reenable support for dragging blocks between sprites ([#130](https://github.com/scratchfoundation/scratch-blocks/issues/130)) ([3d8b998](https://github.com/scratchfoundation/scratch-blocks/commit/3d8b998f3be7e76adf313a60b81f29b871266c94))
|
|
116
|
-
* reenable the matrix field ([#49](https://github.com/scratchfoundation/scratch-blocks/issues/49)) ([aa3341b](https://github.com/scratchfoundation/scratch-blocks/commit/aa3341b69e51de847f177124660a304e2bca8446))
|
|
117
|
-
* reenable the mobile numpad field ([#54](https://github.com/scratchfoundation/scratch-blocks/issues/54)) ([003afd0](https://github.com/scratchfoundation/scratch-blocks/commit/003afd04b98ae1d3688b5356885e27c116fc61ac))
|
|
118
|
-
* reenable the note block and picker field ([#48](https://github.com/scratchfoundation/scratch-blocks/issues/48)) ([de62d77](https://github.com/scratchfoundation/scratch-blocks/commit/de62d7752eb80f67a654ae2e87820ad4183e833d))
|
|
119
|
-
* reenable the vertical separator field ([#46](https://github.com/scratchfoundation/scratch-blocks/issues/46)) ([48e931f](https://github.com/scratchfoundation/scratch-blocks/commit/48e931fa9de3e31b18f088557c2cbfd0738b4bc6))
|
|
120
|
-
* remove canvas transition ([#129](https://github.com/scratchfoundation/scratch-blocks/issues/129)) ([ff4b115](https://github.com/scratchfoundation/scratch-blocks/commit/ff4b1151d702be0be5dabf1f1032fd08b8d58e3e))
|
|
121
|
-
* remove underscore from a few createProcedureDefCallback calls ([#40](https://github.com/scratchfoundation/scratch-blocks/issues/40)) ([4e794f6](https://github.com/scratchfoundation/scratch-blocks/commit/4e794f6503dfba1d12f9e99905660d305d34e309))
|
|
122
|
-
* render the procedure definition block like Scratch ([#115](https://github.com/scratchfoundation/scratch-blocks/issues/115)) ([2a543f5](https://github.com/scratchfoundation/scratch-blocks/commit/2a543f56f6d45bcc970cfe56dbfdea6ff26c833a))
|
|
123
|
-
* resolve error when adding the stop block to the workspace ([#56](https://github.com/scratchfoundation/scratch-blocks/issues/56)) ([f3e059c](https://github.com/scratchfoundation/scratch-blocks/commit/f3e059cbf5cf3ce4e063871632a213c8d58f1000))
|
|
124
|
-
* resolve various UI issues ([#117](https://github.com/scratchfoundation/scratch-blocks/issues/117)) ([4b74d5c](https://github.com/scratchfoundation/scratch-blocks/commit/4b74d5ca4ffaf7dfd7c040bce5cfd725c96d848a))
|
|
125
|
-
* select new variable blocks' monitor checkboxes after creation ([#140](https://github.com/scratchfoundation/scratch-blocks/issues/140)) ([3811d93](https://github.com/scratchfoundation/scratch-blocks/commit/3811d93f57c2a72a8a830a7326e2d27694bec7b7))
|
|
126
|
-
* show connection highlights for boolean inputs ([#181](https://github.com/scratchfoundation/scratch-blocks/issues/181)) ([303611a](https://github.com/scratchfoundation/scratch-blocks/commit/303611a5475b4c5914d14c7fa04915d0cb0a0d03))
|
|
127
|
-
* show the glow only when blocks are running ([#57](https://github.com/scratchfoundation/scratch-blocks/issues/57)) ([33e9e91](https://github.com/scratchfoundation/scratch-blocks/commit/33e9e91be1210c1699bc3491df5d9c7c191bc30d))
|
|
128
|
-
* show the name of the list in the list getter block context menu ([#132](https://github.com/scratchfoundation/scratch-blocks/issues/132)) ([eb839fc](https://github.com/scratchfoundation/scratch-blocks/commit/eb839fcef9e8befad591cf35c00044adff9269f6))
|
|
129
|
-
* update the flyout for compatibility with the new flyout API ([#209](https://github.com/scratchfoundation/scratch-blocks/issues/209)) ([7ce9991](https://github.com/scratchfoundation/scratch-blocks/commit/7ce9991b6f1b6a504847097ebd098f0ec1e50e52))
|
|
130
|
-
* use non-deprecated input type constants ([#78](https://github.com/scratchfoundation/scratch-blocks/issues/78)) ([1f1c859](https://github.com/scratchfoundation/scratch-blocks/commit/1f1c8598a5dac8bb42dd82fff7edc7eda7fe4225))
|
|
131
|
-
* use Scratch-style text blocks ([#37](https://github.com/scratchfoundation/scratch-blocks/issues/37)) ([6bbbdf7](https://github.com/scratchfoundation/scratch-blocks/commit/6bbbdf763ba43d3dc0af7bad15478f848455f4df))
|
|
132
|
-
* use Scratch's FieldAngle ([#138](https://github.com/scratchfoundation/scratch-blocks/issues/138)) ([ef7911c](https://github.com/scratchfoundation/scratch-blocks/commit/ef7911cf7fd12d6370733bdd3778560925bd050c))
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
* fix!: bump to v2.0 to reflect Blockly un-forking ([899a981](https://github.com/scratchfoundation/scratch-blocks/commit/899a981fb55c60e4b7822e9a77ebb0a65819d094))
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
### Features
|
|
139
|
-
|
|
140
|
-
* add a block inflater that supports recycling ([#207](https://github.com/scratchfoundation/scratch-blocks/issues/207)) ([0701679](https://github.com/scratchfoundation/scratch-blocks/commit/07016799832530cf851c14be484158e58bdaa9dd))
|
|
141
|
-
* add bubbles/icons for block flyout checkboxes ([#208](https://github.com/scratchfoundation/scratch-blocks/issues/208)) ([39b2162](https://github.com/scratchfoundation/scratch-blocks/commit/39b2162db62973860c904f0b78f1d7f27abebc99))
|
|
142
|
-
* add custom Scratch variable model and creation event classes ([#86](https://github.com/scratchfoundation/scratch-blocks/issues/86)) ([2598ede](https://github.com/scratchfoundation/scratch-blocks/commit/2598ede046de74164922bd919695eae65bd0c9b2))
|
|
143
|
-
* clean up and export Scratch's variables.js ([#88](https://github.com/scratchfoundation/scratch-blocks/issues/88)) ([5c1acfe](https://github.com/scratchfoundation/scratch-blocks/commit/5c1acfe3dc1bb0bf406ba20ffd1e25b22356fbd7))
|
|
144
|
-
* readd support for the custom Data toolbox category ([#87](https://github.com/scratchfoundation/scratch-blocks/issues/87)) ([dcfbf39](https://github.com/scratchfoundation/scratch-blocks/commit/dcfbf391cfcf2dbdf04c84b7e5c4d1463c18ed1d))
|
|
145
|
-
* reenable Scratch's FieldVariable subclass ([#91](https://github.com/scratchfoundation/scratch-blocks/issues/91)) ([7c891e3](https://github.com/scratchfoundation/scratch-blocks/commit/7c891e35207b6f561917f27739917cb84755d57c))
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
### Reverts
|
|
149
|
-
|
|
150
|
-
* Revert "fix: add zoom controls config (#126)" (#128) ([8e1dc14](https://github.com/scratchfoundation/scratch-blocks/commit/8e1dc14483d6e012734a30b666af7aa5427c58f9)), closes [#126](https://github.com/scratchfoundation/scratch-blocks/issues/126) [#128](https://github.com/scratchfoundation/scratch-blocks/issues/128)
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
### BREAKING CHANGES
|
|
154
|
-
|
|
155
|
-
* scratch-blocks is no longer a divergent fork of
|
|
156
|
-
Blockly, and instead depends on Blockly as a regular node_modules
|
|
157
|
-
dependency.
|
|
158
|
-
|
|
159
|
-
Thanks, @gonfunko and everyone else at Google who helped with this
|
|
160
|
-
effort!
|
|
161
|
-
|
|
162
|
-
## [1.1.86](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.85...v1.1.86) (2024-04-12)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
### Bug Fixes
|
|
166
|
-
|
|
167
|
-
* **deps:** lock file maintenance ([faafde2](https://github.com/scratchfoundation/scratch-blocks/commit/faafde236679b7508a39807229bf9f6da24bc6cc))
|
|
168
|
-
|
|
169
|
-
## [1.1.85](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.84...v1.1.85) (2024-04-12)
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
### Bug Fixes
|
|
173
|
-
|
|
174
|
-
* **deps:** lock file maintenance ([be90d79](https://github.com/scratchfoundation/scratch-blocks/commit/be90d79c0d0107b11077d1720dafec8b6abbef15))
|
|
175
|
-
|
|
176
|
-
## [1.1.84](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.83...v1.1.84) (2024-04-11)
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
### Bug Fixes
|
|
180
|
-
|
|
181
|
-
* **deps:** lock file maintenance ([06cf1b9](https://github.com/scratchfoundation/scratch-blocks/commit/06cf1b99bd23d687cd153c7bb58b3d210e2cdea7))
|
|
182
|
-
|
|
183
|
-
## [1.1.83](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.82...v1.1.83) (2024-04-11)
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
### Bug Fixes
|
|
187
|
-
|
|
188
|
-
* **deps:** lock file maintenance ([fb7a52c](https://github.com/scratchfoundation/scratch-blocks/commit/fb7a52cecf9804673a1089a622960a5503b77ec2))
|
|
189
|
-
|
|
190
|
-
## [1.1.82](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.81...v1.1.82) (2024-04-10)
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
### Bug Fixes
|
|
194
|
-
|
|
195
|
-
* **deps:** lock file maintenance ([ae56de7](https://github.com/scratchfoundation/scratch-blocks/commit/ae56de71269edef7276b9c292559e569d427e6c4))
|
|
196
|
-
|
|
197
|
-
## [1.1.81](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.80...v1.1.81) (2024-04-10)
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
### Bug Fixes
|
|
201
|
-
|
|
202
|
-
* **deps:** lock file maintenance ([90ca6fb](https://github.com/scratchfoundation/scratch-blocks/commit/90ca6fb3dd96fb0ba6854494ad54f1c2b20befd3))
|
|
203
|
-
|
|
204
|
-
## [1.1.80](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.79...v1.1.80) (2024-04-09)
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
### Bug Fixes
|
|
208
|
-
|
|
209
|
-
* **deps:** lock file maintenance ([f746076](https://github.com/scratchfoundation/scratch-blocks/commit/f7460768bf293f6aa8185f20322cb973447800ff))
|
|
210
|
-
|
|
211
|
-
## [1.1.79](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.78...v1.1.79) (2024-04-06)
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
### Bug Fixes
|
|
215
|
-
|
|
216
|
-
* **deps:** lock file maintenance ([98ede4f](https://github.com/scratchfoundation/scratch-blocks/commit/98ede4f4a69fbb076c747fec00485c682e0db61b))
|
|
217
|
-
|
|
218
|
-
## [1.1.78](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.77...v1.1.78) (2024-04-06)
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
### Bug Fixes
|
|
222
|
-
|
|
223
|
-
* **deps:** lock file maintenance ([6e0bc34](https://github.com/scratchfoundation/scratch-blocks/commit/6e0bc34df22eed5a11b8f021d9643e3477388fb2))
|
|
224
|
-
|
|
225
|
-
## [1.1.77](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.76...v1.1.77) (2024-04-05)
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
### Bug Fixes
|
|
229
|
-
|
|
230
|
-
* **deps:** lock file maintenance ([4f2480f](https://github.com/scratchfoundation/scratch-blocks/commit/4f2480fc0b2cf49d3883ccb4a7df494b9b1088f9))
|
|
231
|
-
|
|
232
|
-
## [1.1.76](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.75...v1.1.76) (2024-04-04)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
### Bug Fixes
|
|
236
|
-
|
|
237
|
-
* **deps:** lock file maintenance ([41dbef7](https://github.com/scratchfoundation/scratch-blocks/commit/41dbef7f659538da1f9d92612029b10eac2f6292))
|
|
238
|
-
|
|
239
|
-
## [1.1.75](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.74...v1.1.75) (2024-04-03)
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
### Bug Fixes
|
|
243
|
-
|
|
244
|
-
* **deps:** lock file maintenance ([5390877](https://github.com/scratchfoundation/scratch-blocks/commit/539087794749a749c03ce24eb1caf03ef07e1d71))
|
|
245
|
-
|
|
246
|
-
## [1.1.74](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.73...v1.1.74) (2024-04-02)
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
### Bug Fixes
|
|
250
|
-
|
|
251
|
-
* **deps:** lock file maintenance ([1c97e96](https://github.com/scratchfoundation/scratch-blocks/commit/1c97e963a118f9b8edf83e522d62c641072d66d8))
|
|
252
|
-
|
|
253
|
-
## [1.1.73](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.72...v1.1.73) (2024-03-31)
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
### Bug Fixes
|
|
257
|
-
|
|
258
|
-
* **deps:** lock file maintenance ([d3d14dc](https://github.com/scratchfoundation/scratch-blocks/commit/d3d14dcada9a248cf4d5a805eaac461182b5fc36))
|
|
259
|
-
|
|
260
|
-
## [1.1.72](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.71...v1.1.72) (2024-03-30)
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
### Bug Fixes
|
|
264
|
-
|
|
265
|
-
* **deps:** lock file maintenance ([35c6726](https://github.com/scratchfoundation/scratch-blocks/commit/35c6726aeca847b514228635a9e9382ae1833cdd))
|
|
266
|
-
|
|
267
|
-
## [1.1.71](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.70...v1.1.71) (2024-03-30)
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
### Bug Fixes
|
|
271
|
-
|
|
272
|
-
* **deps:** lock file maintenance ([44b05f3](https://github.com/scratchfoundation/scratch-blocks/commit/44b05f31e5aaa90c34e3629e6397df6deffde60e))
|
|
273
|
-
|
|
274
|
-
## [1.1.70](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.69...v1.1.70) (2024-03-29)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
### Bug Fixes
|
|
278
|
-
|
|
279
|
-
* **deps:** lock file maintenance ([e0ca766](https://github.com/scratchfoundation/scratch-blocks/commit/e0ca7668fcae8ac1d205a07ee24d5e68a3628f8c))
|
|
280
|
-
|
|
281
|
-
## [1.1.69](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.68...v1.1.69) (2024-03-29)
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
### Bug Fixes
|
|
285
|
-
|
|
286
|
-
* **deps:** lock file maintenance ([46d0c7f](https://github.com/scratchfoundation/scratch-blocks/commit/46d0c7fd4d641a2cbeeae0092fd324997f88d505))
|
|
287
|
-
|
|
288
|
-
## [1.1.68](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.67...v1.1.68) (2024-03-28)
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
### Bug Fixes
|
|
292
|
-
|
|
293
|
-
* **deps:** lock file maintenance ([2a9abfd](https://github.com/scratchfoundation/scratch-blocks/commit/2a9abfd44e29383ede84b4178be46f29a8eba489))
|
|
294
|
-
|
|
295
|
-
## [1.1.67](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.66...v1.1.67) (2024-03-28)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
### Bug Fixes
|
|
299
|
-
|
|
300
|
-
* **deps:** lock file maintenance ([554cd1c](https://github.com/scratchfoundation/scratch-blocks/commit/554cd1c50181d7433b75c83a229210fa4f5653d1))
|
|
301
|
-
|
|
302
|
-
## [1.1.66](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.65...v1.1.66) (2024-03-27)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
### Bug Fixes
|
|
306
|
-
|
|
307
|
-
* **deps:** lock file maintenance ([24bae90](https://github.com/scratchfoundation/scratch-blocks/commit/24bae90a7161e6f0fc0a72e2a93a97e09e9d6b38))
|
|
308
|
-
|
|
309
|
-
## [1.1.65](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.64...v1.1.65) (2024-03-26)
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
### Bug Fixes
|
|
313
|
-
|
|
314
|
-
* **deps:** lock file maintenance ([f1a8f13](https://github.com/scratchfoundation/scratch-blocks/commit/f1a8f13b467eef0ed58da327f55dd18111a34ba4))
|
|
315
|
-
|
|
316
|
-
## [1.1.64](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.63...v1.1.64) (2024-03-26)
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
### Bug Fixes
|
|
320
|
-
|
|
321
|
-
* **deps:** lock file maintenance ([271a689](https://github.com/scratchfoundation/scratch-blocks/commit/271a689a77ae7859c62be1734dce99d6a04e66fa))
|
|
322
|
-
|
|
323
|
-
## [1.1.63](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.62...v1.1.63) (2024-03-25)
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
### Bug Fixes
|
|
327
|
-
|
|
328
|
-
* **deps:** lock file maintenance ([a6f6365](https://github.com/scratchfoundation/scratch-blocks/commit/a6f6365eab7c94df629e825f13e9706cb6d99b2d))
|
|
329
|
-
|
|
330
|
-
## [1.1.62](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.61...v1.1.62) (2024-03-24)
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
### Bug Fixes
|
|
334
|
-
|
|
335
|
-
* **deps:** lock file maintenance ([51cd415](https://github.com/scratchfoundation/scratch-blocks/commit/51cd415dd34692c91d0b5757295b9ac0d32a2cd2))
|
|
336
|
-
|
|
337
|
-
## [1.1.61](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.60...v1.1.61) (2024-03-23)
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
### Bug Fixes
|
|
341
|
-
|
|
342
|
-
* **deps:** lock file maintenance ([ca2146f](https://github.com/scratchfoundation/scratch-blocks/commit/ca2146f6600a106a35b98f39085989c0c0e2b925))
|
|
343
|
-
|
|
344
|
-
## [1.1.60](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.59...v1.1.60) (2024-03-22)
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
### Bug Fixes
|
|
348
|
-
|
|
349
|
-
* **deps:** lock file maintenance ([cafe697](https://github.com/scratchfoundation/scratch-blocks/commit/cafe697e919d80ea98134c1ba020cf66cb1230a8))
|
|
350
|
-
|
|
351
|
-
## [1.1.59](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.58...v1.1.59) (2024-03-22)
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
### Bug Fixes
|
|
355
|
-
|
|
356
|
-
* **deps:** lock file maintenance ([7502c0a](https://github.com/scratchfoundation/scratch-blocks/commit/7502c0a152198ce7b4ad2604b3c5b4cb76c175d6))
|
|
357
|
-
|
|
358
|
-
## [1.1.58](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.57...v1.1.58) (2024-03-21)
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
### Bug Fixes
|
|
362
|
-
|
|
363
|
-
* **deps:** lock file maintenance ([31f33f1](https://github.com/scratchfoundation/scratch-blocks/commit/31f33f1e12a37badefc48c6a555ac1627e84cca4))
|
|
364
|
-
|
|
365
|
-
## [1.1.57](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.56...v1.1.57) (2024-03-20)
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
### Bug Fixes
|
|
369
|
-
|
|
370
|
-
* **deps:** lock file maintenance ([85d4f26](https://github.com/scratchfoundation/scratch-blocks/commit/85d4f26ce170ad432e6f83ae19b825f519d6821d))
|
|
371
|
-
|
|
372
|
-
## [1.1.56](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.55...v1.1.56) (2024-03-20)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
### Bug Fixes
|
|
376
|
-
|
|
377
|
-
* **deps:** lock file maintenance ([abeb215](https://github.com/scratchfoundation/scratch-blocks/commit/abeb215fe94b2e7dca7ab6322f6ffdd6643049d9))
|
|
378
|
-
|
|
379
|
-
## [1.1.55](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.54...v1.1.55) (2024-03-19)
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
### Bug Fixes
|
|
383
|
-
|
|
384
|
-
* **deps:** lock file maintenance ([ab31bc9](https://github.com/scratchfoundation/scratch-blocks/commit/ab31bc9805a5df6ddf846ca1334d328a8a3b6862))
|
|
385
|
-
|
|
386
|
-
## [1.1.54](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.53...v1.1.54) (2024-03-18)
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
### Bug Fixes
|
|
390
|
-
|
|
391
|
-
* **deps:** lock file maintenance ([8617b2e](https://github.com/scratchfoundation/scratch-blocks/commit/8617b2ed2223d23d3eb5b5768b39346eb12ba711))
|
|
392
|
-
|
|
393
|
-
## [1.1.53](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.52...v1.1.53) (2024-03-17)
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
### Bug Fixes
|
|
397
|
-
|
|
398
|
-
* **deps:** lock file maintenance ([1218da1](https://github.com/scratchfoundation/scratch-blocks/commit/1218da100631f8d8ac815a5b54cf035cf84f7009))
|
|
399
|
-
|
|
400
|
-
## [1.1.52](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.51...v1.1.52) (2024-03-16)
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
### Bug Fixes
|
|
404
|
-
|
|
405
|
-
* **deps:** lock file maintenance ([c6de899](https://github.com/scratchfoundation/scratch-blocks/commit/c6de899fb0651dd467e67faf64e534545d0ee1a7))
|
|
406
|
-
|
|
407
|
-
## [1.1.51](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.50...v1.1.51) (2024-03-15)
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
### Bug Fixes
|
|
411
|
-
|
|
412
|
-
* **deps:** lock file maintenance ([d600241](https://github.com/scratchfoundation/scratch-blocks/commit/d60024195e028302253a4580598001558ec7a3cc))
|
|
413
|
-
|
|
414
|
-
## [1.1.50](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.49...v1.1.50) (2024-03-15)
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
### Bug Fixes
|
|
418
|
-
|
|
419
|
-
* **deps:** lock file maintenance ([dc37600](https://github.com/scratchfoundation/scratch-blocks/commit/dc376002e123a5ce3043f9cb54dce2752ce8c8d3))
|
|
420
|
-
|
|
421
|
-
## [1.1.49](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.48...v1.1.49) (2024-03-14)
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
### Bug Fixes
|
|
425
|
-
|
|
426
|
-
* **deps:** lock file maintenance ([0806a58](https://github.com/scratchfoundation/scratch-blocks/commit/0806a58f5f6051144a85cf2fc341ebc5fe775ac6))
|
|
427
|
-
|
|
428
|
-
## [1.1.48](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.47...v1.1.48) (2024-03-13)
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
### Bug Fixes
|
|
432
|
-
|
|
433
|
-
* **deps:** lock file maintenance ([f40f9b8](https://github.com/scratchfoundation/scratch-blocks/commit/f40f9b808ddbc969f69f40986086bd7bcb4b2999))
|
|
434
|
-
|
|
435
|
-
## [1.1.47](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.46...v1.1.47) (2024-03-11)
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
### Bug Fixes
|
|
439
|
-
|
|
440
|
-
* **deps:** lock file maintenance ([1c56fb7](https://github.com/scratchfoundation/scratch-blocks/commit/1c56fb737b0d2d794174a7bb8b25dbbe52d33fd7))
|
|
441
|
-
|
|
442
|
-
## [1.1.46](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.45...v1.1.46) (2024-03-11)
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
### Bug Fixes
|
|
446
|
-
|
|
447
|
-
* **deps:** lock file maintenance ([b19b618](https://github.com/scratchfoundation/scratch-blocks/commit/b19b61868afb5dbb8fb9d466f2f2069de8c57523))
|
|
448
|
-
|
|
449
|
-
## [1.1.45](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.44...v1.1.45) (2024-03-10)
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
### Bug Fixes
|
|
453
|
-
|
|
454
|
-
* **deps:** lock file maintenance ([524c69e](https://github.com/scratchfoundation/scratch-blocks/commit/524c69ef90db46afd9feb47b0d788c90c24da41f))
|
|
455
|
-
|
|
456
|
-
## [1.1.44](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.43...v1.1.44) (2024-03-10)
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
### Bug Fixes
|
|
460
|
-
|
|
461
|
-
* **deps:** lock file maintenance ([ad5693d](https://github.com/scratchfoundation/scratch-blocks/commit/ad5693d72cd9fdeda11ecef9feddce67c2bccc9c))
|
|
462
|
-
|
|
463
|
-
## [1.1.43](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.42...v1.1.43) (2024-03-09)
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
### Bug Fixes
|
|
467
|
-
|
|
468
|
-
* **deps:** lock file maintenance ([6de778b](https://github.com/scratchfoundation/scratch-blocks/commit/6de778b12ecd30b7031c63bc8330640b9f1ceb33))
|
|
469
|
-
|
|
470
|
-
## [1.1.42](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.41...v1.1.42) (2024-03-09)
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
### Bug Fixes
|
|
474
|
-
|
|
475
|
-
* **deps:** lock file maintenance ([2ddaf54](https://github.com/scratchfoundation/scratch-blocks/commit/2ddaf546a03f03b38e41cce4028674bc624f499e))
|
|
476
|
-
|
|
477
|
-
## [1.1.41](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.40...v1.1.41) (2024-03-08)
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
### Bug Fixes
|
|
481
|
-
|
|
482
|
-
* **deps:** lock file maintenance ([069f739](https://github.com/scratchfoundation/scratch-blocks/commit/069f739102ad89685a0bc516310165910dc034fb))
|
|
483
|
-
|
|
484
|
-
## [1.1.40](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.39...v1.1.40) (2024-03-07)
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
### Bug Fixes
|
|
488
|
-
|
|
489
|
-
* **deps:** lock file maintenance ([f0b86a9](https://github.com/scratchfoundation/scratch-blocks/commit/f0b86a9fe87d8356451a9277ecd53484a260040e))
|
|
490
|
-
|
|
491
|
-
## [1.1.39](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.38...v1.1.39) (2024-03-07)
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
### Bug Fixes
|
|
495
|
-
|
|
496
|
-
* **deps:** lock file maintenance ([32ea247](https://github.com/scratchfoundation/scratch-blocks/commit/32ea247930d29172cd6e341e75bc020a9caaafe3))
|
|
497
|
-
|
|
498
|
-
## [1.1.38](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.37...v1.1.38) (2024-03-06)
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
### Bug Fixes
|
|
502
|
-
|
|
503
|
-
* **deps:** lock file maintenance ([f87669d](https://github.com/scratchfoundation/scratch-blocks/commit/f87669d9b3470a913a5adc320f377e77cdfde08e))
|
|
504
|
-
|
|
505
|
-
## [1.1.37](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.36...v1.1.37) (2024-03-06)
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
### Bug Fixes
|
|
509
|
-
|
|
510
|
-
* **deps:** lock file maintenance ([75d91a0](https://github.com/scratchfoundation/scratch-blocks/commit/75d91a0fad3f88ec7beb7317248c7ef9fc893a62))
|
|
511
|
-
|
|
512
|
-
## [1.1.36](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.35...v1.1.36) (2024-03-05)
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
### Bug Fixes
|
|
516
|
-
|
|
517
|
-
* **deps:** lock file maintenance ([61fcd36](https://github.com/scratchfoundation/scratch-blocks/commit/61fcd364777038d12f065ee5ca0efb60c45dfcba))
|
|
518
|
-
|
|
519
|
-
## [1.1.35](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.34...v1.1.35) (2024-03-05)
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
### Bug Fixes
|
|
523
|
-
|
|
524
|
-
* **deps:** lock file maintenance ([db320b4](https://github.com/scratchfoundation/scratch-blocks/commit/db320b4ab289bacb09fc98dd99d766773bc243c7))
|
|
525
|
-
|
|
526
|
-
## [1.1.34](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.33...v1.1.34) (2024-03-05)
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
### Bug Fixes
|
|
530
|
-
|
|
531
|
-
* **deps:** lock file maintenance ([f2070ec](https://github.com/scratchfoundation/scratch-blocks/commit/f2070ec588901c08f2bbe66721aac24d606124e7))
|
|
532
|
-
|
|
533
|
-
## [1.1.33](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.32...v1.1.33) (2024-03-04)
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
### Bug Fixes
|
|
537
|
-
|
|
538
|
-
* **deps:** lock file maintenance ([ef1103a](https://github.com/scratchfoundation/scratch-blocks/commit/ef1103a400dc930e6ab883111aee52acfae508fc))
|
|
539
|
-
|
|
540
|
-
## [1.1.32](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.31...v1.1.32) (2024-03-02)
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
### Bug Fixes
|
|
544
|
-
|
|
545
|
-
* **deps:** lock file maintenance ([da08d86](https://github.com/scratchfoundation/scratch-blocks/commit/da08d86ca14e6643a04b75515bb21b5b115c7a57))
|
|
546
|
-
|
|
547
|
-
## [1.1.31](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.30...v1.1.31) (2024-03-02)
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
### Bug Fixes
|
|
551
|
-
|
|
552
|
-
* **deps:** lock file maintenance ([ccf2b06](https://github.com/scratchfoundation/scratch-blocks/commit/ccf2b063842530a0137ecf8d864a90fff3b37d0e))
|
|
553
|
-
|
|
554
|
-
## [1.1.30](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.29...v1.1.30) (2024-03-02)
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
### Bug Fixes
|
|
558
|
-
|
|
559
|
-
* **deps:** lock file maintenance ([5e9a67d](https://github.com/scratchfoundation/scratch-blocks/commit/5e9a67da7c3a4da50056c9b9ab304abf8f70a794))
|
|
560
|
-
|
|
561
|
-
## [1.1.29](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.28...v1.1.29) (2024-03-01)
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
### Bug Fixes
|
|
565
|
-
|
|
566
|
-
* **deps:** lock file maintenance ([3128f4f](https://github.com/scratchfoundation/scratch-blocks/commit/3128f4f66f8dc01a636f3a822c615cb07a897f90))
|
|
567
|
-
|
|
568
|
-
## [1.1.28](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.27...v1.1.28) (2024-03-01)
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
### Bug Fixes
|
|
572
|
-
|
|
573
|
-
* **deps:** lock file maintenance ([e482939](https://github.com/scratchfoundation/scratch-blocks/commit/e482939a67c68dbbe214c233c4525e12e57103fe))
|
|
574
|
-
|
|
575
|
-
## [1.1.27](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.26...v1.1.27) (2024-03-01)
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
### Bug Fixes
|
|
579
|
-
|
|
580
|
-
* **deps:** lock file maintenance ([f48f855](https://github.com/scratchfoundation/scratch-blocks/commit/f48f855bfda837d351f7896fb3275e67e4fd28d3))
|
|
581
|
-
|
|
582
|
-
## [1.1.26](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.25...v1.1.26) (2024-03-01)
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
### Bug Fixes
|
|
586
|
-
|
|
587
|
-
* **deps:** lock file maintenance ([9ff5d7d](https://github.com/scratchfoundation/scratch-blocks/commit/9ff5d7d4b41be7f56cf2f77452212a51dc254bc9))
|
|
588
|
-
|
|
589
|
-
## [1.1.25](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.24...v1.1.25) (2024-02-29)
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
### Bug Fixes
|
|
593
|
-
|
|
594
|
-
* **deps:** lock file maintenance ([d4c3aa8](https://github.com/scratchfoundation/scratch-blocks/commit/d4c3aa8927a6a7445324d38b8992464b7601fa27))
|
|
595
|
-
|
|
596
|
-
## [1.1.24](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.23...v1.1.24) (2024-02-29)
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
### Bug Fixes
|
|
600
|
-
|
|
601
|
-
* **deps:** lock file maintenance ([d568344](https://github.com/scratchfoundation/scratch-blocks/commit/d568344b3d91a8005086dc1e98f1493027feef7c))
|
|
602
|
-
|
|
603
|
-
## [1.1.23](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.22...v1.1.23) (2024-02-29)
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
### Bug Fixes
|
|
607
|
-
|
|
608
|
-
* **deps:** lock file maintenance ([c957014](https://github.com/scratchfoundation/scratch-blocks/commit/c957014c5d070da84af40a3950942831bf94b6de))
|
|
609
|
-
|
|
610
|
-
## [1.1.22](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.21...v1.1.22) (2024-02-29)
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
### Bug Fixes
|
|
614
|
-
|
|
615
|
-
* **deps:** lock file maintenance ([c48564e](https://github.com/scratchfoundation/scratch-blocks/commit/c48564ee7d5b0cf82e72a628b9d713f494fb47d3))
|
|
616
|
-
|
|
617
|
-
## [1.1.21](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.20...v1.1.21) (2024-02-29)
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
### Bug Fixes
|
|
621
|
-
|
|
622
|
-
* **deps:** lock file maintenance ([228168f](https://github.com/scratchfoundation/scratch-blocks/commit/228168fcab49371358ae1debc1fd3ddb320f10e9))
|
|
623
|
-
|
|
624
|
-
## [1.1.20](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.19...v1.1.20) (2024-02-29)
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
### Bug Fixes
|
|
628
|
-
|
|
629
|
-
* **deps:** lock file maintenance ([543230d](https://github.com/scratchfoundation/scratch-blocks/commit/543230d7318d37f798ea5499b70f0b5d95cb5172))
|
|
630
|
-
|
|
631
|
-
## [1.1.19](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.18...v1.1.19) (2024-02-29)
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
### Bug Fixes
|
|
635
|
-
|
|
636
|
-
* **deps:** lock file maintenance ([b0ae03e](https://github.com/scratchfoundation/scratch-blocks/commit/b0ae03eff1bb9dfe7eb8fda4f59eb1073ad3b534))
|
|
637
|
-
|
|
638
|
-
## [1.1.18](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.17...v1.1.18) (2024-02-28)
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
### Bug Fixes
|
|
642
|
-
|
|
643
|
-
* **deps:** lock file maintenance ([b437c51](https://github.com/scratchfoundation/scratch-blocks/commit/b437c5142d42fd0847244d391200f9bcf69e21b7))
|
|
644
|
-
|
|
645
|
-
## [1.1.17](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.16...v1.1.17) (2024-02-28)
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
### Bug Fixes
|
|
649
|
-
|
|
650
|
-
* **deps:** lock file maintenance ([f031c32](https://github.com/scratchfoundation/scratch-blocks/commit/f031c3240bba9eeb52ace611c41716bb937a88cd))
|
|
651
|
-
|
|
652
|
-
## [1.1.16](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.15...v1.1.16) (2024-02-28)
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
### Bug Fixes
|
|
656
|
-
|
|
657
|
-
* **deps:** lock file maintenance ([8924c1b](https://github.com/scratchfoundation/scratch-blocks/commit/8924c1b5ef3a86f581d2b21847c5417409f45899))
|
|
658
|
-
|
|
659
|
-
## [1.1.15](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.14...v1.1.15) (2024-02-27)
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
### Bug Fixes
|
|
663
|
-
|
|
664
|
-
* **deps:** lock file maintenance ([e4940b1](https://github.com/scratchfoundation/scratch-blocks/commit/e4940b146c0238046e566e6674cb7a2b871e2cc9))
|
|
665
|
-
|
|
666
|
-
## [1.1.14](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.13...v1.1.14) (2024-02-27)
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
### Bug Fixes
|
|
670
|
-
|
|
671
|
-
* **deps:** lock file maintenance ([aa192d0](https://github.com/scratchfoundation/scratch-blocks/commit/aa192d069a428fda1181a6b2a50be351d1cf1c11))
|
|
672
|
-
|
|
673
|
-
## [1.1.13](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.12...v1.1.13) (2024-02-27)
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
### Bug Fixes
|
|
677
|
-
|
|
678
|
-
* **deps:** lock file maintenance ([c35a09d](https://github.com/scratchfoundation/scratch-blocks/commit/c35a09d10414ba49b29f3d755b309d59f447d9bd))
|
|
679
|
-
|
|
680
|
-
## [1.1.12](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.11...v1.1.12) (2024-02-26)
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
### Bug Fixes
|
|
684
|
-
|
|
685
|
-
* **deps:** lock file maintenance ([7c349ee](https://github.com/scratchfoundation/scratch-blocks/commit/7c349ee518d4ca1e251ec55aa4e05f636af8e4e0))
|
|
686
|
-
|
|
687
|
-
## [1.1.11](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.10...v1.1.11) (2024-02-24)
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
### Bug Fixes
|
|
691
|
-
|
|
692
|
-
* **deps:** update dependency scratch-semantic-release-config to v1.0.14 ([b0709fc](https://github.com/scratchfoundation/scratch-blocks/commit/b0709fc3130dc9b5e23b1ed384f1391bb3d80f1d))
|
|
693
|
-
|
|
694
|
-
## [1.1.10](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.9...v1.1.10) (2024-02-22)
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
### Bug Fixes
|
|
698
|
-
|
|
699
|
-
* **deps:** update dependency scratch-semantic-release-config to v1.0.13 ([25a7ca5](https://github.com/scratchfoundation/scratch-blocks/commit/25a7ca56f233cd36efc46beeb3d5c60d01b57df2))
|
|
700
|
-
|
|
701
|
-
## [1.1.9](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.8...v1.1.9) (2024-02-22)
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
### Bug Fixes
|
|
705
|
-
|
|
706
|
-
* **deps:** update dependency scratch-semantic-release-config to v1.0.12 ([a87625c](https://github.com/scratchfoundation/scratch-blocks/commit/a87625ca6dc8a31dc0902eedb9c6f1d93bb48853))
|
|
707
|
-
|
|
708
|
-
## [1.1.8](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.7...v1.1.8) (2024-02-21)
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
### Bug Fixes
|
|
712
|
-
|
|
713
|
-
* **deps:** update dependency scratch-semantic-release-config to v1.0.11 ([ab737b5](https://github.com/scratchfoundation/scratch-blocks/commit/ab737b55ed179763da5c27a1595a68d7c65f23de))
|
|
714
|
-
|
|
715
|
-
## [1.1.7](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.6...v1.1.7) (2024-02-21)
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
### Bug Fixes
|
|
719
|
-
|
|
720
|
-
* **deps:** lock file maintenance ([20bd685](https://github.com/scratchfoundation/scratch-blocks/commit/20bd6853f592e88bae339f807ead8585a1374e7d))
|
|
721
|
-
|
|
722
|
-
## [1.1.6](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.5...v1.1.6) (2024-02-17)
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
### Bug Fixes
|
|
726
|
-
|
|
727
|
-
* **deps:** assume chromedriver is already installed ([6a47475](https://github.com/scratchfoundation/scratch-blocks/commit/6a47475cffc1f60c022914a19ff4ad7446daadf5))
|
|
728
|
-
|
|
729
|
-
## [1.1.5](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.4...v1.1.5) (2024-02-16)
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
### Bug Fixes
|
|
733
|
-
|
|
734
|
-
* **deps:** update dependency chromedriver to v121 ([0d86797](https://github.com/scratchfoundation/scratch-blocks/commit/0d86797d024e3a690386b86462405a94cd4e0b38))
|
|
735
|
-
|
|
736
|
-
## [1.1.4](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.3...v1.1.4) (2024-02-16)
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
### Bug Fixes
|
|
740
|
-
|
|
741
|
-
* **deps:** update dependency chromedriver to v119 [security] ([b3c991a](https://github.com/scratchfoundation/scratch-blocks/commit/b3c991a6ddc4b028569bdc372ce337e4e4af1c34))
|
|
742
|
-
|
|
743
|
-
## [1.1.3](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.2...v1.1.3) (2024-02-16)
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
### Bug Fixes
|
|
747
|
-
|
|
748
|
-
* **deps:** unpin non-dev dependencies ([e2bea99](https://github.com/scratchfoundation/scratch-blocks/commit/e2bea99cb64d28c310821d9ad53751895c9d1832))
|
|
749
|
-
|
|
750
|
-
## [1.1.2](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.1...v1.1.2) (2024-01-29)
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
### Bug Fixes
|
|
754
|
-
|
|
755
|
-
* **deps:** update dependency scratch-l10n to v3.18.3 ([d3bc30e](https://github.com/scratchfoundation/scratch-blocks/commit/d3bc30eb580dd02cdd58285416a81186bd2997ce))
|
|
756
|
-
|
|
757
|
-
## [1.1.1](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.0...v1.1.1) (2024-01-25)
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
### Bug Fixes
|
|
761
|
-
|
|
762
|
-
* **deps:** update dependency scratch-l10n to v3.18.1 ([4d3bf95](https://github.com/scratchfoundation/scratch-blocks/commit/4d3bf95a4aecf5992a094fe125532f4b6022bca0))
|
|
763
|
-
|
|
764
|
-
# [1.1.0](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.8...v1.1.0) (2024-01-17)
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
### Features
|
|
768
|
-
|
|
769
|
-
* **deps:** update dependency scratch-l10n to v3.18.0 ([5c8304d](https://github.com/scratchfoundation/scratch-blocks/commit/5c8304d81cb31dbe3b59023fb06590ec37de6d94))
|
|
770
|
-
|
|
771
|
-
## [1.0.8](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.7...v1.0.8) (2024-01-16)
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
### Bug Fixes
|
|
775
|
-
|
|
776
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240116031928 ([e3c6fe1](https://github.com/scratchfoundation/scratch-blocks/commit/e3c6fe18ec6c4250bc1c8679fde3bacc0d3af62c))
|
|
777
|
-
|
|
778
|
-
## [1.0.7](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.6...v1.0.7) (2024-01-14)
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
### Bug Fixes
|
|
782
|
-
|
|
783
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240114031932 ([df6c380](https://github.com/scratchfoundation/scratch-blocks/commit/df6c3804158a630bce78859ea5f2565417ece810))
|
|
784
|
-
|
|
785
|
-
## [1.0.6](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.5...v1.0.6) (2024-01-13)
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
### Bug Fixes
|
|
789
|
-
|
|
790
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240113031958 ([4b6048b](https://github.com/scratchfoundation/scratch-blocks/commit/4b6048ba5682140fd549cc3d8c8601fbc251a9ea))
|
|
791
|
-
|
|
792
|
-
## [1.0.5](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.4...v1.0.5) (2024-01-12)
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
### Bug Fixes
|
|
796
|
-
|
|
797
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240112032057 ([f80c469](https://github.com/scratchfoundation/scratch-blocks/commit/f80c469d46fefdcc30cf546adc9263d57f3a8181))
|
|
798
|
-
|
|
799
|
-
## [1.0.4](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.3...v1.0.4) (2024-01-12)
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
### Bug Fixes
|
|
803
|
-
|
|
804
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240111233500 ([f1066fb](https://github.com/scratchfoundation/scratch-blocks/commit/f1066fb787aac24348d85c25f3bed339267b4f15))
|
|
805
|
-
|
|
806
|
-
## [1.0.3](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.2...v1.0.3) (2024-01-11)
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
### Bug Fixes
|
|
810
|
-
|
|
811
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240111031939 ([31cea0c](https://github.com/scratchfoundation/scratch-blocks/commit/31cea0c45e2200f65e64e3852927d8e1e0212ce8))
|
|
812
|
-
|
|
813
|
-
## [1.0.2](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.1...v1.0.2) (2024-01-10)
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
### Bug Fixes
|
|
817
|
-
|
|
818
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240110032113 ([769bbc3](https://github.com/scratchfoundation/scratch-blocks/commit/769bbc3e316f62c583ad14625b89a54e51581c7f))
|
|
819
|
-
|
|
820
|
-
## [1.0.1](https://github.com/scratchfoundation/scratch-blocks/compare/v1.0.0...v1.0.1) (2024-01-09)
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
### Bug Fixes
|
|
824
|
-
|
|
825
|
-
* **deps:** update dependency scratch-l10n to v3.16.20240109031949 ([dc75c79](https://github.com/scratchfoundation/scratch-blocks/commit/dc75c79cdb89681c8f6bfbdc06d652ca4d94defc))
|
|
826
|
-
|
|
827
|
-
# 1.0.0 (2024-01-09)
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
### Bug Fixes
|
|
831
|
-
|
|
832
|
-
* **deps:** update dependency exports-loader to v0.7.0 ([68e7b2f](https://github.com/scratchfoundation/scratch-blocks/commit/68e7b2f5fee56d4f7c8761bba762c2e8e0f1f193))
|
|
833
|
-
* **deps:** update dependency imports-loader to v0.8.0 ([aad604f](https://github.com/scratchfoundation/scratch-blocks/commit/aad604f588af2fb1244b04a09647f7cf38714b89))
|
|
834
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210710031548 ([c31a264](https://github.com/scratchfoundation/scratch-blocks/commit/c31a264a5d07ea8521b57437a719d6a7cc3e6f9d))
|
|
835
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210711031507 ([6795efb](https://github.com/scratchfoundation/scratch-blocks/commit/6795efbf1ab14f1e065e009e5e12bd7abfe7a769))
|
|
836
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210712031609 ([d1d8f79](https://github.com/scratchfoundation/scratch-blocks/commit/d1d8f793dcaf8e6e23b98406a495fe68e606fb47))
|
|
837
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210713031546 ([93b97d1](https://github.com/scratchfoundation/scratch-blocks/commit/93b97d15637a2df8de01203af8a81543143db811))
|
|
838
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210714031604 ([ce97725](https://github.com/scratchfoundation/scratch-blocks/commit/ce97725eac315a041b9672ce1f32a979a514e1ff))
|
|
839
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210715031457 ([32db66b](https://github.com/scratchfoundation/scratch-blocks/commit/32db66b92cb59a28c70d583d92abe0ea2c69ffd0))
|
|
840
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210716031504 ([f677d13](https://github.com/scratchfoundation/scratch-blocks/commit/f677d13cd50bb7e08db7224d4100e1a3a813285f))
|
|
841
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210717031521 ([bec0b3c](https://github.com/scratchfoundation/scratch-blocks/commit/bec0b3c988689d46534faf6c43c13a02edf4faf8))
|
|
842
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210718031500 ([f82f6f7](https://github.com/scratchfoundation/scratch-blocks/commit/f82f6f7373ec9ceeb7f942aae35357298c4af6f1))
|
|
843
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210720031509 ([3e9b13f](https://github.com/scratchfoundation/scratch-blocks/commit/3e9b13f511df4e177b961a32730703e64d1428b0))
|
|
844
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210722031526 ([875a42d](https://github.com/scratchfoundation/scratch-blocks/commit/875a42d3ed455daa3a827525dcfb50d44339c778))
|
|
845
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210723031502 ([5f0c915](https://github.com/scratchfoundation/scratch-blocks/commit/5f0c91568045f13475693d4fa0be6c7fca9fc25b))
|
|
846
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210729031512 ([e5a6e3b](https://github.com/scratchfoundation/scratch-blocks/commit/e5a6e3b02c1a65eb2b9def60778a738937f6ac99))
|
|
847
|
-
* **deps:** update dependency scratch-l10n to v3.13.20210804031526 ([8cbf6e3](https://github.com/scratchfoundation/scratch-blocks/commit/8cbf6e33b5a47be9fe407918aef68ca3796b1ca6))
|
|
848
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210805134927 ([ca6f8ac](https://github.com/scratchfoundation/scratch-blocks/commit/ca6f8ac0f23872a7778c07660ce6d5996b0890b0))
|
|
849
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210806031538 ([74fdf60](https://github.com/scratchfoundation/scratch-blocks/commit/74fdf607bb0c74ea54ad3bd4881e558703852db8))
|
|
850
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210807031704 ([fc86c8a](https://github.com/scratchfoundation/scratch-blocks/commit/fc86c8a3e5381c38252ddba95b3f0faf953f12df))
|
|
851
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210808031521 ([a971d6f](https://github.com/scratchfoundation/scratch-blocks/commit/a971d6ff426279e53a31f446615eaf1a3de92bc3))
|
|
852
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210809031602 ([afe3cc0](https://github.com/scratchfoundation/scratch-blocks/commit/afe3cc089cfeda4524b2028ecb3d84a071c86d6f))
|
|
853
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210810031545 ([0acccf6](https://github.com/scratchfoundation/scratch-blocks/commit/0acccf6e79272f65b5d6c25f727817a687eb904d))
|
|
854
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210811031521 ([d26c615](https://github.com/scratchfoundation/scratch-blocks/commit/d26c6157b7012f970e356b79c1ec44c053e68578))
|
|
855
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210812031510 ([07e31d1](https://github.com/scratchfoundation/scratch-blocks/commit/07e31d1815f68b37f0b58e216d91dd4ea7153b61))
|
|
856
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210815031459 ([df17ee1](https://github.com/scratchfoundation/scratch-blocks/commit/df17ee1846b72498ed7608c8612b670e096020e9))
|
|
857
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210816031521 ([bc6fa80](https://github.com/scratchfoundation/scratch-blocks/commit/bc6fa8089724975218f8d149f9a8210a7bed57aa))
|
|
858
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210817031539 ([78115e7](https://github.com/scratchfoundation/scratch-blocks/commit/78115e78beb1598723ff97d0f89c8e5dc76b50bf))
|
|
859
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210817193707 ([f24ec6b](https://github.com/scratchfoundation/scratch-blocks/commit/f24ec6b0f84e72647659fec46bdcd7c04dcc0d93))
|
|
860
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210818031501 ([dbef67a](https://github.com/scratchfoundation/scratch-blocks/commit/dbef67a29e54f3338382c2534942f89cb2178439))
|
|
861
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210819031659 ([649cc86](https://github.com/scratchfoundation/scratch-blocks/commit/649cc86628fd9c011e3990a9ec5c93f5f6167c3e))
|
|
862
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210820031536 ([d1209f9](https://github.com/scratchfoundation/scratch-blocks/commit/d1209f9a4029e1195a5076c5b3f96d7a7e40ab6d))
|
|
863
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210821031719 ([acf1499](https://github.com/scratchfoundation/scratch-blocks/commit/acf149989d39faae5ef2374e660f214a15792bbc))
|
|
864
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210823031509 ([1b3b59c](https://github.com/scratchfoundation/scratch-blocks/commit/1b3b59c821dece2896953c047078a4e2c9015c46))
|
|
865
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210824031505 ([7aef13d](https://github.com/scratchfoundation/scratch-blocks/commit/7aef13d223b91589e27861fe978c5c357ced01ca))
|
|
866
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210825031502 ([238cf2c](https://github.com/scratchfoundation/scratch-blocks/commit/238cf2c99ab739d6be905254c8808a354b661f8f))
|
|
867
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210826031518 ([3f6f5b7](https://github.com/scratchfoundation/scratch-blocks/commit/3f6f5b713c3fdbae5bbb6607d1da40bf47a8c4a9))
|
|
868
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210827031535 ([cb8f3d7](https://github.com/scratchfoundation/scratch-blocks/commit/cb8f3d7fe0a77be6d287ee9b10914394b8d13e3e))
|
|
869
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210828031523 ([a7fdbad](https://github.com/scratchfoundation/scratch-blocks/commit/a7fdbad56e284611ac5cd3fb2df1fafe3741c121))
|
|
870
|
-
* **deps:** update dependency scratch-l10n to v3.14.20210829031508 ([5cd15d7](https://github.com/scratchfoundation/scratch-blocks/commit/5cd15d7be646f7df576835e5ea6a7f08bbba741f))
|
|
871
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211005031504 ([2350d70](https://github.com/scratchfoundation/scratch-blocks/commit/2350d7078ee549d2db3a28fd6f104fd2b40649ba))
|
|
872
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211006031531 ([91c5bbd](https://github.com/scratchfoundation/scratch-blocks/commit/91c5bbd69fbaf1dcdf1651f05b50ab9381d47588))
|
|
873
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211008031546 ([6ab69ce](https://github.com/scratchfoundation/scratch-blocks/commit/6ab69ce325aed0c945b168fd4f7625a00a842c6c))
|
|
874
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211009031514 ([8092e5e](https://github.com/scratchfoundation/scratch-blocks/commit/8092e5e428762b93166de6eee68fbc11bc37cbb8))
|
|
875
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211010031510 ([41e1d48](https://github.com/scratchfoundation/scratch-blocks/commit/41e1d4872c60b97f9c3dc88392a1eabaee9a4187))
|
|
876
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211011031532 ([0d0a2c9](https://github.com/scratchfoundation/scratch-blocks/commit/0d0a2c9d1fe1236379b8e3e961d22e5da10e3049))
|
|
877
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211013031511 ([83bb545](https://github.com/scratchfoundation/scratch-blocks/commit/83bb545ca988e79033f752bee34c6995fe45f8e4))
|
|
878
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211015031515 ([e96856d](https://github.com/scratchfoundation/scratch-blocks/commit/e96856dfd4049935dc4fcf5fabfea22ba051200b))
|
|
879
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211021031508 ([47048df](https://github.com/scratchfoundation/scratch-blocks/commit/47048dfadd439006ed387985b8668a544da7404a))
|
|
880
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211022031531 ([7d8ca78](https://github.com/scratchfoundation/scratch-blocks/commit/7d8ca78b8900467d0371025f9478e4e07969fd31))
|
|
881
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211023031545 ([ae80e61](https://github.com/scratchfoundation/scratch-blocks/commit/ae80e61d39052afcd8d3af08ab321d4ebd001833))
|
|
882
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211024031536 ([24ec562](https://github.com/scratchfoundation/scratch-blocks/commit/24ec562ee4d28420bf4f5128f2c6a16f4d78b43b))
|
|
883
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211025031602 ([8113551](https://github.com/scratchfoundation/scratch-blocks/commit/811355153724dbe1f0b3f917dda43392b9d03828))
|
|
884
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211026031553 ([9f9ef42](https://github.com/scratchfoundation/scratch-blocks/commit/9f9ef428180ef56be0f8aec1cb08b665ba0579d9))
|
|
885
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211027031612 ([898aed7](https://github.com/scratchfoundation/scratch-blocks/commit/898aed7e268a1f484ac25d79e906cc6789358adb))
|
|
886
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211028031720 ([d57230b](https://github.com/scratchfoundation/scratch-blocks/commit/d57230b89dd15a7bc763d6fbfa42053c01be96da))
|
|
887
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211029031547 ([07799dc](https://github.com/scratchfoundation/scratch-blocks/commit/07799dc8dd4bc76392d8f559e50c9c5571b0e938))
|
|
888
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211030031545 ([cfb83fe](https://github.com/scratchfoundation/scratch-blocks/commit/cfb83fee225c0978cc37429988ae102265828511))
|
|
889
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211031031546 ([5d9a153](https://github.com/scratchfoundation/scratch-blocks/commit/5d9a1538a7c69ffb72d53a6a91d81310af085c27))
|
|
890
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211101031546 ([6c0cf6c](https://github.com/scratchfoundation/scratch-blocks/commit/6c0cf6c5c455082f8dcd1a02d7038d74127449af))
|
|
891
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211102031622 ([93afcbf](https://github.com/scratchfoundation/scratch-blocks/commit/93afcbfbec6a95a335b4950317651c6d4068a701))
|
|
892
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211103031555 ([1740029](https://github.com/scratchfoundation/scratch-blocks/commit/1740029562f7797bcbabbbc2367412569664c4c2))
|
|
893
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211104031600 ([c22cb62](https://github.com/scratchfoundation/scratch-blocks/commit/c22cb6270416ec4b8ac88aee23b838b37d3ced57))
|
|
894
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211105031558 ([bc24002](https://github.com/scratchfoundation/scratch-blocks/commit/bc240024aedbf919bf1075329cbbd0d3c361e126))
|
|
895
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211106031621 ([7494fbd](https://github.com/scratchfoundation/scratch-blocks/commit/7494fbd161d53aa23a90140bf8676056d14901bb))
|
|
896
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211107031532 ([049c6a0](https://github.com/scratchfoundation/scratch-blocks/commit/049c6a08da6ed9d219762e138c6aca7734362b86))
|
|
897
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211108031543 ([69071b1](https://github.com/scratchfoundation/scratch-blocks/commit/69071b1d797a7bf4983575f8c3fb586f419fc164))
|
|
898
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211109031603 ([1098aca](https://github.com/scratchfoundation/scratch-blocks/commit/1098aca7ac0a091e1f665f94e153ec04d8bda330))
|
|
899
|
-
* **deps:** update dependency scratch-l10n to v3.14.20211110031601 ([e44f32f](https://github.com/scratchfoundation/scratch-blocks/commit/e44f32f1c978b5e45820b1b2f8531147e65f09d8))
|
|
900
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220216031536 ([ce0f898](https://github.com/scratchfoundation/scratch-blocks/commit/ce0f898060a0493d266f61750e1afbbbb13dd86d))
|
|
901
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220217031602 ([98fa174](https://github.com/scratchfoundation/scratch-blocks/commit/98fa1749901e35bcce5a8132330163bb0f436449))
|
|
902
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220219031526 ([4d2c607](https://github.com/scratchfoundation/scratch-blocks/commit/4d2c607a8e065cf26efcaa1ceaf1e49eb8ba2510))
|
|
903
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220220031518 ([0661d82](https://github.com/scratchfoundation/scratch-blocks/commit/0661d8234df9c8b5ec3f19f6e89302c6fe5e3ab4))
|
|
904
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220221031529 ([ce775f2](https://github.com/scratchfoundation/scratch-blocks/commit/ce775f260a183e9de29916abcc6d6cf54e6c141a))
|
|
905
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220222031456 ([c3e8013](https://github.com/scratchfoundation/scratch-blocks/commit/c3e8013b928a904885eb6e29f5db83a946483871))
|
|
906
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220223031520 ([3d6bfa6](https://github.com/scratchfoundation/scratch-blocks/commit/3d6bfa68d9370c7069a726269399c6e4fd6eee84))
|
|
907
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220226031536 ([4acb180](https://github.com/scratchfoundation/scratch-blocks/commit/4acb1806b8f459a5fbde52c34ef27e3c66176035))
|
|
908
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220227031514 ([942b2df](https://github.com/scratchfoundation/scratch-blocks/commit/942b2dfd07b6e0eb42493d10ed5cb44c6ee42cd1))
|
|
909
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220228031527 ([1d04e93](https://github.com/scratchfoundation/scratch-blocks/commit/1d04e932ac2f0af54b50ac79d574d546d206a655))
|
|
910
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220301031535 ([cd96f86](https://github.com/scratchfoundation/scratch-blocks/commit/cd96f8628eb5e01aaa1a20103a71d77bbd7535a7))
|
|
911
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220302031532 ([3dabae9](https://github.com/scratchfoundation/scratch-blocks/commit/3dabae9bbc73be9f103796d8fc0d6ed56d8d4580))
|
|
912
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220303031540 ([efb39d1](https://github.com/scratchfoundation/scratch-blocks/commit/efb39d16b5fa8350c42a136d369438f346e0c31a))
|
|
913
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220304031523 ([d5c0344](https://github.com/scratchfoundation/scratch-blocks/commit/d5c0344f83adbb57573bc21ece537689257f7bdf))
|
|
914
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220305031531 ([41c0188](https://github.com/scratchfoundation/scratch-blocks/commit/41c018885f112123416e4017602204e5be1b5cb1))
|
|
915
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220306031559 ([750d6d6](https://github.com/scratchfoundation/scratch-blocks/commit/750d6d66cc0b225ef797a15e19e936ce00f4a711))
|
|
916
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220307031535 ([32748bc](https://github.com/scratchfoundation/scratch-blocks/commit/32748bc70682bffc488e61179b06bd1d3bebfce4))
|
|
917
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220308031538 ([7b4436f](https://github.com/scratchfoundation/scratch-blocks/commit/7b4436fe2ccc3da689726ac2b714b128375071c5))
|
|
918
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220309031549 ([724a2f1](https://github.com/scratchfoundation/scratch-blocks/commit/724a2f18c5660ac4a4032c15276f5519f8101fdd))
|
|
919
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220310031603 ([a6d3001](https://github.com/scratchfoundation/scratch-blocks/commit/a6d3001b1ab92d39082544bcb783e2859091e131))
|
|
920
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220311031555 ([7fb5a3b](https://github.com/scratchfoundation/scratch-blocks/commit/7fb5a3bda2ab718628c7876d6c120e7f2963e112))
|
|
921
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220312031532 ([f3840c2](https://github.com/scratchfoundation/scratch-blocks/commit/f3840c24c7e458e0a545edded9ece8cab22f45d8))
|
|
922
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220313031543 ([9dd3add](https://github.com/scratchfoundation/scratch-blocks/commit/9dd3add8579264be52f89859ff848387dbccc99b))
|
|
923
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220314031535 ([bdd3720](https://github.com/scratchfoundation/scratch-blocks/commit/bdd37208a63eb876aba87457d9a1be64eb58a648))
|
|
924
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220315031541 ([f9dd301](https://github.com/scratchfoundation/scratch-blocks/commit/f9dd3015a71fe769cc483832800a2d748bb55af1))
|
|
925
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220316031548 ([7a80cb7](https://github.com/scratchfoundation/scratch-blocks/commit/7a80cb79540e1bf0728f2936f9023d153a6a92ad))
|
|
926
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220317031619 ([9be1515](https://github.com/scratchfoundation/scratch-blocks/commit/9be1515d9a931f91e69f9abce44d9fe4e23b48a4))
|
|
927
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220318031632 ([1fa4b63](https://github.com/scratchfoundation/scratch-blocks/commit/1fa4b63eebe57e16230263e74197202b23341930))
|
|
928
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220319031543 ([5144fc8](https://github.com/scratchfoundation/scratch-blocks/commit/5144fc8dd2ad8d253317888508843617186251eb))
|
|
929
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220320031543 ([bd2c93a](https://github.com/scratchfoundation/scratch-blocks/commit/bd2c93a901e3a842082e6faa4510b90d49000dac))
|
|
930
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220321031550 ([433e882](https://github.com/scratchfoundation/scratch-blocks/commit/433e8825fd6f5151abe892f39def8bb603236f46))
|
|
931
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220322031548 ([87013d3](https://github.com/scratchfoundation/scratch-blocks/commit/87013d3574d667ebfb48e6400f093b8a8d7226c7))
|
|
932
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220323031542 ([a6057e5](https://github.com/scratchfoundation/scratch-blocks/commit/a6057e5e5e212d9a3d9b0b532220983f31acb6e1))
|
|
933
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220324031549 ([3594b01](https://github.com/scratchfoundation/scratch-blocks/commit/3594b01439796acf236c383f6e7f3c8e71a2e765))
|
|
934
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220325031535 ([e3ae428](https://github.com/scratchfoundation/scratch-blocks/commit/e3ae42895b6453e0d49d58ba1498ee7f55e4be6c))
|
|
935
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220326031550 ([7d1b65b](https://github.com/scratchfoundation/scratch-blocks/commit/7d1b65b59168416e7787f36149316aeac2fb3d05))
|
|
936
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220327031555 ([4009d17](https://github.com/scratchfoundation/scratch-blocks/commit/4009d17818065ecef10ce0f38eece0eafddd8b46))
|
|
937
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220329031539 ([218f1ab](https://github.com/scratchfoundation/scratch-blocks/commit/218f1ab84d66b391d7d8b2d52126f941a7024e4c))
|
|
938
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220426031558 ([00d68f0](https://github.com/scratchfoundation/scratch-blocks/commit/00d68f0bc4fb453ef84ce48b76890d8c3d9ef9c2))
|
|
939
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220427031558 ([f25e878](https://github.com/scratchfoundation/scratch-blocks/commit/f25e878722223e4931e285bd3e2e1b9feb2581a8))
|
|
940
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220428031608 ([d69320d](https://github.com/scratchfoundation/scratch-blocks/commit/d69320dc5984c5eb4654bf45bd60fba11c8b49f1))
|
|
941
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220504031551 ([365cfb9](https://github.com/scratchfoundation/scratch-blocks/commit/365cfb981a76710c9eeb8a8bbe253a05d949ab1f))
|
|
942
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220505031611 ([d81055e](https://github.com/scratchfoundation/scratch-blocks/commit/d81055ed3b9af7780aec6223bcc761a8f51f766c))
|
|
943
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220506031605 ([15937bc](https://github.com/scratchfoundation/scratch-blocks/commit/15937bccf6cf3d596937d57c708768e3bb196723))
|
|
944
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220507031549 ([ac3be41](https://github.com/scratchfoundation/scratch-blocks/commit/ac3be41716c2a4ed0052d51bc50d8e1810bcf6ff))
|
|
945
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220510031559 ([83f011b](https://github.com/scratchfoundation/scratch-blocks/commit/83f011b3f1291ed24eaa4c86c27a7b72e3a30586))
|
|
946
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220511031550 ([5009199](https://github.com/scratchfoundation/scratch-blocks/commit/5009199315729fd852fafa50a4adaeee1fa0e365))
|
|
947
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220512031601 ([2e28b50](https://github.com/scratchfoundation/scratch-blocks/commit/2e28b50216683e27ac273e0ef4a8a11acb5de101))
|
|
948
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220513031553 ([7fde157](https://github.com/scratchfoundation/scratch-blocks/commit/7fde157f26bbcbdae704d4f35d553b376682734c))
|
|
949
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220514031546 ([2143903](https://github.com/scratchfoundation/scratch-blocks/commit/21439031a244674d6e00f6d70f8bc8ffed9428bd))
|
|
950
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220515031551 ([3e34ebb](https://github.com/scratchfoundation/scratch-blocks/commit/3e34ebb95e07e738d44f501b30fff52ad0fc78ea))
|
|
951
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220518031553 ([40c8b2b](https://github.com/scratchfoundation/scratch-blocks/commit/40c8b2b802c8b73087ef260a35ed7d41dd66178b))
|
|
952
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220519031627 ([44aa218](https://github.com/scratchfoundation/scratch-blocks/commit/44aa218e3f3a4deeaa01ec88b0af1a6be329e766))
|
|
953
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220520031604 ([a56083d](https://github.com/scratchfoundation/scratch-blocks/commit/a56083d9ff7d8ab9b727969d8b0452ed26dcf759))
|
|
954
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220521031617 ([9164ff6](https://github.com/scratchfoundation/scratch-blocks/commit/9164ff60ee2ca5800f5ae3c3b74326b550c5ba13))
|
|
955
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220522031547 ([4f9ed94](https://github.com/scratchfoundation/scratch-blocks/commit/4f9ed944d37eda9bf4e90f6f2dcafa5b91875275))
|
|
956
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220523031547 ([93798e9](https://github.com/scratchfoundation/scratch-blocks/commit/93798e91151cbf64b5ad399a373b1b4da13908a5))
|
|
957
|
-
* **deps:** update dependency scratch-l10n to v3.14.20220524031600 ([2a6a4f1](https://github.com/scratchfoundation/scratch-blocks/commit/2a6a4f1f2fa8258dddf8a4a405fcb8fde7f43e8c))
|
|
958
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220913031617 ([e18860d](https://github.com/scratchfoundation/scratch-blocks/commit/e18860df678bc76b0f0086d0d2906bbcb8c7cd03))
|
|
959
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220918031615 ([7aa33c4](https://github.com/scratchfoundation/scratch-blocks/commit/7aa33c4eccdebaa731b5078317e625dea56b6533))
|
|
960
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220919031702 ([e0f2829](https://github.com/scratchfoundation/scratch-blocks/commit/e0f2829d41c61fe22375c7fc2fef5c1fc0851cce))
|
|
961
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220920031622 ([ad4a2b2](https://github.com/scratchfoundation/scratch-blocks/commit/ad4a2b2674b602e5521886a7236ad27d80a825f0))
|
|
962
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220921031617 ([0991386](https://github.com/scratchfoundation/scratch-blocks/commit/0991386034bb83de9f6c798b2e4b0d320a85997e))
|
|
963
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220922031607 ([6fb6903](https://github.com/scratchfoundation/scratch-blocks/commit/6fb690337ceed59bb3796762cce4c4f66fb98bdd))
|
|
964
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220923031622 ([7ba1afb](https://github.com/scratchfoundation/scratch-blocks/commit/7ba1afb2088bcc5ceaa3c0e522dcd0314bcf42d8))
|
|
965
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220924031614 ([c639bd9](https://github.com/scratchfoundation/scratch-blocks/commit/c639bd943b938a6c314a9cfae357681a3cc1483f))
|
|
966
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220925031619 ([fc3c53a](https://github.com/scratchfoundation/scratch-blocks/commit/fc3c53a0aac76c60f77060e4efc6d823f9c40230))
|
|
967
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220926031626 ([79c5ae6](https://github.com/scratchfoundation/scratch-blocks/commit/79c5ae600da700eca70cb1cb73a644fc960f7ec4))
|
|
968
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220927031631 ([118925d](https://github.com/scratchfoundation/scratch-blocks/commit/118925d5d804e04a0cc38cbf7045fd4824d1a3d5))
|
|
969
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221003031620 ([977b702](https://github.com/scratchfoundation/scratch-blocks/commit/977b7026c84b4b55cd89e8fc5acbd038d463492c))
|
|
970
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221003143528 ([ef3c1a6](https://github.com/scratchfoundation/scratch-blocks/commit/ef3c1a626710bdc8ef1824d46ada24a8c1fbc4d2))
|
|
971
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221012165310 ([bcadd2c](https://github.com/scratchfoundation/scratch-blocks/commit/bcadd2c287ca70bbb5beb2e740d87e8d6156bf89))
|
|
972
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221013032144 ([e36c3fc](https://github.com/scratchfoundation/scratch-blocks/commit/e36c3fcb56ed5bb66cbb2c51fcb9c2e18b95152d))
|
|
973
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221014032124 ([e370670](https://github.com/scratchfoundation/scratch-blocks/commit/e3706709781311f63fe3619c5108bbb96993c10a))
|
|
974
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221016032111 ([1d7377b](https://github.com/scratchfoundation/scratch-blocks/commit/1d7377b93fb51d1ffba6f8d3ac3d603d4e59d9a6))
|
|
975
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221017032104 ([a72ab3d](https://github.com/scratchfoundation/scratch-blocks/commit/a72ab3d3d5c368b38955a750a40723c52ccee443))
|
|
976
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221018032102 ([174ef48](https://github.com/scratchfoundation/scratch-blocks/commit/174ef48cbecf97011eb6b2d5ea132456fe433f18))
|
|
977
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221019032108 ([70393df](https://github.com/scratchfoundation/scratch-blocks/commit/70393df90e9f7501efcafe76be2128d3479babcf))
|
|
978
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221020032056 ([68933a0](https://github.com/scratchfoundation/scratch-blocks/commit/68933a0f23e3c7c78a0179ddadfdb20bc93595be))
|
|
979
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221021032055 ([3840f68](https://github.com/scratchfoundation/scratch-blocks/commit/3840f6823320fa1480087b2a6dc7911c3b1e4d0d))
|
|
980
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221022032111 ([6f172c9](https://github.com/scratchfoundation/scratch-blocks/commit/6f172c982d0f780c6a691cd95ee1c469a984343a))
|
|
981
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221023032051 ([1b048ad](https://github.com/scratchfoundation/scratch-blocks/commit/1b048ad35a4c2555d60c8a23ac7f246aea9c1a41))
|
|
982
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221024032103 ([c4b5948](https://github.com/scratchfoundation/scratch-blocks/commit/c4b5948ec9e26a03afeef57a7a3b53cc9ef7cc7c))
|
|
983
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221121032214 ([72a38de](https://github.com/scratchfoundation/scratch-blocks/commit/72a38de8519676d47d316904db9b21dd383409a2))
|
|
984
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221124032258 ([b6c7d7c](https://github.com/scratchfoundation/scratch-blocks/commit/b6c7d7c3501113a3d8a3c8617d8cb01fa058e0c3))
|
|
985
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221125032232 ([4f1f179](https://github.com/scratchfoundation/scratch-blocks/commit/4f1f179dd0de9b1f1bc8d5583ea91a967f2952a2))
|
|
986
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221126032149 ([b1de52f](https://github.com/scratchfoundation/scratch-blocks/commit/b1de52f0500e8bd833f3bfa221d9de66f0552dca))
|
|
987
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221127032138 ([4b38169](https://github.com/scratchfoundation/scratch-blocks/commit/4b381699e2a4221be4c1da719c211c790d9987d9))
|
|
988
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221128032152 ([a109bb9](https://github.com/scratchfoundation/scratch-blocks/commit/a109bb943a679da326e273abe202675dc47b9368))
|
|
989
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221129032252 ([87e5f08](https://github.com/scratchfoundation/scratch-blocks/commit/87e5f0868d4a337fe4ccc31685e0e749b769298f))
|
|
990
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221201032213 ([b706997](https://github.com/scratchfoundation/scratch-blocks/commit/b7069973f886610b42941402feedf22d7035e723))
|
|
991
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221202190622 ([aab7dd0](https://github.com/scratchfoundation/scratch-blocks/commit/aab7dd008c2b90ad52602c4e4fae450d85065647))
|
|
992
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221203032121 ([ea21ea8](https://github.com/scratchfoundation/scratch-blocks/commit/ea21ea870ec223060f08520fd7448eb824861690))
|
|
993
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221204032109 ([5e8940a](https://github.com/scratchfoundation/scratch-blocks/commit/5e8940a451f732231c7570ff6fc6e3844ae9a786))
|
|
994
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221205032129 ([330022c](https://github.com/scratchfoundation/scratch-blocks/commit/330022c992f86c43c92d9844c52cfcdade0337d4))
|
|
995
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221206032123 ([2cff731](https://github.com/scratchfoundation/scratch-blocks/commit/2cff73164610b3568e871632723fbec4da85a373))
|
|
996
|
-
* **deps:** update dependency scratch-l10n to v3.15.20221207032110 ([8dd98e2](https://github.com/scratchfoundation/scratch-blocks/commit/8dd98e20e230e6d1db0a3c7cd7a63acd985167b6))
|
|
997
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230106220557 ([2e3e6ab](https://github.com/scratchfoundation/scratch-blocks/commit/2e3e6abcf38bd348cf87ab3409ec1d1c65057b8f))
|
|
998
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230107032059 ([5c46cd4](https://github.com/scratchfoundation/scratch-blocks/commit/5c46cd4a84ed90ee67127b976efd9b286c42743a))
|
|
999
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230108032105 ([3957f5f](https://github.com/scratchfoundation/scratch-blocks/commit/3957f5fc9ecbf470046a805017850916ea0a14d3))
|
|
1000
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230109032112 ([f30aba4](https://github.com/scratchfoundation/scratch-blocks/commit/f30aba4155311370838101404b375a0057099d87))
|
|
1001
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230110032123 ([72b56c1](https://github.com/scratchfoundation/scratch-blocks/commit/72b56c17681b7e2aa9f7d7beb62035046a40e7a6))
|
|
1002
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230112032116 ([260655c](https://github.com/scratchfoundation/scratch-blocks/commit/260655c961f3d84df5bded0bfeac1182e30a618c))
|
|
1003
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230113032113 ([494af2b](https://github.com/scratchfoundation/scratch-blocks/commit/494af2b7abf1e061e2e949991c3ad029ff033bbc))
|
|
1004
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230119032120 ([8048a07](https://github.com/scratchfoundation/scratch-blocks/commit/8048a07b1c5a99b84926a714f7c545f954ab9bf1))
|
|
1005
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230121032138 ([31332cb](https://github.com/scratchfoundation/scratch-blocks/commit/31332cbfe5e390d3061839b0419b118655ba0229))
|
|
1006
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230123032119 ([b1d720f](https://github.com/scratchfoundation/scratch-blocks/commit/b1d720fd071e28db7f7b7d94ef95d8d52f2db1fb))
|
|
1007
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230124032126 ([4eb203f](https://github.com/scratchfoundation/scratch-blocks/commit/4eb203f571923d76a78140fc9a25384507fae37f))
|
|
1008
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230125032128 ([08e82e0](https://github.com/scratchfoundation/scratch-blocks/commit/08e82e01bbf49ce4013ed5a4b017b8d89ad7c134))
|
|
1009
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230127032214 ([07e90de](https://github.com/scratchfoundation/scratch-blocks/commit/07e90dea00096ba0d27100aa69d25eb69d14d5ff))
|
|
1010
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230129032202 ([02077e2](https://github.com/scratchfoundation/scratch-blocks/commit/02077e24a2ffee5924f78d18e3ed82739f614c70))
|
|
1011
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230130032254 ([5b6d970](https://github.com/scratchfoundation/scratch-blocks/commit/5b6d970f98c22a69a17cc0ee7e001deab1eb5989))
|
|
1012
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230202032115 ([436c272](https://github.com/scratchfoundation/scratch-blocks/commit/436c272499fd921d2ac383d5232596993776e8d1))
|
|
1013
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230203032150 ([d1d7f46](https://github.com/scratchfoundation/scratch-blocks/commit/d1d7f46e375122bcc28de2b38bc665fffe33e845))
|
|
1014
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230205032115 ([7729db7](https://github.com/scratchfoundation/scratch-blocks/commit/7729db7acae8a2452b95bf92b04d6c072ef5bd6d))
|
|
1015
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230206032121 ([8984364](https://github.com/scratchfoundation/scratch-blocks/commit/8984364746fec1f5a83ea8e1a534273178216da1))
|
|
1016
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230209032429 ([dcb85d2](https://github.com/scratchfoundation/scratch-blocks/commit/dcb85d2e4385b35ea44675c557fa9d6c9b8ffb54))
|
|
1017
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230210032127 ([fa1f697](https://github.com/scratchfoundation/scratch-blocks/commit/fa1f6973d1f80babe3c901f79302a2f8a7cec8c5))
|
|
1018
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230212032126 ([b006a12](https://github.com/scratchfoundation/scratch-blocks/commit/b006a126ef7a1521068404ce1d83749cb0018c40))
|
|
1019
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230218032113 ([9911a04](https://github.com/scratchfoundation/scratch-blocks/commit/9911a0448ab1706298c44d6d67c629d61113cace))
|
|
1020
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230219032118 ([0c245ec](https://github.com/scratchfoundation/scratch-blocks/commit/0c245ec93ddaa11625d0fa5241c8a6618e059101))
|
|
1021
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230220032121 ([019e0cf](https://github.com/scratchfoundation/scratch-blocks/commit/019e0cfa75b612f13667664253cfd1c07144b9a4))
|
|
1022
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230221032128 ([91b027f](https://github.com/scratchfoundation/scratch-blocks/commit/91b027f6c91286337c8207138540164573356647))
|
|
1023
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230222032129 ([9edd939](https://github.com/scratchfoundation/scratch-blocks/commit/9edd93965cc5013a98390c119ba327629836cf7e))
|
|
1024
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230223032131 ([0f62ec5](https://github.com/scratchfoundation/scratch-blocks/commit/0f62ec5309e852a1e5148bb3b495d6a8834be5fb))
|
|
1025
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230227032200 ([2660d46](https://github.com/scratchfoundation/scratch-blocks/commit/2660d4652be25c6d735b877cee23749292660deb))
|
|
1026
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230228032200 ([eae6761](https://github.com/scratchfoundation/scratch-blocks/commit/eae6761fe559775ca4c12d7d853911e2c681f2fb))
|
|
1027
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230301032145 ([1f3632d](https://github.com/scratchfoundation/scratch-blocks/commit/1f3632df4885c1ff0e7215f9d9e420a153ca0fd2))
|
|
1028
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230302032139 ([4a068f2](https://github.com/scratchfoundation/scratch-blocks/commit/4a068f26b07cb13f47b2cadab65eb8751aa5ce81))
|
|
1029
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230305032139 ([56557af](https://github.com/scratchfoundation/scratch-blocks/commit/56557afb786b34d00d4ab32e3160109c597221dc))
|
|
1030
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230306032128 ([0c9b544](https://github.com/scratchfoundation/scratch-blocks/commit/0c9b544340a92cc01df9da11edabde5a24764620))
|
|
1031
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230307032151 ([bc2260f](https://github.com/scratchfoundation/scratch-blocks/commit/bc2260f5fcad504f07fe1dcb3b550bc5690c18d0))
|
|
1032
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230309032237 ([0ccc1c1](https://github.com/scratchfoundation/scratch-blocks/commit/0ccc1c11f21ee5524af3342020be05ac2f899e8c))
|
|
1033
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230310032126 ([f4f3ab8](https://github.com/scratchfoundation/scratch-blocks/commit/f4f3ab86b337fc48f69a3f5d818f70cf42d337f1))
|
|
1034
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230311032153 ([19ec0a1](https://github.com/scratchfoundation/scratch-blocks/commit/19ec0a17edaaf841eaace94af684cf9b3e5a4c83))
|
|
1035
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230312032149 ([aef4625](https://github.com/scratchfoundation/scratch-blocks/commit/aef46255b3abca4f7dec7ac98cb9249ea1aaf483))
|
|
1036
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230313032122 ([5d57207](https://github.com/scratchfoundation/scratch-blocks/commit/5d57207faaaea1bbfd4a7d629c305fb5f55ce619))
|
|
1037
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230314032131 ([ab98939](https://github.com/scratchfoundation/scratch-blocks/commit/ab98939c2e7d77f04b7e545d16081a50425c2c42))
|
|
1038
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230315034516 ([6c84333](https://github.com/scratchfoundation/scratch-blocks/commit/6c843339f83970146dd1675d304eb95ceec01104))
|
|
1039
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230318032145 ([b204a31](https://github.com/scratchfoundation/scratch-blocks/commit/b204a31dda9b91f5092ba7e77ae80b2d14bac956))
|
|
1040
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230319032127 ([775cbc2](https://github.com/scratchfoundation/scratch-blocks/commit/775cbc28ca1e7368285fac66d5b02d6b4bd4780e))
|
|
1041
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230320032138 ([00e83a6](https://github.com/scratchfoundation/scratch-blocks/commit/00e83a6ab2764bec47234b3fae44a2b522cabab7))
|
|
1042
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230321032123 ([d111503](https://github.com/scratchfoundation/scratch-blocks/commit/d111503b8ecae7dd233ede5591cc2bf8166b96c3))
|
|
1043
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230322032147 ([a2d97ae](https://github.com/scratchfoundation/scratch-blocks/commit/a2d97ae79c24736e954678379f91e09c1ffdb819))
|
|
1044
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230323032717 ([a5e485b](https://github.com/scratchfoundation/scratch-blocks/commit/a5e485ba1a0eafd13255e97e6dd20d5005fe48a0))
|
|
1045
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230324032109 ([1dddc70](https://github.com/scratchfoundation/scratch-blocks/commit/1dddc7041b4ec58c4f713a157da780ac5640e05b))
|
|
1046
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230326032128 ([26f6a36](https://github.com/scratchfoundation/scratch-blocks/commit/26f6a369dec30e73239fe909c637f4e25115b783))
|
|
1047
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230327032134 ([2ef0f06](https://github.com/scratchfoundation/scratch-blocks/commit/2ef0f06d319642fc45ca3ec3cae8b8c3335ee4b6))
|
|
1048
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230331032159 ([790184a](https://github.com/scratchfoundation/scratch-blocks/commit/790184a6e0f66953fdf53952a216ba7e748dab3d))
|
|
1049
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230402032141 ([2b282c3](https://github.com/scratchfoundation/scratch-blocks/commit/2b282c355fb7d1294e5573a3f6e64d2cd0c53b30))
|
|
1050
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230403032148 ([16c672a](https://github.com/scratchfoundation/scratch-blocks/commit/16c672a5fec704e8fc106fc43fbdca1c5be38cf8))
|
|
1051
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230404032203 ([400cf29](https://github.com/scratchfoundation/scratch-blocks/commit/400cf299da510bc71938e21aede05afcb0c032d1))
|
|
1052
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230405032124 ([ebefd4a](https://github.com/scratchfoundation/scratch-blocks/commit/ebefd4a2d69bb05f1ac14fbbf7578377dcc55a09))
|
|
1053
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230408032134 ([0f31684](https://github.com/scratchfoundation/scratch-blocks/commit/0f3168457a5d4319b952f09ac12caf8cb96ba9e4))
|
|
1054
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230409032113 ([3b620d9](https://github.com/scratchfoundation/scratch-blocks/commit/3b620d940efb1b6d215e261329ee955726f41b42))
|
|
1055
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230410032122 ([d9afafd](https://github.com/scratchfoundation/scratch-blocks/commit/d9afafd5544052c04bd9f541b66c4582859461fb))
|
|
1056
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230413032132 ([f06aad3](https://github.com/scratchfoundation/scratch-blocks/commit/f06aad372d7c8d65b2c3e2d9ad78fd5997c94b1c))
|
|
1057
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230418032127 ([6a17add](https://github.com/scratchfoundation/scratch-blocks/commit/6a17addd435e4c9ded206cc7713b36afe6071abc))
|
|
1058
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230420032228 ([242bcae](https://github.com/scratchfoundation/scratch-blocks/commit/242bcaef0809b085c745697285a3399ca782c88d))
|
|
1059
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230421032244 ([28a785d](https://github.com/scratchfoundation/scratch-blocks/commit/28a785daa19a1e76b3b7a9430e85a04b247d4195))
|
|
1060
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230422032237 ([5c2ffc1](https://github.com/scratchfoundation/scratch-blocks/commit/5c2ffc10bff17c6ef4c6470df7388cdd50a26d1e))
|
|
1061
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230427032156 ([1ad33ea](https://github.com/scratchfoundation/scratch-blocks/commit/1ad33ea109f9b3f34f5d7aa529dcc828573834f9))
|
|
1062
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230503032153 ([8c3af44](https://github.com/scratchfoundation/scratch-blocks/commit/8c3af44cb196731a1f3c276cfc248c6337e32bdb))
|
|
1063
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230507032520 ([6dff4b9](https://github.com/scratchfoundation/scratch-blocks/commit/6dff4b9a4f841001d6178df7f983b0ef2a91f5e0))
|
|
1064
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230510032150 ([7521c8f](https://github.com/scratchfoundation/scratch-blocks/commit/7521c8f4358c9d1ca5a31f43e1b87dfa04b42c17))
|
|
1065
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230513032248 ([b167fba](https://github.com/scratchfoundation/scratch-blocks/commit/b167fbacd06e49ac120c0835c68a448d6dd270f6))
|
|
1066
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230514032149 ([ba8e9ce](https://github.com/scratchfoundation/scratch-blocks/commit/ba8e9ce9a69b526e824ea179ba5d4e9c1f6057d0))
|
|
1067
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230515032159 ([737c461](https://github.com/scratchfoundation/scratch-blocks/commit/737c461a51412ce5fa6d974681846a945b5456bd))
|
|
1068
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230516032248 ([b01a4e8](https://github.com/scratchfoundation/scratch-blocks/commit/b01a4e8be08ec22cb84d081616ace055f9552bc0))
|
|
1069
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230518032217 ([de06900](https://github.com/scratchfoundation/scratch-blocks/commit/de06900ab6c3bceae6711f0045175246ae6b8fab))
|
|
1070
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230519032230 ([02e1026](https://github.com/scratchfoundation/scratch-blocks/commit/02e1026b2ae4086518f7d21c4d800daacb9a1230))
|
|
1071
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230520032146 ([9f3727c](https://github.com/scratchfoundation/scratch-blocks/commit/9f3727cd586b2fb6a1a53ae2f298dbc03f53a616))
|
|
1072
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230521032145 ([daff18e](https://github.com/scratchfoundation/scratch-blocks/commit/daff18e27de1f1e517f519737f01a4fe7141acc3))
|
|
1073
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230523032203 ([ad11178](https://github.com/scratchfoundation/scratch-blocks/commit/ad11178b01f500cef896f424645cf49813164b1e))
|
|
1074
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230524032205 ([f2185ab](https://github.com/scratchfoundation/scratch-blocks/commit/f2185abe6c0a28cc6661cbc24e04e943cdc64f15))
|
|
1075
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230526032224 ([c0da0b0](https://github.com/scratchfoundation/scratch-blocks/commit/c0da0b0517cd755a8f30d14816482774372f43ba))
|
|
1076
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230527032201 ([9e518c3](https://github.com/scratchfoundation/scratch-blocks/commit/9e518c3557391b98b9a93671648e245c3182745e))
|
|
1077
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230620032154 ([5782b00](https://github.com/scratchfoundation/scratch-blocks/commit/5782b008a833ec56b8c15a85399219bb99363635))
|
|
1078
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230621032221 ([3952920](https://github.com/scratchfoundation/scratch-blocks/commit/3952920ba63c27f8eceed4ca71d24d59c0644270))
|
|
1079
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230622032210 ([2489831](https://github.com/scratchfoundation/scratch-blocks/commit/24898316152f97df0f744c92f3cbef61f298e73d))
|
|
1080
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230623032228 ([6d1b4bf](https://github.com/scratchfoundation/scratch-blocks/commit/6d1b4bf3266b4ff212a42d4e1875d8c319a6a46e))
|
|
1081
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230626032211 ([355c8c2](https://github.com/scratchfoundation/scratch-blocks/commit/355c8c284f6250ec2b6f6c524be59f388af8946e))
|
|
1082
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230627032203 ([18e101c](https://github.com/scratchfoundation/scratch-blocks/commit/18e101c2c38cab0766505add1aadae245ff29655))
|
|
1083
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230628032227 ([13a9aa3](https://github.com/scratchfoundation/scratch-blocks/commit/13a9aa315f9a1018fc53e9f5c4b35749ca2da9c1))
|
|
1084
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230629032156 ([2770d44](https://github.com/scratchfoundation/scratch-blocks/commit/2770d44051d4b44ab3cd636b5a0086cd7529ea56))
|
|
1085
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230630032209 ([045b46d](https://github.com/scratchfoundation/scratch-blocks/commit/045b46d5722e6c17935234ee94690e3eefb87a07))
|
|
1086
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230701032155 ([04734c2](https://github.com/scratchfoundation/scratch-blocks/commit/04734c2ad206120620063632fe95edef63dd5db2))
|
|
1087
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230702032144 ([c35d671](https://github.com/scratchfoundation/scratch-blocks/commit/c35d671cb0fd2ebc2be32500bfe0fa5df7ff7141))
|
|
1088
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230703032155 ([07e4e08](https://github.com/scratchfoundation/scratch-blocks/commit/07e4e08bfc33a2acfaefbdd65afcb4ca8416bc91))
|
|
1089
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230704032156 ([54295f9](https://github.com/scratchfoundation/scratch-blocks/commit/54295f934f953affb8156b3258b2b53cbdb02d7d))
|
|
1090
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230706032213 ([2c4f568](https://github.com/scratchfoundation/scratch-blocks/commit/2c4f568b5efc9102e485218677f98006144044e1))
|
|
1091
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230707032150 ([f53707e](https://github.com/scratchfoundation/scratch-blocks/commit/f53707e71c7a5f68e344ee00e12b7adecc5dfffd))
|
|
1092
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230709032152 ([a5bf800](https://github.com/scratchfoundation/scratch-blocks/commit/a5bf80041a6452d9ecceaa8decd4909968fd4233))
|
|
1093
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230711032212 ([302cd95](https://github.com/scratchfoundation/scratch-blocks/commit/302cd9572b1f14a1cad54b43952616a1a0852506))
|
|
1094
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230712032154 ([162ec85](https://github.com/scratchfoundation/scratch-blocks/commit/162ec85022b5dbd2cbcab5ca96c3899fc47912fe))
|
|
1095
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230713032224 ([80b94a5](https://github.com/scratchfoundation/scratch-blocks/commit/80b94a5f38496c58194ba6350252dda39eb05b14))
|
|
1096
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230714032252 ([e6e17e9](https://github.com/scratchfoundation/scratch-blocks/commit/e6e17e9e63bfc3097c287ad1a74ed879f4d1c504))
|
|
1097
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230717032228 ([fa13947](https://github.com/scratchfoundation/scratch-blocks/commit/fa13947ed54678e79b7381d29d1b99b4ce94a408))
|
|
1098
|
-
* **deps:** update dependency scratch-l10n to v3.15.20230718032211 ([56d321c](https://github.com/scratchfoundation/scratch-blocks/commit/56d321cf641ba08874d6b8dc3209e64d9a016156))
|
|
1099
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230809032258 ([a60825e](https://github.com/scratchfoundation/scratch-blocks/commit/a60825e063b2ba464eb3e429eb031410d84c847d))
|
|
1100
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230811032222 ([d8b2e2f](https://github.com/scratchfoundation/scratch-blocks/commit/d8b2e2f8b6037c2a0a547327d2a3c79d11d99b3c))
|
|
1101
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230812032208 ([1ae2b30](https://github.com/scratchfoundation/scratch-blocks/commit/1ae2b30c9966bb2107d7f82afddb53399a9f2728))
|
|
1102
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230815032213 ([bb7494a](https://github.com/scratchfoundation/scratch-blocks/commit/bb7494add2826da81d21cd0c788fb1bfb008ea90))
|
|
1103
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230818032229 ([3c3400f](https://github.com/scratchfoundation/scratch-blocks/commit/3c3400f0a6b3aa75f60748238f9fd9bccfa8a539))
|
|
1104
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230823032242 ([b06a13c](https://github.com/scratchfoundation/scratch-blocks/commit/b06a13c96bcd99085f039472f0f46748c9c90c5e))
|
|
1105
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230827032235 ([10facf3](https://github.com/scratchfoundation/scratch-blocks/commit/10facf39d9cf2f330ca9878304861124f5374b62))
|
|
1106
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230828032247 ([1534d32](https://github.com/scratchfoundation/scratch-blocks/commit/1534d321790d1c760b4f1369fd97e1f707ceadf5))
|
|
1107
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230830032256 ([6ffedb3](https://github.com/scratchfoundation/scratch-blocks/commit/6ffedb3363861b1de7030fae98bb108e1f8b4142))
|
|
1108
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230902032236 ([40bb2a1](https://github.com/scratchfoundation/scratch-blocks/commit/40bb2a150e550e546d3cbff22a3042b3f50df964))
|
|
1109
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230909032442 ([aed1986](https://github.com/scratchfoundation/scratch-blocks/commit/aed1986f54aa1b5169f9c8699ce5e42274e26e72))
|
|
1110
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230914032225 ([07fa462](https://github.com/scratchfoundation/scratch-blocks/commit/07fa462ad5e6067ed4ae9f1bc5e041839eb99b86))
|
|
1111
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230915032152 ([3d9519a](https://github.com/scratchfoundation/scratch-blocks/commit/3d9519a8e3b032d6573ad13dde02735e74eb7b73))
|
|
1112
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230916032206 ([d91853a](https://github.com/scratchfoundation/scratch-blocks/commit/d91853ac7232e77086e6014d27ea75554e91ac7c))
|
|
1113
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230917032211 ([f46b72e](https://github.com/scratchfoundation/scratch-blocks/commit/f46b72e6cb35d13455ac0ea1df630b78e3bbabef))
|
|
1114
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230918032214 ([24e2fbc](https://github.com/scratchfoundation/scratch-blocks/commit/24e2fbc3d3a051b0ac0411b6a903e36ffcc0dfb6))
|
|
1115
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230919032227 ([ab13ac4](https://github.com/scratchfoundation/scratch-blocks/commit/ab13ac46dca33e43d8599a9e7dc968eeaf73151c))
|
|
1116
|
-
* **deps:** update dependency scratch-l10n to v3.16.20230929032140 ([e3815e9](https://github.com/scratchfoundation/scratch-blocks/commit/e3815e9bd794ab23bb52f6eb5a75b19d667b050c))
|
|
1117
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231003032155 ([500563b](https://github.com/scratchfoundation/scratch-blocks/commit/500563b54a2353f9bd22795c09d7da6e12328892))
|
|
1118
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231006032155 ([2609a5b](https://github.com/scratchfoundation/scratch-blocks/commit/2609a5b54859c5589901724610be3f3d3ce96a67))
|
|
1119
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231007032752 ([4a8d4a4](https://github.com/scratchfoundation/scratch-blocks/commit/4a8d4a4c3d0e38b782a2fcfc519b312bdeaf8b87))
|
|
1120
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231008032147 ([3c56fc3](https://github.com/scratchfoundation/scratch-blocks/commit/3c56fc315b8ef4f408c8d16f016ff8e90cbb4ced))
|
|
1121
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231009032206 ([e984963](https://github.com/scratchfoundation/scratch-blocks/commit/e984963cdf4e081e23ccf6f032a5677b93dc2e0a))
|
|
1122
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231010032152 ([2557e39](https://github.com/scratchfoundation/scratch-blocks/commit/2557e3918a8cfc5a8312ee2e9ea0262093e1ca7c))
|
|
1123
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231011032153 ([9628074](https://github.com/scratchfoundation/scratch-blocks/commit/96280748314f046fd733615db6515b2b6762056e))
|
|
1124
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231012032159 ([60f8930](https://github.com/scratchfoundation/scratch-blocks/commit/60f8930b588f74059b739df444b68b37f2c9420a))
|
|
1125
|
-
* **deps:** update dependency scratch-l10n to v3.16.20231013034330 ([837b74b](https://github.com/scratchfoundation/scratch-blocks/commit/837b74bdc060ae0d44840064a20da2815ffa638f))
|
|
1126
|
-
* https://github.com/google/blockly/issues/161 ([575b712](https://github.com/scratchfoundation/scratch-blocks/commit/575b71246250d49c467ced08f4888fd72eae3ab2))
|
|
1127
|
-
* **test:** bump chromedriver to get unit tests working again ([2fca737](https://github.com/scratchfoundation/scratch-blocks/commit/2fca73769178c64c21352428f80007e9e7d7154d))
|
|
1128
|
-
* **test:** fix tests on Travis by disabling Chrome sandbox on Linux CI ([09bbaeb](https://github.com/scratchfoundation/scratch-blocks/commit/09bbaeb39bfaa25f60b8825cef7db5527f05c474))
|
|
1129
|
-
* **test:** quit Selenium session after tests ([3c295ff](https://github.com/scratchfoundation/scratch-blocks/commit/3c295ffb6879f4a7da9a98ce7e3a27b1aab74337))
|
|
1130
|
-
* **test:** treat failure to launch tests as a test failure ([f60c519](https://github.com/scratchfoundation/scratch-blocks/commit/f60c5195ef07302df3769e47c39444ba5794a8d2))
|
|
1131
|
-
* unit tests were using strict equality testing for numeric results. Modified to check for 15 decimals of precision. Now the exp unit test passes. ([38c5766](https://github.com/scratchfoundation/scratch-blocks/commit/38c576620bf59a229b3c436f4a9a8c482e9e1426))
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
### Features
|
|
1135
|
-
|
|
1136
|
-
* (try to) add 'random position' dropdown in 'point towards' ([bf91929](https://github.com/scratchfoundation/scratch-blocks/commit/bf91929a6afdc78151d12b7b5b736e14adc60898))
|
|
1137
|
-
* add hindi, update translations ([5160e44](https://github.com/scratchfoundation/scratch-blocks/commit/5160e446ba22a7a1e9c329aa446ab7e4dccac510))
|
|
1138
|
-
* add quaternary color for selected dropdowns ([ffcd546](https://github.com/scratchfoundation/scratch-blocks/commit/ffcd546474ee8e2790be01b97f0a9b23d74c8653))
|
|
1139
|
-
* block text color with stylesheet reloading ([5258e78](https://github.com/scratchfoundation/scratch-blocks/commit/5258e785c1c3037fd94c7a01b493e7da1d200e2c))
|
|
1140
|
-
* **deps:** update dependency scratch-l10n to v3.15.20220911031603 ([839f299](https://github.com/scratchfoundation/scratch-blocks/commit/839f299af5cc3abb0047bcd0199198b6fdf4d95c))
|
|
1141
|
-
* pull messages for new languages ([03d50cf](https://github.com/scratchfoundation/scratch-blocks/commit/03d50cf5803653f614b4f98ff88a8a7b88c17b9d))
|
|
1142
|
-
* rename color properties for input text and text ([46e92fb](https://github.com/scratchfoundation/scratch-blocks/commit/46e92fbbfcbad60979f233ffafa4e8d16e8b9603))
|
|
1143
|
-
* use transifex v3 api to pull translations ([c05b28b](https://github.com/scratchfoundation/scratch-blocks/commit/c05b28b972f7e8a69fcc4e909efa56d3fa869857))
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
### Reverts
|
|
1147
|
-
|
|
1148
|
-
* Revert "Implement Blockly.Events.filter in linear time (#1205)" ([8263afc](https://github.com/scratchfoundation/scratch-blocks/commit/8263afcba57a6a637f8da0a173a910d5eae933be)), closes [#1205](https://github.com/scratchfoundation/scratch-blocks/issues/1205)
|
|
1149
|
-
* Revert "add back set checkbox state" ([5231bdb](https://github.com/scratchfoundation/scratch-blocks/commit/5231bdb04323196251a891d251ab0f395c0048ed))
|
|
1150
|
-
* Revert "Use extensions to share color and shape between some blocks (#938)" (#947) ([09dc7c1](https://github.com/scratchfoundation/scratch-blocks/commit/09dc7c1b54c42fa4ba7afe0aae71766c5251e639)), closes [#938](https://github.com/scratchfoundation/scratch-blocks/issues/938) [#947](https://github.com/scratchfoundation/scratch-blocks/issues/947)
|
|
1151
|
-
* Revert "Make it one if instead of two" ([ba74d89](https://github.com/scratchfoundation/scratch-blocks/commit/ba74d8912c02c11442d78982d089e05eb5e93ff6))
|
|
1152
|
-
* Revert "Set git committer single-use vars" ([279fb63](https://github.com/scratchfoundation/scratch-blocks/commit/279fb6331a3f93fb91d97885c25236b92afea823))
|
|
1153
|
-
* Revert "Revert "Rebuild nov 3 16"" ([b5822e2](https://github.com/scratchfoundation/scratch-blocks/commit/b5822e29250f0d5a1e7e91c57d14d8b0611e84fc))
|
|
1154
|
-
* Revert "Remove apparently unneeded scrub on procedures." ([591f6bf](https://github.com/scratchfoundation/scratch-blocks/commit/591f6bfe4caaf0fd7c7100539fb572c800263a0d))
|
|
1155
|
-
* Revert "Remove Blockly sounds from media" for demo ([ae6f634](https://github.com/scratchfoundation/scratch-blocks/commit/ae6f63412fd245a633acbf66e98bef622bfb4e2b))
|
|
1156
|
-
* Revert "Adding தமிழ்." ([5085ebf](https://github.com/scratchfoundation/scratch-blocks/commit/5085ebfb24e2f9707bf4689aa8c764894a0ef269))
|
|
1157
|
-
* Revert "De-singleton Blockly. Part 1." ([6d1df4d](https://github.com/scratchfoundation/scratch-blocks/commit/6d1df4dfb5cc8e225f861955d5eab655e87027cf))
|