scratch-paint 2.2.19 → 2.2.20

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,13 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.2.20](https://github.com/scratchfoundation/scratch-paint/compare/v2.2.19...v2.2.20) (2024-02-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.14 ([#2348](https://github.com/scratchfoundation/scratch-paint/issues/2348)) ([1eef970](https://github.com/scratchfoundation/scratch-paint/commit/1eef9704fec916d73f960351849bd9fb20ea08f8))
12
+
6
13
  ## [2.2.19](https://github.com/LLK/scratch-paint/compare/v2.2.18...v2.2.19) (2024-02-23)
7
14
 
8
15
 
package/README.md CHANGED
@@ -31,7 +31,7 @@ For Ubuntu on Windows, the Windows install of nodejs may interfere with the Linu
31
31
  - PATH="/usr/bin:$PATH"
32
32
  ```
33
33
 
34
- If you want to edit scratch-paint, or help contribute to our open-source project, fork the [scratch-paint repo](https://github.com/LLK/scratch-paint). Then:
34
+ If you want to edit scratch-paint, or help contribute to our open-source project, fork the [scratch-paint repo](https://github.com/scratchfoundation/scratch-paint). Then:
35
35
  ```bash
36
36
  git clone https://github.com/<YOUR_GITHUB_USERNAME>/scratch-paint.git
37
37
  cd scratch-paint
@@ -56,7 +56,7 @@ So you've tried out your edits in the playground and they look good. You should
56
56
 
57
57
  Get the rest of Scratch:
58
58
  ```bash
59
- git clone https://github.com/LLK/scratch-gui.git
59
+ git clone https://github.com/scratchfoundation/scratch-gui.git
60
60
  ```
61
61
  Go to your `scratch-paint` folder and run:
62
62
  ```bash
@@ -124,7 +124,7 @@ combineReducers({
124
124
  ```
125
125
  Note that scratch-paint expects its state to be in `state.scratchPaint`, so the name must be exact.
126
126
 
127
- Scratch-paint shares state with its parent component because it expects to share the parent's `IntlProvider`, which inserts translations into the state. See the `IntlProvider` setup in `scratch-gui` [here](https://github.com/LLK/scratch-gui/blob/f017ed72201bf63334dced161441ef6f154b1c74/src/lib/app-state-hoc.jsx).
127
+ Scratch-paint shares state with its parent component because it expects to share the parent's `IntlProvider`, which inserts translations into the state. See the `IntlProvider` setup in `scratch-gui` [here](https://github.com/scratchfoundation/scratch-gui/blob/f017ed72201bf63334dced161441ef6f154b1c74/src/lib/app-state-hoc.jsx).
128
128
 
129
129
  ### Code organization
130
130
  We use React and Redux. If you're just getting started with them, here are some good tutorials:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scratch-paint",
3
- "version": "2.2.19",
3
+ "version": "2.2.20",
4
4
  "description": "Graphical User Interface for the Scratch 3.0 paint editor, which is used to make and edit sprites for use in projects.",
5
5
  "main": "./dist/scratch-paint.js",
6
6
  "browser": "./src/index.js",
@@ -17,10 +17,10 @@
17
17
  },
18
18
  "author": "Massachusetts Institute of Technology",
19
19
  "license": "BSD-3-Clause",
20
- "homepage": "https://github.com/LLK/scratch-paint#readme",
20
+ "homepage": "https://github.com/scratchfoundation/scratch-paint#readme",
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "https://github.com/LLK/scratch-paint.git"
23
+ "url": "https://github.com/scratchfoundation/scratch-paint.git"
24
24
  },
25
25
  "dependencies": {
26
26
  "@scratch/paper": "^0.11.20221201200345",
@@ -96,7 +96,7 @@
96
96
  "rimraf": "2.7.1",
97
97
  "scratch-l10n": "3.18.14",
98
98
  "scratch-render-fonts": "1.0.6",
99
- "scratch-semantic-release-config": "1.0.13",
99
+ "scratch-semantic-release-config": "1.0.14",
100
100
  "semantic-release": "19.0.5",
101
101
  "style-loader": "1.3.0",
102
102
  "svg-url-loader": "3.0.3",