Beta release fixes (#1850)
* Bump common packages to latest * Turning on new features * Fixing the offline-app page * Bump minor version
This commit is contained in:
parent
e9c2763eaf
commit
c1c5e816c6
29
docfiles/indexhead.html
Normal file
29
docfiles/indexhead.html
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<meta name="msvalidate.01" content="C458ADC671C51F222A0F655F66596649" />
|
||||||
|
<meta property="og:title" content="Microsoft MakeCode" />
|
||||||
|
<meta property="og:site_name" content="Microsoft MakeCode" />
|
||||||
|
<meta property="og:url" content="https://www.makecode.com">
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:description" content="Microsoft MakeCode is a free, open-source Block and JavaScript learn-to-code editor that promotes a more inclusive approach to computing education." />
|
||||||
|
<meta property="og:image" content="/static/logo/logo-card.png">
|
||||||
|
<meta property="fb:app_id" content=""/>
|
||||||
|
|
||||||
|
<meta name="msapplication-config" content="/static/logo/favicons/browserconfig.xml">
|
||||||
|
<meta name="msapplication-TileImage" content="/static/logo/favicons/mstile-310x310.png">
|
||||||
|
<meta name="msapplication-TileColor" content="#b4009e">
|
||||||
|
<meta name="application-name" content="MakeCode">
|
||||||
|
<link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48" href="/static/logo/favicons/favicon.ico">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/logo/favicons/favicon-32x32.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/static/logo/favicons/apple-touch-icon.png">
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Microsoft MakeCode">
|
||||||
|
<meta name="twitter:description" content="Microsoft MakeCode is a free, open-source Block and JavaScript learn-to-code editor that promotes a more inclusive approach to computing education.">
|
||||||
|
<meta name="twitter:site" content="@MSMakeCode">
|
||||||
|
<meta name="twitter:creator" content="@MSMakeCode">
|
||||||
|
<meta name="twitter:image" content="/static/logo/logo-card.png"/>
|
||||||
|
<link rel="stylesheet" href="/doccdn/semantic.css" />
|
||||||
|
<link rel="stylesheet" href="/docfiles/index.css" />
|
||||||
|
|
||||||
|
<script src="/doccdn/jquery.js"></script>
|
||||||
|
<script src="/static/semantic/semantic.min.js"></script>
|
||||||
|
<script src="/docfiles/index.js"></script>
|
@ -368,7 +368,7 @@
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
tickEvent = function (id, data) {
|
tickEvent = function (id, data) {
|
||||||
if (!pxt.aiTrackEvent) return;
|
if (!pxt.aiTrackEvent) return;
|
||||||
if (!data) pxt.aiTrackEvent(id);
|
if (!data) pxt.aiTrackEvent(id);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pxt-microbit",
|
"name": "pxt-microbit",
|
||||||
"version": "1.2.19",
|
"version": "1.3.0",
|
||||||
"description": "micro:bit target for Microsoft MakeCode (PXT)",
|
"description": "micro:bit target for Microsoft MakeCode (PXT)",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"JavaScript",
|
"JavaScript",
|
||||||
@ -42,7 +42,7 @@
|
|||||||
"@types/web-bluetooth": "0.0.4"
|
"@types/web-bluetooth": "0.0.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pxt-common-packages": "6.3.3",
|
"pxt-common-packages": "6.4.5",
|
||||||
"pxt-core": "5.5.13"
|
"pxt-core": "5.5.13"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -97,7 +97,8 @@
|
|||||||
"pid": "0x0204"
|
"pid": "0x0204"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"webUSB": true
|
"webUSB": true,
|
||||||
|
"useNewFunctions": true
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"mathBlocks": true,
|
"mathBlocks": true,
|
||||||
@ -107,6 +108,9 @@
|
|||||||
"textBlocks": true,
|
"textBlocks": true,
|
||||||
"listsBlocks": true,
|
"listsBlocks": true,
|
||||||
"functionBlocks": true,
|
"functionBlocks": true,
|
||||||
|
"functionsOptions": {
|
||||||
|
"useNewFunctions": true
|
||||||
|
},
|
||||||
"onStartColor": "#1E90FF",
|
"onStartColor": "#1E90FF",
|
||||||
"onStartNamespace": "basic",
|
"onStartNamespace": "basic",
|
||||||
"onStartWeight": 54
|
"onStartWeight": 54
|
||||||
@ -435,6 +439,7 @@
|
|||||||
},
|
},
|
||||||
"editorVersionPaths": {
|
"editorVersionPaths": {
|
||||||
"0": "v0"
|
"0": "v0"
|
||||||
}
|
},
|
||||||
|
"scriptManager": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user