diff --git a/OSX/Metabase/Metabase-Info.plist b/OSX/Metabase/Metabase-Info.plist
index 7855331e2e578..414a414b3c456 100644
--- a/OSX/Metabase/Metabase-Info.plist
+++ b/OSX/Metabase/Metabase-Info.plist
@@ -17,11 +17,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.12.0.1
+ 0.12.0.7
CFBundleSignature
????
CFBundleVersion
- 0.12.0.1
+ 0.12.0.7
LSApplicationCategoryType
public.app-category.utilities
LSMinimumSystemVersion
diff --git a/bin/osx-release b/bin/osx-release
index 9659c543a985a..a6ed8b04e4887 100755
--- a/bin/osx-release
+++ b/bin/osx-release
@@ -187,7 +187,7 @@ sub create_dmg_from_source_dir {
'-fs', 'HFS+',
'-fsargs', '-c c=64,a=16,e=16',
'-format', 'UDRW',
- '-size', '144MB', # it looks like this can be whatever size we want; compression slims it down
+ '-size', '256MB', # it looks like this can be whatever size we want; compression slims it down
$dmg_filename) == 0 or die $!;
}
diff --git a/bin/osx-setup b/bin/osx-setup
index 4af24dbe7450c..3b433bca7125b 100755
--- a/bin/osx-setup
+++ b/bin/osx-setup
@@ -19,6 +19,7 @@ use constant UBERJAR_SRC => getcwd() . '/target/uberjar/metabase.jar';
use constant UBERJAR_DEST => getcwd() . '/OSX/Resources/metabase.jar';
use constant ENABLE_JAR_PACKING => 0;
+use constant ENABLE_JAR_OPTIONAL_FILE_STRIPPING => 0;
sub remove_jre_optional_files {
my @optional_files = ('bin/keytool',
@@ -70,7 +71,7 @@ sub pack_jre_jars {
(rcopy(JRE_HOME, JRE_DEST) or die $!) unless -d JRE_DEST;
# Remove optional files from JRE dest
-remove_jre_optional_files();
+remove_jre_optional_files() if ENABLE_JAR_OPTIONAL_FILE_STRIPPING;
# Pack JARs in JRE if applicable
pack_jar() if ENABLE_JAR_PACKING;