1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

AVR bundle: by default the IDE is built bundled with the avr toolchain and cores

By passing -Dlight_bundle=1 to ant, an light/empty IDE is built
This commit is contained in:
Federico Fissore
2015-03-05 17:42:26 +01:00
parent 562c566618
commit d050c4ee4a
15 changed files with 345 additions and 73 deletions

View File

@ -142,7 +142,7 @@ public class ContributionIndexTableModel extends FilteredAbstractTableModel {
for (ContributedPackage pack : index.getPackages()) {
for (ContributedPlatform platform : pack.getPlatforms()) {
if (category != null) {
if (!platform.getCategory().equals(category))
if (!category.equals(platform.getCategory()))
continue;
}
if (!stringContainsAll(platform.getName(), filters))