mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-19 07:09:28 +00:00
Removed real_name of the libraries.
It has been removed from the gRPC API: arduino/arduino-cli#1890 This PR switches from `real_name` to `name` in the UI, as the `name` is the canonical form provided by the CLI. Closes #1525 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
This commit is contained in:
@@ -765,9 +765,6 @@ export class Library extends jspb.Message {
|
||||
getContainerPlatform(): string;
|
||||
setContainerPlatform(value: string): Library;
|
||||
|
||||
getRealName(): string;
|
||||
setRealName(value: string): Library;
|
||||
|
||||
getDotALinkage(): boolean;
|
||||
setDotALinkage(value: boolean): Library;
|
||||
|
||||
@@ -836,7 +833,6 @@ export namespace Library {
|
||||
sourceDir: string,
|
||||
utilityDir: string,
|
||||
containerPlatform: string,
|
||||
realName: string,
|
||||
dotALinkage: boolean,
|
||||
precompiled: boolean,
|
||||
ldFlags: string,
|
||||
|
||||
@@ -5447,7 +5447,6 @@ proto.cc.arduino.cli.commands.v1.Library.toObject = function(includeInstance, ms
|
||||
sourceDir: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
||||
utilityDir: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
||||
containerPlatform: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
||||
realName: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
||||
dotALinkage: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
|
||||
precompiled: jspb.Message.getBooleanFieldWithDefault(msg, 18, false),
|
||||
ldFlags: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
||||
@@ -5548,10 +5547,6 @@ proto.cc.arduino.cli.commands.v1.Library.deserializeBinaryFromReader = function(
|
||||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setContainerPlatform(value);
|
||||
break;
|
||||
case 16:
|
||||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setRealName(value);
|
||||
break;
|
||||
case 17:
|
||||
var value = /** @type {boolean} */ (reader.readBool());
|
||||
msg.setDotALinkage(value);
|
||||
@@ -5724,13 +5719,6 @@ proto.cc.arduino.cli.commands.v1.Library.serializeBinaryToWriter = function(mess
|
||||
f
|
||||
);
|
||||
}
|
||||
f = message.getRealName();
|
||||
if (f.length > 0) {
|
||||
writer.writeString(
|
||||
16,
|
||||
f
|
||||
);
|
||||
}
|
||||
f = message.getDotALinkage();
|
||||
if (f) {
|
||||
writer.writeBool(
|
||||
@@ -6084,24 +6072,6 @@ proto.cc.arduino.cli.commands.v1.Library.prototype.setContainerPlatform = functi
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* optional string real_name = 16;
|
||||
* @return {string}
|
||||
*/
|
||||
proto.cc.arduino.cli.commands.v1.Library.prototype.getRealName = function() {
|
||||
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {!proto.cc.arduino.cli.commands.v1.Library} returns this
|
||||
*/
|
||||
proto.cc.arduino.cli.commands.v1.Library.prototype.setRealName = function(value) {
|
||||
return jspb.Message.setProto3StringField(this, 16, value);
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* optional bool dot_a_linkage = 17;
|
||||
* @return {boolean}
|
||||
|
||||
Reference in New Issue
Block a user