pxt-microbit 7.1.2 → 7.1.3
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/block-tests.js +1 -1
- package/built/editor.js +17 -7
- package/built/hexcache/{b6abc5b8d2540f44a3b4cbd6a56cdc92b4dd00f7cde224741719cda52b26a5d4.hex → 8473b2f7cfce0b0795330a1467648724c3ab836475468729eab56319ef9bb8e2.hex} +1 -1
- package/built/hexcache/{51f8887a6400db204414ca43f5d96c2c4d7124ac62e564120997a1cefffa4a2b.hex → 93a2d8d48f0ffc193fd231171dc903bc4808e0ffc2d7e0f42e3e1b534a3f97d2.hex} +1 -1
- package/built/sim.d.ts +2 -0
- package/built/sim.js +8 -0
- 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/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/docs/extensions/extension-gallery.md +5 -1
- package/docs/projects/v2-cat-napping.md +4 -4
- package/docs/projects/v2-countdown.md +10 -10
- package/docs/projects/v2-morse-chat.md +18 -12
- package/docs/projects/v2-pet-hamster.md +11 -11
- package/package.json +2 -2
- package/pxtarget.json +2 -1
- package/targetconfig.json +6 -1
package/built/sim.js
CHANGED
|
@@ -2401,6 +2401,14 @@ var pxsim;
|
|
|
2401
2401
|
mirrorToSerial = !!enabled;
|
|
2402
2402
|
}
|
|
2403
2403
|
flashlog.setSerialMirroring = setSerialMirroring;
|
|
2404
|
+
function getNumberOfRows(fromRowIndex = 0) {
|
|
2405
|
+
return 0; // TODO
|
|
2406
|
+
}
|
|
2407
|
+
flashlog.getNumberOfRows = getNumberOfRows;
|
|
2408
|
+
function getRows(fromRowIndex, nRows) {
|
|
2409
|
+
return ""; // TODO
|
|
2410
|
+
}
|
|
2411
|
+
flashlog.getRows = getRows;
|
|
2404
2412
|
})(flashlog = pxsim.flashlog || (pxsim.flashlog = {}));
|
|
2405
2413
|
})(pxsim || (pxsim = {}));
|
|
2406
2414
|
var pxsim;
|