Compare commits

...

8 Commits

Author SHA1 Message Date
889142d0f7 0.2.51 2016-04-08 17:31:02 -07:00
3791689fc4 Bump pxt-core to 0.2.54 2016-04-08 17:30:59 -07:00
d05f66650f Merge branch 'master' of github.com:Microsoft/kindscript-microbit 2016-04-08 17:28:56 -07:00
a4f08e99a9 Add own manifest 2016-04-08 17:28:52 -07:00
3999c215ce 0.2.50 2016-04-08 16:57:58 -07:00
c6b8acb0b8 Bump pxt-core to 0.2.53 2016-04-08 16:57:56 -07:00
1e054f96ec updated about page 2016-04-08 16:57:37 -07:00
190e5e2e03 Add empty sim.manifestfiles 2016-04-08 16:00:11 -07:00
6 changed files with 15 additions and 5 deletions

1
.gitattributes vendored
View File

@ -12,6 +12,7 @@
*.html text eol=lf
*.py text eol=lf
*.exp text eol=lf
*.manifest text eol=lf
# do not enforce text for everything - it causes issues with random binary files

View File

@ -62,7 +62,7 @@ basic.showString("BBC micro:bit");
## C++ Runtime
The C++ BBC micro:bit library, created at [Lancaster University](http://www.lancaster.ac.uk/), provides access to the hardware functions of the micro:bit,
The [C++ BBC micro:bit runtime](http://lancaster-university.github.io/microbit-docs/), created at [Lancaster University](http://www.lancaster.ac.uk/), provides access to the hardware functions of the micro:bit,
as well as a set of helper functions (such as displaying a number/image/string on the LED screen).
The JavaScript micro:bit library mirrors the functions of the C++ library.
When code is compiled to ARM machine code, the calls to JavaScript micro:bit functions are replaced with calls to the corresponding C++ functions.

View File

@ -1,6 +1,6 @@
{
"name": "pxt-microbit",
"version": "0.2.49",
"version": "0.2.51",
"description": "BBC micro:bit target for PXT",
"keywords": [
"JavaScript",
@ -29,6 +29,6 @@
"typescript": "^1.8.7"
},
"dependencies": {
"pxt-core": "0.2.51"
"pxt-core": "0.2.54"
}
}

View File

@ -68,7 +68,7 @@
"log": true
},
"appTheme": {
"logoUrl": "https://www.microbit.co.uk/",
"logoUrl": "https://codemicrobit.com/about",
"logo": "./static/logo.svg",
"portraitLogo":"./static/portraitlogo.svg",
"footerLogo": "./static/footerlogo.svg",

9
sim/public/sim.manifest Normal file
View File

@ -0,0 +1,9 @@
CACHE MANIFEST
CACHE:
/cdn/bluebird.min.js
/cdn/pxtsim.js
/sim/sim.js
NETWORK:
*

View File

@ -1,5 +1,5 @@
<!doctype html>
<html lang="en" data-framework="typescript">
<html lang="en" data-manifest="" data-framework="typescript">
<head>
<meta charset="utf-8">