increase heap size to 256m (-Xmx256) per Manindra request

This commit is contained in:
Ben Fry
2014-06-06 12:39:58 -04:00
parent feb7f2328d
commit 4359a16f0e
5 changed files with 25 additions and 3 deletions
+2 -1
View File
@@ -423,8 +423,9 @@
<!-- Probably no longer needed? [fry 130917]
<option value="-Xms128M" />
<option value="-Xmx256M" />
-->
<!-- returning 140606 per PDE X request -->
<option value="-Xmx256M" />
<option value="-Dapple.awt.application.name=Processing" />
+2 -2
View File
@@ -103,7 +103,7 @@ cmd_name='processing-java'
if [ $current_name = $cmd_name ]
then
java -Djna.nosys=true processing.mode.java.Commander "$@"
java -Djna.nosys=true -Xmx256m processing.mode.java.Commander "$@"
exit $?
else
# Start Processing in the same directory as this script
@@ -114,5 +114,5 @@ else
fi
cd "$APPDIR"
java -Djna.nosys=true processing.app.Base "$SKETCH" &
java -Djna.nosys=true -Xmx256m processing.app.Base "$SKETCH" &
fi
+2
View File
@@ -34,6 +34,8 @@
<opt>-Djna.nosys=true</opt>
<!-- for 2.2, set a minimum version -->
<minVersion>1.7.0_40</minVersion>
<!-- increase available per PDE X request -->
<maxHeapSize>256m</maxHeapSize>
</jre>
<messages>
<startupErr>An error occurred while starting the application.</startupErr>
+2
View File
@@ -34,6 +34,8 @@
<opt>-Djna.nosys=true</opt>
<!-- for 2.2, set a minimum version -->
<minVersion>1.7.0_40</minVersion>
<!-- increase available per PDE X request -->
<maxHeapSize>256m</maxHeapSize>
</jre>
<splash>
<file>about.bmp</file>
+17
View File
@@ -1,4 +1,21 @@
0228 pde
X increase heap size to 256m (-Xmx256) per Manindra request
_ incorporate new preproc
_ https://github.com/fjenett/processing-preprocessor-antlr4
_ glw? lwjgl?
_ move sketchbook into its own window
_ move recent into the sketchbook menu
_ needs to recognize the p5 app folder
_ also should recognize the user's home dir
_ move examples into web repo
_ make reference and examples build process part of dist
_ separate ant targets, but only require them for dist
_ as separate targets, folks can build explicitly if they'd like
_ remove reference.zip from main repo
_ processing-web/java_generate/ReferenceGenerator
_ shouldn't write sketch.properties unless it's a non-default mode
_ https://github.com/processing/processing/issues/2531
_ huge i18n patch