suppress unused error messages from find

This commit is contained in:
benfry
2011-03-09 15:15:35 +00:00
parent 681b76a342
commit 6801c25b81
2 changed files with 35 additions and 1 deletions

View File

@@ -125,7 +125,8 @@
includes="**/applet/*" />
</delete>
-->
<exec executable="find" dir="${target.path}/modes/java/examples">
<exec executable="find" dir="${target.path}/modes/java/examples"
errorproperty="ignored">
<arg line=". -name applet -exec rm -rf {} ';'" />
<!-- <arg line=". -name applet -exec echo {} ';'" />-->
</exec>

View File

@@ -1,3 +1,36 @@
PROCESSING REV 0194 - 9 March 2011
[ notes ]
+ Because both OpenGL and OpenGL2 are present, there may be conflicts if you
implement any OpenGL-specific code outside the Processing API. If your sketch
includes either of the following lines:
import javax.media.opengl.*;
import javax.media.opengl.glu.*;
then you should remove one of the OpenGL libraries, depending on which you
would like to use.
[ fixes ]
+ The Auto Format command went missing in 0193. It's back for 0194, but is
now located in the Edit menu, where it will stay for the rest of its long
and happy life.
+ The "Import Library" menu wasn't being updated properly in 0193. Note that
for the time being, there are no core libraries on Android. (OpenGL is built
in, for instance.)
[ additions ]
+ Added a new icon for "Export to Application", along the lines of the
icons used on the Android side.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
PROCESSING REV 0193 - 8 March 2011
The PDE is receiving a major overhaul. The most obvious change is that