1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Libraries now support syntax coloring and are built on IDE startup.

This commit is contained in:
David A. Mellis
2006-04-09 12:40:34 +00:00
parent 56c86b6f67
commit fb34821d84
7 changed files with 387 additions and 211 deletions

View File

@ -210,6 +210,9 @@ public class Base {
// show the window
editor.show();
// attempt to build libraries
editor.prepareLibraries();
// check for updates
if (Preferences.getBoolean("update.check")) {
new UpdateCheck(editor);
@ -1075,7 +1078,8 @@ public class Base {
}
return null;
}
//////////////////////////////////////////////////////////////
// STRINGS
@ -1229,7 +1233,4 @@ public class Base {
return splits;
}
}