finalizing 2.0b7

This commit is contained in:
benfry
2012-12-07 18:39:35 +00:00
parent 55c00abbf0
commit 6c472fae2d
3 changed files with 8 additions and 3 deletions
+5 -2
View File
@@ -392,8 +392,11 @@
<target name="macosx-run" depends="macosx-build"
description="Run Mac OS X version">
<exec executable="Processing.app/Contents/MacOS/JavaApplicationStub"
dir="macosx/work" spawn="false"/>
<exec executable="open" dir="macosx/work" spawn="true">
<arg value="-a" />
<arg value="/Applications/Utilities/Terminal.app" />
<arg value="Processing.app/Contents/MacOS/JavaApplicationStub" />
</exec>
</target>
<target name="macosx-dist-sign" if="codesign">
+2 -1
View File
@@ -39,7 +39,7 @@ PROCESSING 2.0b7 (REV 0215) - 25 November 2012
compatibility issue). This was changed in recent releases, but missing here.
http://code.google.com/p/processing/issues/detail?id=859
+ Implement more Mac OS X key bindings
+ More Mac OS X key bindings have been implemented in the editor:
http://code.google.com/p/processing/issues/detail?id=1354
http://guides.macrumors.com/Keyboard_shortcuts&section=10#Text_Shortcuts
@@ -54,6 +54,7 @@ PROCESSING 2.0b7 (REV 0215) - 25 November 2012
for (TableRow row : table) { ... }
has now changed to
for (TableRow row : table.getRows()) { ... }
(This may change to rows() on the next round, pending other API tweaks)
+ Change default for shift-backspace to just be backspace. To change it back,
set editor.keys.shift_backspace_is_delete=true in preferences.txt.
+1
View File
@@ -260,6 +260,7 @@ need option to save table
join tables together (static is kinda gross)
lastRowIndex() (to avoid getRowCount() - 1)
addRow()
rows() instead of getRows() (doesn't perform like our other get() functions)
Request r = createRequest("http://p5.org/feed/13134.jpg");
Request r = createRequest("http://p5.org/feed/13134.jpg", "callbackName");