pxt-microbit 7.1.2 → 7.1.4
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/{51f8887a6400db204414ca43f5d96c2c4d7124ac62e564120997a1cefffa4a2b.hex → 42b6ff95f591da1f636ef44c5b6763af7e9671ee33c86e938a92b73c0112d929.hex} +10333 -10335
- package/built/hexcache/{b6abc5b8d2540f44a3b4cbd6a56cdc92b4dd00f7cde224741719cda52b26a5d4.hex → abd58dbb0ba76befefc9eea440efe89cf7283a829c2bf3863fec1dde851ae93a.hex} +10925 -10927
- package/built/hexcache/{610e882e3c2e2b403b74540224526e151a5b568944d56574c43628572858a1c8.hex → f87dd6f924d49825ab4194658e7dd59cbdcf515452bdad421a017a6c6d4d5653.hex} +6782 -6782
- package/built/hexcache/{10d2d3c2aedba85bdacf6074b2cf964b8dacbdf8cdce89e94c6ae7e0bfe9b9ea.hex → fdf1ab3d8ac409b08a7bad3101a8cf88efd749b98912bfca0a660343ba9ffbb2.hex} +7592 -7594
- 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 +2 -2
- package/built/web/semantic.css +2 -2
- 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.d.ts
CHANGED
|
@@ -415,6 +415,8 @@ declare namespace pxsim.flashlog {
|
|
|
415
415
|
export function clear(fullErase: boolean): void;
|
|
416
416
|
export function setTimeStamp(format: FlashLogTimeStampFormat): void;
|
|
417
417
|
export function setSerialMirroring(enabled: boolean): void;
|
|
418
|
+
export function getNumberOfRows(fromRowIndex?: number): number;
|
|
419
|
+
export function getRows(fromRowIndex: number, nRows: number): string;
|
|
418
420
|
export {};
|
|
419
421
|
}
|
|
420
422
|
declare namespace pxsim {
|
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;
|