scratch-blocks 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.1.6](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.5...v1.1.6) (2024-02-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** assume chromedriver is already installed ([6a47475](https://github.com/scratchfoundation/scratch-blocks/commit/6a47475cffc1f60c022914a19ff4ad7446daadf5))
12
+
13
+ ## [1.1.5](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.4...v1.1.5) (2024-02-16)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **deps:** update dependency chromedriver to v121 ([0d86797](https://github.com/scratchfoundation/scratch-blocks/commit/0d86797d024e3a690386b86462405a94cd4e0b38))
19
+
6
20
  ## [1.1.4](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.3...v1.1.4) (2024-02-16)
7
21
 
8
22
 
package/README.md CHANGED
@@ -1,24 +1,45 @@
1
1
  # scratch-blocks
2
- #### Scratch Blocks is a library for building creative computing interfaces.
2
+
3
+ Scratch Blocks is a library for building creative computing interfaces.
4
+
3
5
  [![CircleCI](https://dl.circleci.com/status-badge/img/gh/LLK/scratch-blocks/tree/develop.svg?style=shield)](https://dl.circleci.com/status-badge/redirect/gh/LLK/scratch-blocks/tree/develop)
4
6
 
5
- ![](https://cloud.githubusercontent.com/assets/747641/15227351/c37c09da-1854-11e6-8dc7-9a298f2b1f01.jpg)
7
+ ![An image of Scratch Blocks running on a tablet](https://cloud.githubusercontent.com/assets/747641/15227351/c37c09da-1854-11e6-8dc7-9a298f2b1f01.jpg)
6
8
 
7
9
  ## Introduction
8
- Scratch Blocks is a fork of Google's [Blockly](https://github.com/google/blockly) project that provides a design specification and codebase for building creative computing interfaces. Together with the [Scratch Virtual Machine (VM)](https://github.com/LLK/scratch-vm) this codebase allows for the rapid design and development of visual programming interfaces. Unlike [Blockly](https://github.com/google/blockly), Scratch Blocks does not use [code generators](https://developers.google.com/blockly/guides/configure/web/code-generators), but rather leverages the [Scratch Virtual Machine](https://github.com/LLK/scratch-vm) to create highly dynamic, interactive programming environments.
10
+
11
+ Scratch Blocks is a fork of Google's [Blockly](https://github.com/google/blockly) project that provides a design
12
+ specification and codebase for building creative computing interfaces. Together with the [Scratch Virtual Machine
13
+ (VM)](https://github.com/LLK/scratch-vm) this codebase allows for the rapid design and development of visual
14
+ programming interfaces. Unlike [Blockly](https://github.com/google/blockly), Scratch Blocks does not use [code
15
+ generators](https://developers.google.com/blockly/guides/configure/web/code-generators), but rather leverages the
16
+ [Scratch Virtual Machine](https://github.com/LLK/scratch-vm) to create highly dynamic, interactive programming
17
+ environments.
9
18
 
10
19
  *This project is in active development and should be considered a "developer preview" at this time.*
11
20
 
12
21
  ## Two Types of Blocks
13
- ![](https://cloud.githubusercontent.com/assets/747641/15255731/dad4d028-190b-11e6-9c16-8df7445adc96.png)
14
22
 
15
- Scratch Blocks brings together two different programming "grammars" that the Scratch Team has designed and continued to refine over the past decade. The standard [Scratch](https://scratch.mit.edu) grammar uses blocks that snap together vertically, much like LEGO bricks. For our [ScratchJr](https://scratchjr.org) software, intended for younger children, we developed blocks that are labelled with icons rather than words, and snap together horizontally rather than vertically. We have found that the horizontal grammar is not only friendlier for beginning programmers but also better suited for devices with small screens.
23
+ ![A divided image showing horizontal blocks on the left and vertical blocks on the right](https://cloud.githubusercontent.com/assets/747641/15255731/dad4d028-190b-11e6-9c16-8df7445adc96.png)
24
+
25
+ Scratch Blocks brings together two different programming "grammars" that the Scratch Team has designed and continued
26
+ to refine over the past decade. The standard [Scratch](https://scratch.mit.edu) grammar uses blocks that snap together
27
+ vertically, much like LEGO bricks. For our [ScratchJr](https://scratchjr.org) software, intended for younger children,
28
+ we developed blocks that are labelled with icons rather than words, and snap together horizontally rather than
29
+ vertically. We have found that the horizontal grammar is not only friendlier for beginning programmers but also better
30
+ suited for devices with small screens.
16
31
 
17
32
  ## Documentation
18
- The "getting started" guide including [FAQ](https://scratch.mit.edu/developers#faq) and [design documentation](https://github.com/LLK/scratch-blocks/wiki/Design) can be found in the [wiki](https://github.com/LLK/scratch-blocks/wiki).
33
+
34
+ The "getting started" guide including [FAQ](https://scratch.mit.edu/developers#faq) and [design
35
+ documentation](https://github.com/LLK/scratch-blocks/wiki/Design) can be found in the
36
+ [wiki](https://github.com/LLK/scratch-blocks/wiki).
19
37
 
20
38
  ## Donate
21
- We provide [Scratch](https://scratch.mit.edu) free of charge, and want to keep it that way! Please consider making a [donation](https://secure.donationpay.org/scratchfoundation/) to support our continued engineering, design, community, and resource development efforts. Donations of any size are appreciated. Thank you!
39
+
40
+ We provide [Scratch](https://scratch.mit.edu) free of charge, and want to keep it that way! Please consider making a
41
+ [donation](https://secure.donationpay.org/scratchfoundation/) to support our continued engineering, design, community,
42
+ and resource development efforts. Donations of any size are appreciated. Thank you!
22
43
 
23
44
  ## Committing
24
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scratch-blocks",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "Scratch Blocks is a library for building creative computing interfaces.",
5
5
  "author": "Massachusetts Institute of Technology",
6
6
  "license": "Apache-2.0",
@@ -25,15 +25,14 @@
25
25
  "translate:update": "npm run translate:sync:src && npm run translate:sync:translations"
26
26
  },
27
27
  "dependencies": {
28
- "chromedriver": "^119.0.0",
29
28
  "exports-loader": "^0.7.0",
30
29
  "google-closure-library": "^20190301.0.0",
31
30
  "imports-loader": "^0.8.0",
32
31
  "scratch-l10n": "^3.18.3"
33
32
  },
34
33
  "devDependencies": {
35
- "@commitlint/cli": "18.6.0",
36
- "@commitlint/config-conventional": "18.6.0",
34
+ "@commitlint/cli": "17.8.1",
35
+ "@commitlint/config-conventional": "17.8.1",
37
36
  "async": "2.6.4",
38
37
  "copy-webpack-plugin": "4.6.0",
39
38
  "eslint": "4.19.1",