upgrade to pxt v4 (#783)

* upgrade to v4

* Update pxt-common-packages

* bump to 1.0
This commit is contained in:
Peli de Halleux 2018-09-19 16:09:05 -07:00 committed by GitHub
parent 60ea0f0cd5
commit 03a82d6bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ export class FieldMusic extends pxtblockly.FieldImages implements Blockly.FieldC
private categoriesCache_: string[];
constructor(text: string, options: FieldMusicOptions, validator?: Function) {
super(text, { sort: true, data: options.data }, validator);
super(text, { blocksInfo: options.blocksInfo, sort: true, data: options.data }, validator);
this.columns_ = parseInt(options.columns) || 4;
this.width_ = parseInt(options.width) || 380;

View File

@ -11,7 +11,7 @@ export class FieldPorts extends pxtblockly.FieldImages implements Blockly.FieldC
public isFieldCustom_ = true;
constructor(text: string, options: FieldPortsOptions, validator?: Function) {
super(text, { sort: true, data: options.data }, validator);
super(text, { blocksInfo: options.blocksInfo, sort: true, data: options.data }, validator);
this.columns_ = parseInt(options.columns) || 4;
this.width_ = parseInt(options.width) || 300;

View File

@ -1,6 +1,6 @@
{
"name": "pxt-ev3",
"version": "0.4.3",
"version": "1.0.0",
"description": "LEGO MINDSTORMS EV3 for Microsoft MakeCode",
"private": true,
"keywords": [
@ -39,8 +39,8 @@
"webfonts-generator": "^0.4.0"
},
"dependencies": {
"pxt-common-packages": "0.23.54",
"pxt-core": "3.21.7"
"pxt-common-packages": "0.23.55",
"pxt-core": "4.0.1"
},
"scripts": {
"test": "node node_modules/pxt-core/built/pxt.js travis"