mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-19 12:57:17 +00:00
chore(cli): Updated to 0.32.2
CLI
Signed-off-by: Akos Kitta <a.kitta@arduino.cc> Co-authored-by: per1234 <accounts@perglass.com> Co-authored-by: Akos Kitta <a.kitta@arduino.cc>
This commit is contained in:
parent
80d5b5afa7
commit
3aee575a35
@ -163,11 +163,7 @@
|
||||
],
|
||||
"arduino": {
|
||||
"cli": {
|
||||
"version": {
|
||||
"owner": "arduino",
|
||||
"repo": "arduino-cli",
|
||||
"commitish": "71a8576"
|
||||
}
|
||||
"version": "0.32.2"
|
||||
},
|
||||
"fwuploader": {
|
||||
"version": "2.2.2"
|
||||
|
@ -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;
|
||||
|
||||
@ -122,7 +119,6 @@ export namespace CompileRequest {
|
||||
warnings: string,
|
||||
verbose: boolean,
|
||||
quiet: boolean,
|
||||
vidPid: string,
|
||||
jobs: number,
|
||||
librariesList: Array<string>,
|
||||
optimizeForDebug: boolean,
|
||||
|
@ -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),
|
||||
@ -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);
|
||||
@ -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(
|
||||
@ -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}
|
||||
|
Loading…
x
Reference in New Issue
Block a user