We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Examples for any board
1 parent 821ee53 commit 096e545Copy full SHA for 096e545
app/src/processing/app/Base.java
@@ -1205,7 +1205,13 @@ public void rebuildExamplesMenu(JMenu menu) {
1205
// Sketchbook Libraries (including incompatible)
1206
} else if (libraryLocation.equals(sketchbookLibraryPath)) {
1207
if (compatible) {
1208
- sketchbookLibs.add(lib);
+ // libraries promoted from sketchbook (behave as builtin)
1209
+ if (lib.getTypes() != null && lib.getTypes().contains("Arduino")
1210
+ && lib.getArchitectures().contains("*")) {
1211
+ ideLibs.add(lib);
1212
+ } else {
1213
+ sketchbookLibs.add(lib);
1214
+ }
1215
} else {
1216
sketchbookIncompatibleLibs.add(lib);
1217
}
0 commit comments