Compare commits

...

16 Commits

Author SHA1 Message Date
252cd68892 2.0.2 2019-11-15 06:14:59 -08:00
2647c5fca9 2.0.1 2019-11-15 06:14:15 -08:00
4f6e195012 bump to 2.0 2019-11-15 06:14:05 -08:00
fb639299e7 Revert "Release beta bits to fix neopixel issue (#35)"
This reverts commit 656d99ea98.
2018-11-02 11:36:28 -07:00
656d99ea98 Release beta bits to fix neopixel issue (#35) 2018-11-02 11:29:33 -07:00
8e54c1cf9c 1.0.27 2018-11-02 08:09:02 -07:00
afdfc0ddec bump pxt-core to 0.19.20 2018-11-02 08:08:56 -07:00
c56d8891bb 1.0.26 2018-05-16 06:31:23 -07:00
dfcf16cde7 updated to latest pxt 2018-05-16 06:31:10 -07:00
407ef73669 updated target 2018-04-20 07:12:22 -07:00
b627ee2e4a updated config 2018-04-20 07:09:53 -07:00
513afd4a21 bump version with languages 2018-04-17 20:38:14 -07:00
bde84176e6 1.0.25 2018-04-17 15:02:35 -07:00
db6e12275f enabling languages 2018-04-17 15:02:13 -07:00
d9412f2f5e bumped pxt 2018-04-17 14:57:36 -07:00
0a80046ea2 lock app version 2018-04-16 07:23:00 -07:00
8 changed files with 37 additions and 30 deletions

View File

@ -1,7 +0,0 @@
/// <reference path="../node_modules/pxt-core/typings/globals/node/index.d.ts"/>
/// <reference path="../node_modules/pxt-core/built/pxtlib.d.ts" />
import * as path from "path";
export let pxtCore = require("pxt-core");
// require.resolve() gives path to [pxt dir]/built/pxt.js, so move up twice to get pxt root dir
export let pxtCoreDir = path.resolve(require.resolve("pxt-core"), "..", "..");

View File

@ -1,13 +0,0 @@
{
"compilerOptions": {
"target": "es5",
"noImplicitAny": true,
"noImplicitReturns": true,
"declaration": true,
"outDir": "../built",
"module": "commonjs",
"rootDir": ".",
"newLine": "LF",
"sourceMap": false
}
}

View File

@ -1,3 +1,3 @@
{
"appref": "v"
"appref": "v1.0.25"
}

View File

@ -102,6 +102,16 @@
"Math": "More complex operations with numbers.",
"Math.abs": "Returns the absolute value of a number (the value without regard to whether it is positive or negative).\nFor example, the absolute value of -5 is the same as the absolute value of 5.",
"Math.abs|param|x": "A numeric expression for which the absolute value is needed.",
"Math.ceil": "Returns the smallest number greater than or equal to its numeric argument.",
"Math.ceil|param|x": "A numeric expression.",
"Math.floor": "Returns the greatest number less than or equal to its numeric argument.",
"Math.floor|param|x": "A numeric expression.",
"Math.idiv": "Returns the value of integer signed 32 bit division of two numbers.",
"Math.idiv|param|x": "The first number",
"Math.idiv|param|y": "The second number",
"Math.imul": "Returns the value of integer signed 32 bit multiplication of two numbers.",
"Math.imul|param|x": "The first number",
"Math.imul|param|y": "The second number",
"Math.max": "Returns the larger of two supplied numeric expressions.",
"Math.min": "Returns the smaller of two supplied numeric expressions.",
"Math.pow": "Return the value of a base expression taken to a specified power.",
@ -110,10 +120,14 @@
"Math.random": "Return a pseudorandom number between 0 and `limit`.",
"Math.randomBoolean": "Generates a `true` or `false` value randomly, just like flipping a coin.",
"Math.random|param|limit": "the upper bound of the number generated, eg: 4",
"Math.round": "Returns a supplied numeric expression rounded to the nearest number.",
"Math.round|param|x": "The value to be rounded to the nearest number.",
"Math.sign": "Returns the sign of the x, indicating whether x is positive, negative or zero.",
"Math.sign|param|x": "The numeric expression to test",
"Math.sqrt": "Return the square root of a number.",
"Math.sqrt|param|x": "A numeric expression.",
"Math.trunc": "Returns the number with the decimal part truncated.",
"Math.trunc|param|x": "A numeric expression.",
"Number.toString": "Return a string representation of a number.",
"String": "Combine, split, and search text strings.\n\nCombine, split, and search text strings.",
"String.charAt": "Return the character at the specified index.",
@ -371,7 +385,7 @@
"music.speakerPlayTone|param|frequency": "pitch of the tone to play in Hertz (Hz)",
"music.speakerPlayTone|param|ms": "tone duration in milliseconds (ms)",
"music.tempo": "Returns the tempo in beats per minute. Tempo is the speed (bpm = beats per minute) at which notes play. The larger the tempo value, the faster the notes will play.",
"parseInt": "Convert A string to an integer.",
"parseInt": "Convert a string to an integer.",
"pins": "Control currents in Pins for analog/digital signals, servos, i2c, ...",
"pins.analogPitch": "Emits a Pulse-width modulation (PWM) signal to the current pitch pin. Use `analog set pitch pin` to define the pitch pin.",
"pins.analogPitch|param|frequency": "frequency to modulate in Hz.",

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "pxt-calliope",
"version": "1.0.24",
"version": "2.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "pxt-calliope",
"version": "1.0.24",
"version": "2.0.2",
"description": "Calliope Mini editor for PXT",
"keywords": [
"JavaScript",
@ -26,8 +26,6 @@
"docs/*/*.md",
"docs/*/*/*.md"
],
"main": "built/pxtrequire.js",
"typings": "built/pxtrequire.d.ts",
"devDependencies": {
"typescript": "^1.8.7",
"rtlcss": "^2.1.2",
@ -36,7 +34,7 @@
"semantic-ui-less": "2.2.14"
},
"dependencies": {
"pxt-core": "0.18.3"
"pxt-core": "0.19.20"
},
"scripts": {
"test": "node node_modules/pxt-core/built/pxt.js travis"

View File

@ -226,10 +226,23 @@
},
"docMenu": [],
"hasReferenceDocs": false,
"selectLanguage": true,
"availableLocales": [
"en",
"de",
"en"
"el",
"fr",
"it",
"ko",
"nl",
"no",
"sv-SE",
"tr",
"zh-TW",
"zh-CN"
]
},
"ignoreDocsErrors": true
}

View File

@ -8,7 +8,8 @@
],
"approvedRepos": [
"CoderDojoOlney/pxt-olney",
"Tinkertanker/pxt-ssd1306-microbit"
"Tinkertanker/pxt-oled-ssd1306",
"Seeed-Studio/pxt-grove"
],
"preferredRepos": [
"Microsoft/pxt-neopixel",
@ -19,7 +20,8 @@
"calliope-mini/pxt-calliope-bunt",
"calliope-mini/pxt-isl29125",
"ubirch/pxt-ubirch",
"Tinkertanker/pxt-ssd1306-microbit"
"Tinkertanker/pxt-oled-ssd1306",
"Seeed-Studio/pxt-grove"
]
}
}