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.
- package/built/pxt.js +1 -1
- package/built/pxtlib.js +1 -1
- package/built/target.js +1 -1
- package/built/targetlight.js +1 -1
- package/built/tests/blocksrunner.js +24 -21
- package/built/tests/blockssetup.js +24 -21
- package/built/web/main.js +2 -2
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtasseteditor.js +1 -1
- package/built/web/pxtembed.js +2 -2
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/built/web/runnerembed.js +1 -1
- package/built/web/skillmap/js/{main.5472c093.js → main.382b1924.js} +2 -2
- package/docfiles/offline-app-head.html +8 -10
- package/localtypings/pxteditor.d.ts +1 -1
- package/package.json +1 -1
- package/react-common/components/controls/ProgressBar.tsx +2 -2
- package/webapp/public/skillmap.html +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
|
|
@@ -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
|
@@ -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:
|
|
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 ||
|
|
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.
|
|
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
|
|