diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index ebbde581a..1a8b2c529 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -7,6 +7,39 @@ releases will be super crusty. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +ABOUT REV 0111 - 28 March 2006 + +Bug fix release for more of this OpenGL stuff. Also includes a +Universal Binary version of the Serial library so that the Intel +Macs can now handle serial. + +[ more bug fixes ] + ++ Fixed issues security issues with endian check in PGraphicsGL. + This should pave the way for OpenGL applets with the new + PGraphicsGL, though it's not yet possible to do them automatically. + http://dev.processing.org/bugs/show_bug.cgi?id=309 + ++ Fix to prevent lights in OpenGL mode from throwing a + BufferOverflowException. + ++ Switched to an older version of the JOGL libraries so that we can + use the versions signed by Sun, further enabling OpenGL in applets. + ++ Couple of minor fixes to the color picker + http://dev.processing.org/bugs/show_bug.cgi?id=308 + ++ More additions to the FAQ about the state of the various platforms + ++ The example using spotLight still puts up an INVALID_VALUE error, + but this seems to be a problem in the code, not PGraphicsGL. + Something in the newer JOGL just seems to be more finicky about the + values it's being fed. + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + + ABOUT REV 0110 - 22 March 2006 This version updates the OPENGL rendering mode to a newer version of diff --git a/core/todo.txt b/core/todo.txt index 314570b13..45fa7dd2c 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -14,8 +14,6 @@ X fix for lights throwing a BufferOverflowException bugs arising from / part of priorities _ color values on camera input flipped on intel macs _ http://dev.processing.org/bugs/show_bug.cgi?id=313 -_ spotLight has troubles with an invalid value -_ probably somethign weird about the params (3 vs 4) being sent _ opengl needs to shut itself down properly when closing applet _ otherwise can crash the whole browser @@ -55,6 +53,16 @@ _ set(x, y, image) y reversed in openGL _ http://dev.processing.org/bugs/show_bug.cgi?id=91 +examples +_ spotLight has troubles with an invalid value +X probably somethign weird about the params (3 vs 4) being sent +_ the first spotLight works fine, it's something with the second +_ (the one that follows the mouse) +_ just something to debug in the example +_ need a pdf example (for size(), beginRecord()) +_ need beginRaw() examples using dxf and pdf + + _ sonia (and anything awt) is locking up on load in rev 91 _ prolly something w/ the threading issues _ paint is synchronized in 0091 diff --git a/opengl/PGraphicsGL.java b/opengl/PGraphicsGL.java index 060fd02b1..fc09b6915 100644 --- a/opengl/PGraphicsGL.java +++ b/opengl/PGraphicsGL.java @@ -432,7 +432,7 @@ public class PGraphicsGL extends PGraphics3 { protected void render_triangles() { - report("into triangles"); + report("render_triangles in"); //System.out.println("rendering " + triangleCount + " triangles"); for (int i = 0; i < triangleCount; i ++) { @@ -681,7 +681,7 @@ public class PGraphicsGL extends PGraphics3 { if (raw != null) { raw.endShape(); } - report("out of triangles"); + report("render_triangles out"); } diff --git a/todo.txt b/todo.txt index 8f8478f47..0c7d31601 100644 --- a/todo.txt +++ b/todo.txt @@ -8,6 +8,7 @@ X find/build universal version of rxtx X http://dev.processing.org/bugs/show_bug.cgi?id=311 X update the faq + _ linux problems with things not showing up _ probably threading issue, 98 doesn't have any trouble _ signs point to Runner or PApplet changes between 98 and 99 @@ -32,9 +33,10 @@ _ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action _ antlr.jar in the classpath will cause trouble.. _ jogl jar files, or jogl install will cause trouble _ /System/Library/Extensions or /Library/Extensions - _ when a conflicting library is found, need to report it _ altho prolly only when it's actually different (md5hash it?) +_ this seems to be causing a lot of trouble with recent releases +_ (opengl changes and whatnot) _ issue of people calling their sketches things like Server _ warn if someone extends PApplet but mis-names the sketch @@ -621,6 +623,8 @@ LIBRARIES / General _ need to unpack InvocationTargetException in xxxxxxEvent calls _ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=VideoCamera;action=display;num=1116850328#3 +_ unregisterXxxx() calls to remove methods from libs +_ http://dev.processing.org/bugs/show_bug.cgi?id=312 LIBRARIES / Video