From 0c325b4ff6118be331dfb27db06a6596bb6ebde8 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Thu, 21 Sep 2017 16:28:32 +0200 Subject: [PATCH] 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); ``` --- build/build.xml | 10 +++++----- build/macosx/appbundler-1.0ea-arduino4.jar.zip.sha | 1 - build/macosx/appbundler-1.0ea-arduino5.jar.zip.sha | 1 + 3 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 build/macosx/appbundler-1.0ea-arduino4.jar.zip.sha create mode 100644 build/macosx/appbundler-1.0ea-arduino5.jar.zip.sha diff --git a/build/build.xml b/build/build.xml index d95f8def6..b6cdf2498 100644 --- a/build/build.xml +++ b/build/build.xml @@ -373,13 +373,13 @@ - - - - + + + + - +