tweaks to editor based on feedback

This commit is contained in:
benfry
2004-10-10 01:01:34 +00:00
parent 3b8789e316
commit efbf7e299f
9 changed files with 100 additions and 54 deletions
+1
View File
@@ -70,6 +70,7 @@ chmod +x processing/Processing.app/Contents/MacOS/JavaApplicationStub
RES=processing/Processing.app/Contents/Resources/Java/
mkdir -p $RES
mv processing/lib/*.jar $RES/
mv $RES/core.jar processing/lib/
# directories used by the app
mkdir processing/lib/build
@@ -31,7 +31,7 @@
<key>JVMVersion</key>
<string>1.3+</string>
<key>ClassPath</key>
<string>$JAVAROOT/pde.jar:$JAVAROOT/core.jar:$JAVAROOT/antlr.jar:$JAVAROOT/oro.jar:lib/build</string>
<string>$JAVAROOT/pde.jar:lib/core.jar:$JAVAROOT/antlr.jar:$JAVAROOT/oro.jar:lib/build</string>
<key>Properties</key>
<dict>
<key>apple.laf.useScreenMenuBar</key>
+1 -1
View File
@@ -108,7 +108,7 @@ cd ../..
# get the libs
mkdir -p work/Processing.app/Contents/Resources/Java/
cp work/lib/*.jar work/Processing.app/Contents/Resources/Java/
cp work/lib/core.jar work/lib/
### -- BUILD LIBRARIES ------------------------------------------------
+4
View File
@@ -98,6 +98,10 @@ changed in the future, but for now, they're not actually 'broken'.
when extra libraries, multiple source code files (more than one tab),
or extra code files in the 'code' folder are employed.
- a long sketch menu that goes off the edge of the screen? doesn't
scroll properly? not much we can do. this is a java issue which
happens on most platforms. to get around it, you can organize your
sketches into subfolders which will appear as submenus.
..................................................................
+7
View File
@@ -203,6 +203,13 @@ quitting presentation mode.. on other platforms, hitting the
there seems to be some key event weirdness under osx. we hope to find
a fix someday.
out of memory? right-click on processing, select "show package
contents", then edit "Info.plist" inside "Contents". change these lines:
<key>VMOptions</key>
<string>-Xms128M -Xmx256M</string>
to set to something higher than 128M and 256M (128 and 256 megabytes
of ram) as you need to / at your own risk.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .