1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-08 02:54:24 +01:00
Martino Facchin 0c325b4ff6 Update appbundler
This fixes the locale not being set correctly in some cases, and forces CFBundleDevelopmentRegion to en to overcome High Sierra Java bug

Patch:
```
diff -r 97eb6c13cf33 appbundler/src/com/oracle/appbundler/AppBundlerTask.java
--- a/appbundler/src/com/oracle/appbundler/AppBundlerTask.java  Wed Aug 02 12:06:27 2017 +0200
+++ b/appbundler/src/com/oracle/appbundler/AppBundlerTask.java  Thu Sep 21 16:13:04 2017 +0200
@@ -601,7 +601,7 @@
             xout.writeCharacters("\n");

             // Write bundle properties
-            writeProperty(xout, "CFBundleDevelopmentRegion", "English");
+            writeProperty(xout, "CFBundleDevelopmentRegion", "en");
             writeProperty(xout, "CFBundleExecutable", executableName);
             writeProperty(xout, "CFBundleIconFile", (icon == null) ? DEFAULT_ICON_NAME : icon.getName());
             writeProperty(xout, "CFBundleIdentifier", identifier);
```
2017-09-27 17:54:49 +02:00
..
2017-09-27 17:54:49 +02:00
2017-08-28 13:04:57 +02:00
2017-05-18 15:36:17 +02:00
2016-09-21 10:38:13 +02:00
2017-09-27 17:54:49 +02:00
2017-03-21 12:15:02 +01:00
2015-08-10 09:07:55 +02:00
2016-12-12 11:42:24 -05:00
2017-03-21 12:15:02 +01:00