pxt-core 12.2.30 → 12.2.32
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/target.js +1 -1
- package/built/targetlight.js +1 -1
- package/built/tests/blocksrunner.js +2 -2
- package/built/tests/blockssetup.js +2 -2
- package/built/web/main.js +2 -2
- package/built/web/pxtasseteditor.js +1 -1
- package/built/web/pxtembed.js +1 -1
- package/built/web/runnerembed.js +1 -1
- package/docfiles/offline-app-head.html +8 -10
- package/package.json +1 -1
|
@@ -530,17 +530,15 @@
|
|
|
530
530
|
let recommendedButton = null;
|
|
531
531
|
|
|
532
532
|
if (isMac) {
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
} else {
|
|
536
|
-
recommendedButton = $("#download-mac64");
|
|
537
|
-
}
|
|
533
|
+
// Do not recommend a Mac binary because architecture detection is unreliable across browsers
|
|
534
|
+
recommendedButton = null;
|
|
538
535
|
} else if (isWindows) {
|
|
539
|
-
if (false && isWindowsARM) {
|
|
540
|
-
|
|
541
|
-
} else {
|
|
542
|
-
|
|
543
|
-
}
|
|
536
|
+
// if (false && isWindowsARM) {
|
|
537
|
+
// recommendedButton = $("#download-winarm64");
|
|
538
|
+
// } else {
|
|
539
|
+
// recommendedButton = $("#download-win64");
|
|
540
|
+
// }
|
|
541
|
+
recommendedButton = null;
|
|
544
542
|
}
|
|
545
543
|
|
|
546
544
|
// Mark the recommended download
|