@@ -119,28 +119,28 @@ message PlatformRelease {
119
119
// Name used to identify the platform to humans (e.g., "Arduino AVR Boards").
120
120
string name = 1 ;
121
121
// Version of the platform release
122
- string version = 5 ;
122
+ string version = 2 ;
123
123
// Type of the platform.
124
- repeated string type = 6 ;
124
+ repeated string type = 3 ;
125
125
// True if the platform is installed
126
- bool installed = 7 ;
126
+ bool installed = 4 ;
127
127
// List of boards provided by the platform. If the platform is installed,
128
128
// this is the boards listed in the platform's boards.txt. If the platform is
129
129
// not installed, this is an arbitrary list of board names provided by the
130
130
// platform author for display and may not match boards.txt.
131
- repeated Board boards = 8 ;
131
+ repeated Board boards = 5 ;
132
132
// A URL provided by the author of the platform's package, intended to point
133
133
// to their online help service.
134
- HelpResources help = 9 ;
134
+ HelpResources help = 6 ;
135
135
// This field is true if the platform is missing installation metadata (this
136
136
// happens if the platform has been installed with the legacy Arduino IDE
137
137
// <=1.8.x). If the platform miss metadata and it's not indexed through a
138
138
// package index, it may fail to work correctly in some circumstances, and it
139
139
// may need to be reinstalled. This should be evaluated only when the
140
140
// PlatformRelease is `Installed` otherwise is an undefined behaviour.
141
- bool missing_metadata = 10 ;
141
+ bool missing_metadata = 7 ;
142
142
// True this release is deprecated
143
- bool deprecated = 11 ;
143
+ bool deprecated = 8 ;
144
144
}
145
145
146
146
message InstalledPlatformReference {
0 commit comments