pxt-core 12.2.31 → 12.2.33

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.
@@ -530,17 +530,15 @@
530
530
  let recommendedButton = null;
531
531
 
532
532
  if (isMac) {
533
- if (isAppleSilicon) {
534
- recommendedButton = $("#download-macarm64");
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
- recommendedButton = $("#download-winarm64");
541
- } else {
542
- recommendedButton = $("#download-win64");
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
@@ -820,7 +820,7 @@ declare namespace pxt.editor {
820
820
  simSerialActive?: boolean;
821
821
  deviceSerialActive?: boolean;
822
822
  errorListState?: ErrorListState;
823
- errorListCollapsedByUser?: boolean;
823
+ errorListCollapsed?: boolean;
824
824
  screenshoting?: boolean;
825
825
  extensionsVisible?: boolean;
826
826
  isMultiplayerGame?: boolean; // Arcade: Does the current project contain multiplayer blocks?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "12.2.31",
3
+ "version": "12.2.33",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",