pxt-core 12.3.2 → 12.3.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.
@@ -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
@@ -915,7 +915,7 @@ declare namespace pxt.editor {
915
915
  forceUpdate(): void;
916
916
 
917
917
  reloadEditor(): void;
918
- openBlocks(): void;
918
+ openBlocks(showKeyboardControlsHint?: boolean): void;
919
919
  openJavaScript(giveFocusOnLoading?: boolean): void;
920
920
  openPython(giveFocusOnLoading?: boolean): void;
921
921
  openAssets(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "12.3.2",
3
+ "version": "12.3.3",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
@@ -3,7 +3,7 @@ import { classList, ControlProps } from "../util";
3
3
 
4
4
  export interface ProgressBarProps extends ControlProps {
5
5
  value: number;
6
- max?: number; // default: 1
6
+ max?: number; // default: 100
7
7
  title?: string;
8
8
  label?: string;
9
9
 
@@ -34,7 +34,7 @@ export const ProgressBar = (props: ProgressBarProps) => {
34
34
  className="common-progressbar"
35
35
  value={value}
36
36
  aria-valuetext={ariaValueText}
37
- max={max || 1.0}
37
+ max={max || 100}
38
38
  id={id}
39
39
  role={role || "progressbar"}
40
40
  title={title}
@@ -7,7 +7,7 @@
7
7
  <link rel="stylesheet" data-rtl="/blb/rtlsemantic.css" href="/blb/semantic.css">
8
8
  <link rel="stylesheet" href="/blb/icons.css">
9
9
  <link rel="stylesheet" href="/blb/react-common-skillmap.css">
10
- <script defer="defer" src="/blb/skillmap/js/main.5472c093.js"></script><link href="/blb/skillmap/css/main.450cb46e.css" rel="stylesheet"></head>
10
+ <script defer="defer" src="/blb/skillmap/js/main.382b1924.js"></script><link href="/blb/skillmap/css/main.450cb46e.css" rel="stylesheet"></head>
11
11
  <body class="pxt-theme-root">
12
12
  <noscript>You need to enable JavaScript to run this app.</noscript>
13
13