pxt-microbit 5.1.33 → 5.1.35
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/built/common-sim.d.ts +8 -2
- package/built/common-sim.js +21 -0
- package/built/editor.js +14 -9
- package/built/sim.d.ts +9 -3
- package/built/sim.js +27 -5
- package/built/target.js +1 -1
- package/built/target.json +1 -1
- package/built/targetlight.json +1 -1
- package/built/theme.json +1 -1
- package/built/web/react-common-authcode.css +1 -1
- package/built/web/react-common-multiplayer.css +1 -1
- package/built/web/react-common-skillmap.css +1 -1
- package/built/web/rtlreact-common-authcode.css +1 -1
- package/built/web/rtlreact-common-multiplayer.css +1 -1
- package/built/web/rtlreact-common-skillmap.css +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/docs/device/usb/webusb.md +2 -2
- package/docs/tours/editor-tour.md +12 -0
- package/package.json +3 -3
- package/pxtarget.json +4 -1
|
@@ -39,7 +39,7 @@ If you don't see any devices in the list and @boardname@ has the right firmware
|
|
|
39
39
|
|
|
40
40
|

|
|
41
41
|
|
|
42
|
-
* When your @boardname@ is connected, you'll see the **Connected to micro:bit** message window. Click on **Done** and you're ready to go!
|
|
42
|
+
* When your @boardname@ is connected, you'll see the **Connected to micro:bit** message window. Click on **Done** and you're ready to go!
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
@@ -55,7 +55,7 @@ You will need to unpair your device from the editor to disable WebUSB.
|
|
|
55
55
|
* Uncheck each **BBC micro:bit CMSIS-DAP** or **DAPLink CMSIS-DAP** device
|
|
56
56
|
* Reload the page
|
|
57
57
|
|
|
58
|
-

|
|
59
59
|
|
|
60
60
|
## One-click Download
|
|
61
61
|
|
|
@@ -20,12 +20,24 @@
|
|
|
20
20
|
* highlight: toolbox
|
|
21
21
|
* location: right
|
|
22
22
|
|
|
23
|
+
## Toolbox
|
|
24
|
+
* title: Toolbox
|
|
25
|
+
* description: Drag out snippets of code from the Toolbox categories into the Workspace.
|
|
26
|
+
* highlight: monaco toolbox
|
|
27
|
+
* location: right
|
|
28
|
+
|
|
23
29
|
## Workspace
|
|
24
30
|
* title: Workspace
|
|
25
31
|
* description: Snap blocks of code together to build your program.
|
|
26
32
|
* highlight: workspace
|
|
27
33
|
* location: center
|
|
28
34
|
|
|
35
|
+
## Workspace
|
|
36
|
+
* title: Workspace
|
|
37
|
+
* description: Write code to build your program.
|
|
38
|
+
* highlight: monaco workspace
|
|
39
|
+
* location: center
|
|
40
|
+
|
|
29
41
|
## Share
|
|
30
42
|
* title: Share
|
|
31
43
|
* description: Create a link to your project to share with others.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxt-microbit",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.35",
|
|
4
4
|
"description": "micro:bit target for Microsoft MakeCode (PXT)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"JavaScript",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"typescript": "4.2.3"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"pxt-common-packages": "10.4.
|
|
49
|
-
"pxt-core": "8.6.
|
|
48
|
+
"pxt-common-packages": "10.4.10",
|
|
49
|
+
"pxt-core": "8.6.48"
|
|
50
50
|
}
|
|
51
51
|
}
|
package/pxtarget.json
CHANGED
|
@@ -539,6 +539,7 @@
|
|
|
539
539
|
"simScreenshot": true,
|
|
540
540
|
"simScreenshotMaxUriLength": 300000,
|
|
541
541
|
"simGif": true,
|
|
542
|
+
"simGifWidth": 240,
|
|
542
543
|
"qrCode": true,
|
|
543
544
|
"importExtensionFiles": true,
|
|
544
545
|
"nameProjectFirst": true,
|
|
@@ -564,7 +565,9 @@
|
|
|
564
565
|
"connectDeviceImage": "/static/download/connect-microbit.gif",
|
|
565
566
|
"selectDeviceImage": "/static/download/selecting-microbit.gif",
|
|
566
567
|
"connectionSuccessImage": "/static/download/successfully-paired.png",
|
|
567
|
-
"incompatibleHardwareImage": "/static/download/incompatible.png"
|
|
568
|
+
"incompatibleHardwareImage": "/static/download/incompatible.png",
|
|
569
|
+
"usbDeviceForgottenImage": "/static/download/device-forgotten.gif",
|
|
570
|
+
"browserUnpairImage": "/static/download/browser-unpair-image.gif"
|
|
568
571
|
},
|
|
569
572
|
"winAppDeprImage": "/static/winapp.PNG",
|
|
570
573
|
"showWinAppDeprBanner": false,
|