mirror of
https://github.com/processing/processing4.git
synced 2026-04-19 02:39:23 +02:00
suppress unused error messages from find
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user