File tree 2 files changed +2
-1
lines changed
arduino-core/src/cc/arduino/contributions/packages
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public void setBuiltIn(boolean builtIn) {
87
87
public static final Comparator <ContributedPlatform > BUILTIN_AS_LAST = (x , y ) -> {
88
88
int px = x .isBuiltIn () ? 1 : -1 ;
89
89
int py = y .isBuiltIn () ? 1 : -1 ;
90
- return py - px ;
90
+ return px - py ;
91
91
};
92
92
93
93
private Map <ContributedToolReference , ContributedTool > resolvedToolReferences ;
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ ARDUINO 1.8.7 2018.09.11
7
7
* Fixed: IDE doesn't start if a library with invalid version is found.
8
8
* Fixed: Better dialog explaining that MacOSX 10.8 is now required. Thanks @PaulStoffregen
9
9
* Fixed: Slow "File" and "Tools" menus in MacOSX
10
+ * Fixed: Weird Board Manager behaviour if AVR core is downgraded to a version earlier than 1.6.22
10
11
* Improved first-use usability if the user don't select the serial port. Thanks @PaulStoffregen
11
12
* Custom "Tools" menu now keeps the order as defined in boards.txt.
12
13
You can’t perform that action at this time.
0 commit comments