dd63007fe7
* Fix Black and White Typo (#2138) * Fixed typo: Back->Black * Added Upgrade Rules to fix spelling * Removed extra isEmpty * Added previous BackAndWhite to allow for compilation of old scripts * always shake when button is pressed (#2161) * add PLENbit (#2140) * Bumping pxt-core to 5.15.5 * 1.4.15 * stop background before foreground (#2174) * Bumping pxt-core to 5.15.6 * 1.4.16 * Bumping pxt-core to 5.15.7 * 1.4.17 * Bumping pxt-core to 5.15.8 * 1.4.18 * add backgrounds for use with .dmg (#2200) * add normal size and 2x size backgrounds for dmg * update arrow color to dark gray * Bumping pxt-core to 5.15.9 * 1.4.19 * Adding v1-ref.json pointing to 1.2.13 * Bumping microbit to 2.0.0 * 2.0.1 * Pointing beta-ref to v2 * Bumping pxt-core to 5.15.10 * 2.0.2 * this repo is empty (#2201) * Update radio event parm usage descriptions (#2165) * add browser db prefix for v2 (#2208) * 2.0.3 * Releasing 2.0.3 to live (#2209) * dynamically sniff offline app version (#2059) * Revert "dynamically sniff offline app version (#2059)" (#2211) This reverts commit |
||
---|---|---|
.github | ||
.vscode | ||
clients | ||
docfiles | ||
docs | ||
editor | ||
electron | ||
external/sha | ||
fieldeditors | ||
libs | ||
pxtwapp | ||
resources | ||
sim | ||
tests | ||
theme | ||
.clang-format | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
calliope.code-workspace | ||
CONTRIBUTING.md | ||
faviconDescription.json | ||
LICENSE.txt | ||
microbit.code-workspace | ||
package-lock.json | ||
package.json | ||
ptrcheck-ignore | ||
pxtarget.json | ||
README.md | ||
targetconfig.json | ||
THIRD-PARTY-NOTICES.txt | ||
travis-tests.sh | ||
tslint.json | ||
webmanifest.json |
Calliope target for Microsoft MakeCode
This editor is hosted at https://makecode.calliope.cc.
- Got a question? Try the forum at https://forum.calliope.cc/
BUILD COMMENTS
- build libs/core/dal.d.ts new requires some meddling, as the
#define
parser does not parse#ifdef
and thus has some conflicts with double defines constants
Local server
The local server allows to run the editor and the documentation from your computer.
Setup
The following commands are a 1-time setup after synching the repo on your machine.
- See requirements for pxt
- clone this repo to your computer and go in the project folder
git clone https://github.com/microsoft/pxt-calliope
cd pxt-calliope
- install the PXT command line (add
sudo
for Mac/Linux shells).
npm install -g pxt
- install the dependencies
npm install
Running
Run this command to open a local web server (add sudo
for Mac/Linux shells).
pxt serve
If the local server opens in the wrong browser, make sure to copy the URL containing the local token. Otherwise, the editor will not be able to load the projects.
If you need modify the .cpp
files, turn on yotta compilation with the -yt
flag (add sudo
for Mac/Linux shells). On Windows, you must be running
from the Run Yotta
command prompt.
pxt serve -yt
Updates
To update your PXT version and make sure you're running the latest tools, run (add sudo
for Mac/Linux shells)
pxt update
More instructions at https://github.com/Microsoft/pxt#running-a-target-from-localhost
Testing
The build automatically runs the following:
- make sure the built-in packages compile
pxt run
inlibs/lang-test*
- this will run the test in command line runner; there is a number of asserts in both of thesepxt testdir
intests
- this makes sure all the files compile and generates .hex files
To test something on the device:
- do a
pxt deploy
inlibs/lang-test*
- they should show1
or2
on the screen (and not unhappy face) - run
pxt testdir
intests
and deploy some of the hex files fromtests/built
The lang-test0
source comes from the pxt-core
package. It's also tested with pxt run
there.
Code of Conduct
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.