Skip to content

Commit 494e923

Browse files
fix proto numeration
1 parent d9dd825 commit 494e923

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

Diff for: rpc/cc/arduino/cli/commands/v1/common.pb.go

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: rpc/cc/arduino/cli/commands/v1/common.proto

+7-7
Original file line numberDiff line numberDiff line change
@@ -119,28 +119,28 @@ message PlatformRelease {
119119
// Name used to identify the platform to humans (e.g., "Arduino AVR Boards").
120120
string name = 1;
121121
// Version of the platform release
122-
string version = 5;
122+
string version = 2;
123123
// Type of the platform.
124-
repeated string type = 6;
124+
repeated string type = 3;
125125
// True if the platform is installed
126-
bool installed = 7;
126+
bool installed = 4;
127127
// List of boards provided by the platform. If the platform is installed,
128128
// this is the boards listed in the platform's boards.txt. If the platform is
129129
// not installed, this is an arbitrary list of board names provided by the
130130
// platform author for display and may not match boards.txt.
131-
repeated Board boards = 8;
131+
repeated Board boards = 5;
132132
// A URL provided by the author of the platform's package, intended to point
133133
// to their online help service.
134-
HelpResources help = 9;
134+
HelpResources help = 6;
135135
// This field is true if the platform is missing installation metadata (this
136136
// happens if the platform has been installed with the legacy Arduino IDE
137137
// <=1.8.x). If the platform miss metadata and it's not indexed through a
138138
// package index, it may fail to work correctly in some circumstances, and it
139139
// may need to be reinstalled. This should be evaluated only when the
140140
// PlatformRelease is `Installed` otherwise is an undefined behaviour.
141-
bool missing_metadata = 10;
141+
bool missing_metadata = 7;
142142
// True this release is deprecated
143-
bool deprecated = 11;
143+
bool deprecated = 8;
144144
}
145145

146146
message InstalledPlatformReference {

0 commit comments

Comments
 (0)