mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
finalizing 2.0b7
This commit is contained in:
+5
-2
@@ -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">
|
||||
|
||||
@@ -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§ion=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.
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user