Skip to content

Commit be2c313

Browse files
committed
Merge remote-tracking branch 'origin/develop' into backmerge/develop-into-membership
2 parents b265755 + 93c734b commit be2c313

File tree

23 files changed

+3241
-518
lines changed

23 files changed

+3241
-518
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.19.5
1+
20.19.6

TRADEMARK

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The Scratch trademarks, including the Scratch name, logo, the Scratch Cat, Gobo, Pico, Nano, Tera and Giga graphics (the "Marks"), are property of the Scratch Foundation. Marks may not be used to endorse or promote products derived from this software without specific prior written permission.

package-lock.json

Lines changed: 546 additions & 472 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"prepare": "husky install",
1818
"test": "npm test --workspaces",
1919
"refresh-gh-workflow": "ts-node scripts/build-gha-workflows.ts",
20+
"update-legal": "npm --workspaces exec -c 'rm -f ./{LICENSE,TRADEMARK} && cp -f ../../{LICENSE,TRADEMARK} .'",
2021
"version": "cross-env-shell ./scripts/npm-version.sh"
2122
},
2223
"config": {

packages/scratch-gui/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.19.5
1+
20.19.6

packages/scratch-gui/LICENSE

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/scratch-gui/LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

packages/scratch-gui/TRADEMARK

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
The Scratch trademarks, including the Scratch name, logo, the Scratch Cat, Gobo, Pico, Nano, Tera and Giga graphics (the "Marks"), are property of the Massachusetts Institute of Technology (MIT). Marks may not be used to endorse or promote products derived from this software without specific prior written permission.
1+
The Scratch trademarks, including the Scratch name, logo, the Scratch Cat, Gobo, Pico, Nano, Tera and Giga graphics (the "Marks"), are property of the Scratch Foundation. Marks may not be used to endorse or promote products derived from this software without specific prior written permission.

packages/scratch-gui/package.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
},
3636
"files": [
3737
"dist",
38-
"src"
38+
"src",
39+
"LICENSE",
40+
"TRADEMARK"
3941
],
4042
"scripts": {
4143
"build": "npm run clean && npm run build:dev && npm run build:dist && npm run build:dist-standalone",
@@ -78,7 +80,7 @@
7880
"core-js": "2.6.12",
7981
"css-loader": "5.2.7",
8082
"dapjs": "2.3.0",
81-
"driver.js": "1.3.6",
83+
"driver.js": "1.4.0",
8284
"es6-object-assign": "1.1.0",
8385
"fastestsmallesttextencoderdecoder": "1.0.22",
8486
"get-float-time-domain-data": "0.1.0",
@@ -116,8 +118,8 @@
116118
"redux-throttle": "0.1.1",
117119
"scratch-audio": "2.0.268",
118120
"scratch-blocks": "1.3.0",
119-
"scratch-l10n": "6.1.25",
120-
"scratch-paint": "4.1.19",
121+
"scratch-l10n": "6.1.30",
122+
"scratch-paint": "4.1.24",
121123
"scratch-render-fonts": "1.0.252",
122124
"scratch-storage": "5.0.10",
123125
"startaudiocontext": "1.2.1",
@@ -150,13 +152,13 @@
150152
"cheerio": "1.1.2",
151153
"cross-env": "7.0.3",
152154
"eslint": "9.39.1",
153-
"eslint-config-scratch": "12.0.31",
155+
"eslint-config-scratch": "12.0.38",
154156
"eslint-import-resolver-webpack": "0.13.10",
155157
"eslint-plugin-import": "2.32.0",
156158
"eslint-plugin-react": "7.37.5",
157159
"file-loader": "6.2.0",
158160
"gh-pages": "3.2.3",
159-
"html-webpack-plugin": "5.6.4",
161+
"html-webpack-plugin": "5.6.5",
160162
"jest": "29.7.0",
161163
"jest-environment-jsdom": "29.7.0",
162164
"jest-junit": "7.0.0",
@@ -174,7 +176,7 @@
174176
"ts-loader": "9.5.4",
175177
"url-loader": "4.1.1",
176178
"web-audio-test-api": "0.5.2",
177-
"webpack": "5.102.1",
179+
"webpack": "5.103.0",
178180
"webpack-cli": "5.1.4",
179181
"webpack-dev-server": "5.2.2",
180182
"yauzl": "3.2.0"

packages/scratch-gui/src/components/action-menu/action-menu.css

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,6 @@ button::-moz-focus-inner {
140140
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
141141
}
142142

143-
.tooltip:after {
144-
background-color: $extensions-primary;
145-
}
146-
147143
.coming-soon-tooltip {
148144
background-color: $data-primary !important;
149145
}
@@ -158,6 +154,7 @@ button::-moz-focus-inner {
158154
box-shadow: 0 0 .5rem hsla(0, 0%, 0%, .25) !important;
159155
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
160156
z-index: $z-index-tooltip !important;
157+
--tooltip-arrow-color: $extensions-primary;
161158
}
162159

163160
$arrow-size: 0.5rem;
@@ -197,4 +194,4 @@ $arrow-rounding: 0.125rem;
197194
margin-left: $arrow-inset !important;
198195
top: $arrow-inset !important;
199196
transform: rotate(-45deg) !important;
200-
}
197+
}

0 commit comments

Comments
 (0)