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

ide 1.5.x preferences moved to "Arduino15" folder for windows and macosx

see #1167
This commit is contained in:
Federico Fissore
2013-02-06 13:42:07 +01:00
parent 3d2ab5639b
commit 5cebf99de5
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ public class Platform extends processing.app.Platform {
public File getSettingsFolder() throws Exception { public File getSettingsFolder() throws Exception {
return new File(getLibraryFolder(), "Arduino"); return new File(getLibraryFolder(), "Arduino15");
} }

View File

@ -188,7 +188,7 @@ public class Platform extends processing.app.Platform {
String appDataPath = String appDataPath =
Registry.getStringValue(REGISTRY_ROOT_KEY.CURRENT_USER, keyPath, "AppData"); Registry.getStringValue(REGISTRY_ROOT_KEY.CURRENT_USER, keyPath, "AppData");
File dataFolder = new File(appDataPath, "Arduino"); File dataFolder = new File(appDataPath, "Arduino15");
return dataFolder; return dataFolder;
} }