Skip to content

Commit df47e4b

Browse files
author
jantje
committed
reinstated esp8266 and made jantjes_libraries compliant
1 parent 48995fb commit df47e4b

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

io.sloeber.core/src/io/sloeber/core/common/ConfigurationPreferences.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,10 @@ public class ConfigurationPreferences {
4444
private static final String KEY_MANAGER_JSON_URLS_V3 = "Arduino Manager board Urls"; //$NON-NLS-1$
4545
private static final String KEY_MANAGER_ARDUINO_LIBRARY_JSON_URL = "http://downloads.arduino.cc/libraries/library_index.json"; //$NON-NLS-1$
4646
private static final String KEY_MANAGER_JSON_URLS = "Manager jsons"; //$NON-NLS-1$
47-
private static final String DEFAULT_JSON_URLS = "http://downloads.arduino.cc/packages/package_index.json\nhttps://raw.githubusercontent.com/jantje/hardware/master/package_jantje_index.json\nhttps://raw.githubusercontent.com/jantje/ArduinoLibraries/master/jantje_library_index.json" //$NON-NLS-1$
48-
// + System.lineSeparator() +
49-
// "http://arduino.esp8266.com/stable/package_esp8266com_index.json"
50-
// //$NON-NLS-1$
51-
+ System.lineSeparator() + KEY_MANAGER_ARDUINO_LIBRARY_JSON_URL;
47+
private static final String DEFAULT_JSON_URLS = "http://downloads.arduino.cc/packages/package_index.json\n" //$NON-NLS-1$
48+
+ "https://raw.githubusercontent.com/jantje/hardware/master/package_jantje_index.json\n" //$NON-NLS-1$
49+
+ "https://raw.githubusercontent.com/jantje/ArduinoLibraries/master/library_jantje_index.json\n" //$NON-NLS-1$
50+
+ "http://arduino.esp8266.com/stable/package_esp8266com_index.json\n" + KEY_MANAGER_ARDUINO_LIBRARY_JSON_URL; //$NON-NLS-1$
5251
// preference nodes
5352
private static final String NODE_ARDUINO = Activator.NODE_ARDUINO;
5453
private static final String LIBRARY_PATH_SUFFIX = "libraries"; //$NON-NLS-1$
@@ -220,8 +219,8 @@ public static void setUpdateJasonFilesFlag(boolean newFlag) {
220219
private static String systemHash = null;
221220

222221
/**
223-
* Make a unique hashKey based on system parameters so we can identify users
224-
* To make the key the mac addresses of the network cards are used
222+
* Make a unique hashKey based on system parameters so we can identify users To
223+
* make the key the mac addresses of the network cards are used
225224
*
226225
* @return a unique key identifying the system
227226
*/

0 commit comments

Comments
 (0)