Skip to content

Commit f34f594

Browse files
Akos Kittakittaakos
Akos Kitta
authored andcommitted
Use 0.16.0 CLI. Bumped version to 2.0.0-beta.2
Signed-off-by: Akos Kitta <[email protected]>
1 parent 1dc7a89 commit f34f594

File tree

6 files changed

+77
-9
lines changed

6 files changed

+77
-9
lines changed

arduino-ide-extension/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arduino-ide-extension",
3-
"version": "2.0.0-beta.1",
3+
"version": "2.0.0-beta.2",
44
"description": "An extension for Theia building the Arduino IDE",
55
"license": "MIT",
66
"scripts": {
@@ -123,7 +123,7 @@
123123
],
124124
"arduino": {
125125
"cli": {
126-
"version": "20210212"
126+
"version": "0.16.0"
127127
}
128128
}
129129
}

arduino-ide-extension/src/node/cli-protocol/commands/core_pb.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,9 @@ export class PlatformListReq extends jspb.Message {
326326
getUpdatableOnly(): boolean;
327327
setUpdatableOnly(value: boolean): PlatformListReq;
328328

329+
getAll(): boolean;
330+
setAll(value: boolean): PlatformListReq;
331+
329332

330333
serializeBinary(): Uint8Array;
331334
toObject(includeInstance?: boolean): PlatformListReq.AsObject;
@@ -341,6 +344,7 @@ export namespace PlatformListReq {
341344
export type AsObject = {
342345
instance?: commands_common_pb.Instance.AsObject,
343346
updatableOnly: boolean,
347+
all: boolean,
344348
}
345349
}
346350

@@ -394,6 +398,9 @@ export class Platform extends jspb.Message {
394398
setBoardsList(value: Array<Board>): Platform;
395399
addBoards(value?: Board, index?: number): Board;
396400

401+
getManuallyinstalled(): boolean;
402+
setManuallyinstalled(value: boolean): Platform;
403+
397404

398405
serializeBinary(): Uint8Array;
399406
toObject(includeInstance?: boolean): Platform.AsObject;
@@ -415,6 +422,7 @@ export namespace Platform {
415422
website: string,
416423
email: string,
417424
boardsList: Array<Board.AsObject>,
425+
manuallyinstalled: boolean,
418426
}
419427
}
420428

arduino-ide-extension/src/node/cli-protocol/commands/core_pb.js

+62-2
Original file line numberDiff line numberDiff line change
@@ -2398,7 +2398,8 @@ proto.cc.arduino.cli.commands.PlatformListReq.prototype.toObject = function(opt_
23982398
proto.cc.arduino.cli.commands.PlatformListReq.toObject = function(includeInstance, msg) {
23992399
var f, obj = {
24002400
instance: (f = msg.getInstance()) && commands_common_pb.Instance.toObject(includeInstance, f),
2401-
updatableOnly: jspb.Message.getBooleanFieldWithDefault(msg, 2, false)
2401+
updatableOnly: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
2402+
all: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
24022403
};
24032404

24042405
if (includeInstance) {
@@ -2444,6 +2445,10 @@ proto.cc.arduino.cli.commands.PlatformListReq.deserializeBinaryFromReader = func
24442445
var value = /** @type {boolean} */ (reader.readBool());
24452446
msg.setUpdatableOnly(value);
24462447
break;
2448+
case 3:
2449+
var value = /** @type {boolean} */ (reader.readBool());
2450+
msg.setAll(value);
2451+
break;
24472452
default:
24482453
reader.skipField();
24492454
break;
@@ -2488,6 +2493,13 @@ proto.cc.arduino.cli.commands.PlatformListReq.serializeBinaryToWriter = function
24882493
f
24892494
);
24902495
}
2496+
f = message.getAll();
2497+
if (f) {
2498+
writer.writeBool(
2499+
3,
2500+
f
2501+
);
2502+
}
24912503
};
24922504

24932505

@@ -2546,6 +2558,24 @@ proto.cc.arduino.cli.commands.PlatformListReq.prototype.setUpdatableOnly = funct
25462558
};
25472559

25482560

2561+
/**
2562+
* optional bool all = 3;
2563+
* @return {boolean}
2564+
*/
2565+
proto.cc.arduino.cli.commands.PlatformListReq.prototype.getAll = function() {
2566+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
2567+
};
2568+
2569+
2570+
/**
2571+
* @param {boolean} value
2572+
* @return {!proto.cc.arduino.cli.commands.PlatformListReq} returns this
2573+
*/
2574+
proto.cc.arduino.cli.commands.PlatformListReq.prototype.setAll = function(value) {
2575+
return jspb.Message.setProto3BooleanField(this, 3, value);
2576+
};
2577+
2578+
25492579

25502580
/**
25512581
* List of repeated fields within this message type.
@@ -2753,7 +2783,8 @@ proto.cc.arduino.cli.commands.Platform.toObject = function(includeInstance, msg)
27532783
website: jspb.Message.getFieldWithDefault(msg, 6, ""),
27542784
email: jspb.Message.getFieldWithDefault(msg, 7, ""),
27552785
boardsList: jspb.Message.toObjectList(msg.getBoardsList(),
2756-
proto.cc.arduino.cli.commands.Board.toObject, includeInstance)
2786+
proto.cc.arduino.cli.commands.Board.toObject, includeInstance),
2787+
manuallyinstalled: jspb.Message.getBooleanFieldWithDefault(msg, 9, false)
27572788
};
27582789

27592790
if (includeInstance) {
@@ -2823,6 +2854,10 @@ proto.cc.arduino.cli.commands.Platform.deserializeBinaryFromReader = function(ms
28232854
reader.readMessage(value,proto.cc.arduino.cli.commands.Board.deserializeBinaryFromReader);
28242855
msg.addBoards(value);
28252856
break;
2857+
case 9:
2858+
var value = /** @type {boolean} */ (reader.readBool());
2859+
msg.setManuallyinstalled(value);
2860+
break;
28262861
default:
28272862
reader.skipField();
28282863
break;
@@ -2909,6 +2944,13 @@ proto.cc.arduino.cli.commands.Platform.serializeBinaryToWriter = function(messag
29092944
proto.cc.arduino.cli.commands.Board.serializeBinaryToWriter
29102945
);
29112946
}
2947+
f = message.getManuallyinstalled();
2948+
if (f) {
2949+
writer.writeBool(
2950+
9,
2951+
f
2952+
);
2953+
}
29122954
};
29132955

29142956

@@ -3076,6 +3118,24 @@ proto.cc.arduino.cli.commands.Platform.prototype.clearBoardsList = function() {
30763118
};
30773119

30783120

3121+
/**
3122+
* optional bool ManuallyInstalled = 9;
3123+
* @return {boolean}
3124+
*/
3125+
proto.cc.arduino.cli.commands.Platform.prototype.getManuallyinstalled = function() {
3126+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 9, false));
3127+
};
3128+
3129+
3130+
/**
3131+
* @param {boolean} value
3132+
* @return {!proto.cc.arduino.cli.commands.Platform} returns this
3133+
*/
3134+
proto.cc.arduino.cli.commands.Platform.prototype.setManuallyinstalled = function(value) {
3135+
return jspb.Message.setProto3BooleanField(this, 9, value);
3136+
};
3137+
3138+
30793139

30803140

30813141

browser-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "browser-app",
4-
"version": "2.0.0-beta.1",
4+
"version": "2.0.0-beta.2",
55
"license": "MIT",
66
"dependencies": {
77
"@theia/core": "next",
@@ -18,7 +18,7 @@
1818
"@theia/process": "next",
1919
"@theia/terminal": "next",
2020
"@theia/workspace": "next",
21-
"arduino-ide-extension": "2.0.0-beta.1"
21+
"arduino-ide-extension": "2.0.0-beta.2"
2222
},
2323
"devDependencies": {
2424
"@theia/cli": "next"

electron-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "electron-app",
4-
"version": "2.0.0-beta.1",
4+
"version": "2.0.0-beta.2",
55
"license": "MIT",
66
"main": "src-gen/frontend/electron-main.js",
77
"dependencies": {
@@ -20,7 +20,7 @@
2020
"@theia/process": "next",
2121
"@theia/terminal": "next",
2222
"@theia/workspace": "next",
23-
"arduino-ide-extension": "2.0.0-beta.1"
23+
"arduino-ide-extension": "2.0.0-beta.2"
2424
},
2525
"devDependencies": {
2626
"@theia/cli": "next"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arduino-editor",
3-
"version": "2.0.0-beta.1",
3+
"version": "2.0.0-beta.2",
44
"description": "Arduino IDE",
55
"repository": "https://github.com/bcmi-labs/arduino-editor.git",
66
"author": "Arduino SA",

0 commit comments

Comments
 (0)