Skip to content

Commit 0c325b4

Browse files
committed
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); ```
1 parent b400e16 commit 0c325b4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build/build.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -373,13 +373,13 @@
373373
<mkdir dir="${staging_folder}/work" />
374374

375375
<antcall target="unzip">
376-
<param name="archive_file" value="${staging_folder}/appbundler-1.0ea-arduino4.jar.zip" />
377-
<param name="archive_url" value="https://downloads.arduino.cc/appbundler-1.0ea-arduino4.jar.zip" />
378-
<param name="final_folder" value="${staging_folder}/appbundler-1.0ea-arduino4" />
379-
<param name="dest_folder" value="${staging_folder}/appbundler-1.0ea-arduino4" />
376+
<param name="archive_file" value="${staging_folder}/appbundler-1.0ea-arduino5.jar.zip" />
377+
<param name="archive_url" value="https://downloads.arduino.cc/appbundler-1.0ea-arduino5.jar.zip" />
378+
<param name="final_folder" value="${staging_folder}/appbundler-1.0ea-arduino5" />
379+
<param name="dest_folder" value="${staging_folder}/appbundler-1.0ea-arduino5" />
380380
</antcall>
381381

382-
<taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="${staging_folder}/appbundler-1.0ea-arduino4/appbundler-1.0ea-arduino4.jar"/>
382+
<taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="${staging_folder}/appbundler-1.0ea-arduino5/appbundler-1.0ea-arduino5.jar"/>
383383

384384
<bundleapp
385385
jvmRequired="1.8"

build/macosx/appbundler-1.0ea-arduino4.jar.zip.sha

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
63259fca0c3c7588d3d01a5aeec96c615362186a

0 commit comments

Comments
 (0)