Spaces:
Running
Running
Update src/lib/libraries/extensions/index.jsx
Browse files
src/lib/libraries/extensions/index.jsx
CHANGED
@@ -157,6 +157,11 @@ import pmControlsExpansionExtensionIcon from './penguinmod/extensions/controls_e
|
|
157 |
import pmSensingExpansionExtensionIcon from './penguinmod/extensions/sensing_expanded.png';
|
158 |
import pmOperatorsExpansionExtensionIcon from './penguinmod/extensions/operators_expanded.png';
|
159 |
|
|
|
|
|
|
|
|
|
|
|
160 |
// jg: default icon if you are too lazy to make one and you want me to make one instead lololololololol
|
161 |
// gsa: ololololololo
|
162 |
import defaultExtensionIcon from './penguinmod/extensions/placeholder.png';
|
@@ -167,6 +172,25 @@ const IsLocal = String(window.location.href).startsWith(`http://localhost:`);
|
|
167 |
const IsLiveTests = urlParams.has('livetests');
|
168 |
|
169 |
const menuItems = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
{
|
171 |
name: (
|
172 |
<FormattedMessage
|
|
|
157 |
import pmSensingExpansionExtensionIcon from './penguinmod/extensions/sensing_expanded.png';
|
158 |
import pmOperatorsExpansionExtensionIcon from './penguinmod/extensions/operators_expanded.png';
|
159 |
|
160 |
+
//handpose2scratch
|
161 |
+
import handpose2scratchIconURL from './handpose2scratch/handpose2scratch.png';
|
162 |
+
import handpose2scratchInsetIconURL from './handpose2scratch/handpose2scratch-small.png';
|
163 |
+
|
164 |
+
|
165 |
// jg: default icon if you are too lazy to make one and you want me to make one instead lololololololol
|
166 |
// gsa: ololololololo
|
167 |
import defaultExtensionIcon from './penguinmod/extensions/placeholder.png';
|
|
|
172 |
const IsLiveTests = urlParams.has('livetests');
|
173 |
|
174 |
const menuItems = [
|
175 |
+
{
|
176 |
+
name: 'Handpose2Scratch',
|
177 |
+
extensionId: 'handpose2scratch',
|
178 |
+
collaborator: 'champierre',
|
179 |
+
iconURL: handpose2scratchIconURL,
|
180 |
+
insetIconURL: handpose2scratchInsetIconURL,
|
181 |
+
description: (
|
182 |
+
<FormattedMessage
|
183 |
+
defaultMessage="HandPose2Scratch Blocks."
|
184 |
+
description="HandPose2Scratch Blocks."
|
185 |
+
id="gui.extension.handpose2scratchblocks.description"
|
186 |
+
/>
|
187 |
+
),
|
188 |
+
featured: true,
|
189 |
+
disabled: false,
|
190 |
+
internetConnectionRequired: true,
|
191 |
+
bluetoothRequired: false,
|
192 |
+
helpLink: 'https://champierre.github.io/handpose2scratch/'
|
193 |
+
},
|
194 |
{
|
195 |
name: (
|
196 |
<FormattedMessage
|