Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void setBuiltIn(boolean builtIn) {
public static final Comparator<ContributedPlatform> BUILTIN_AS_LAST = (x, y) -> {
int px = x.isBuiltIn() ? 1 : -1;
int py = y.isBuiltIn() ? 1 : -1;
return py - px;
return px - py;
};

private Map<ContributedToolReference, ContributedTool> resolvedToolReferences;
Expand Down
1 change: 1 addition & 0 deletions build/shared/revisions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ARDUINO 1.8.7 2018.09.11
* Fixed: IDE doesn't start if a library with invalid version is found.
* Fixed: Better dialog explaining that MacOSX 10.8 is now required. Thanks @PaulStoffregen
* Fixed: Slow "File" and "Tools" menus in MacOSX
* Fixed: Weird Board Manager behaviour if AVR core is downgraded to a version earlier than 1.6.22
* Improved first-use usability if the user don't select the serial port. Thanks @PaulStoffregen
* Custom "Tools" menu now keeps the order as defined in boards.txt.

Expand Down