Skip to content

chore: Updated to 0.32.2 CLI #1996

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions arduino-ide-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,7 @@
],
"arduino": {
"cli": {
"version": {
"owner": "arduino",
"repo": "arduino-cli",
"commitish": "71a8576"
}
"version": "0.32.2"
},
"fwuploader": {
"version": "2.2.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ export class CompileRequest extends jspb.Message {
getQuiet(): boolean;
setQuiet(value: boolean): CompileRequest;

getVidPid(): string;
setVidPid(value: string): CompileRequest;

getJobs(): number;
setJobs(value: number): CompileRequest;

Expand Down Expand Up @@ -122,7 +119,6 @@ export namespace CompileRequest {
warnings: string,
verbose: boolean,
quiet: boolean,
vidPid: string,
jobs: number,
librariesList: Array<string>,
optimizeForDebug: boolean,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.toObject = function(includeInsta
warnings: jspb.Message.getFieldWithDefault(msg, 9, ""),
verbose: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
quiet: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
vidPid: jspb.Message.getFieldWithDefault(msg, 12, ""),
jobs: jspb.Message.getFieldWithDefault(msg, 14, 0),
librariesList: (f = jspb.Message.getRepeatedField(msg, 15)) == null ? undefined : f,
optimizeForDebug: jspb.Message.getBooleanFieldWithDefault(msg, 16, false),
Expand Down Expand Up @@ -232,10 +231,6 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.deserializeBinaryFromReader = fu
var value = /** @type {boolean} */ (reader.readBool());
msg.setQuiet(value);
break;
case 12:
var value = /** @type {string} */ (reader.readString());
msg.setVidPid(value);
break;
case 14:
var value = /** @type {number} */ (reader.readInt32());
msg.setJobs(value);
Expand Down Expand Up @@ -398,13 +393,6 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.serializeBinaryToWriter = functi
f
);
}
f = message.getVidPid();
if (f.length > 0) {
writer.writeString(
12,
f
);
}
f = message.getJobs();
if (f !== 0) {
writer.writeInt32(
Expand Down Expand Up @@ -733,24 +721,6 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.prototype.setQuiet = function(va
};


/**
* optional string vid_pid = 12;
* @return {string}
*/
proto.cc.arduino.cli.commands.v1.CompileRequest.prototype.getVidPid = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
};


/**
* @param {string} value
* @return {!proto.cc.arduino.cli.commands.v1.CompileRequest} returns this
*/
proto.cc.arduino.cli.commands.v1.CompileRequest.prototype.setVidPid = function(value) {
return jspb.Message.setProto3StringField(this, 12, value);
};


/**
* optional int32 jobs = 14;
* @return {number}
Expand Down