diff --git a/android/done.txt b/android/done.txt index 98d851163..cd56d0d1d 100644 --- a/android/done.txt +++ b/android/done.txt @@ -1,3 +1,30 @@ +0191 android (pre) +X won't interpret size() in Android Mode without spaces between arguments +X http://code.google.com/p/processing/issues/detail?id=390 + +A Implement offscreen operations in A3D when FBO extension is not available +A http://code.google.com/p/processing/issues/detail?id=300 +A Get opengl matrices in A3D when GL_OES_matrix_get extension is not available +A http://code.google.com/p/processing/issues/detail?id=286 +A Implement calculateModelviewInverse() in A3D +A http://code.google.com/p/processing/issues/detail?id=287 +A Automatic clear/noClear() switch in A3D +A http://code.google.com/p/processing/issues/detail?id=289 +A Camera issues in A3D +A http://code.google.com/p/processing/issues/detail?id=367 +A major fixes for type to work properly in 3D (fixes KineticType) +A http://code.google.com/p/processing/issues/detail?id=358 +A Lighting and materials testing in A3D +A http://code.google.com/p/processing/issues/detail?id=294 +A Generate mipmaps when the GL_OES_generate_mipmaps extension is not available. +A http://code.google.com/p/processing/issues/detail?id=288 +A Finish screen pixels/texture operations in A3D +A http://code.google.com/p/processing/issues/detail?id=298 + +1) I fixed a bug in the camera handling that a user pointed out recently (http://forum.processing.org/topic/possible-3d-bug). This was a quite urgent issue, since affected pretty much everything. It went unnoticed until now because the math error canceled out with the default camera settings. +2) I also finished the implementation of the getImpl() method in PImage, so it initializes the texture of the new image in A3D mode. This makes the CubicVR example to work fine. + + 0190 android (pre) X allow screenWidth/Height as parameters to size() X right now would cause NumberFormatException diff --git a/android/todo.txt b/android/todo.txt index c8b072ee7..637d39253 100644 --- a/android/todo.txt +++ b/android/todo.txt @@ -1,28 +1,4 @@ -0191 android -X won't interpret size() in Android Mode without spaces between arguments -X http://code.google.com/p/processing/issues/detail?id=390 - -A Implement offscreen operations in A3D when FBO extension is not available -A http://code.google.com/p/processing/issues/detail?id=300 -A Get opengl matrices in A3D when GL_OES_matrix_get extension is not available -A http://code.google.com/p/processing/issues/detail?id=286 -A Implement calculateModelviewInverse() in A3D -A http://code.google.com/p/processing/issues/detail?id=287 -A Automatic clear/noClear() switch in A3D -A http://code.google.com/p/processing/issues/detail?id=289 -A Camera issues in A3D -A http://code.google.com/p/processing/issues/detail?id=367 -A major fixes for type to work properly in 3D (fixes KineticType) -A http://code.google.com/p/processing/issues/detail?id=358 -A Lighting and materials testing in A3D -A http://code.google.com/p/processing/issues/detail?id=294 -A Generate mipmaps when the GL_OES_generate_mipmaps extension is not available. -A http://code.google.com/p/processing/issues/detail?id=288 -A Finish screen pixels/texture operations in A3D -A http://code.google.com/p/processing/issues/detail?id=298 - -1) I fixed a bug in the camera handling that a user pointed out recently (http://forum.processing.org/topic/possible-3d-bug). This was a quite urgent issue, since affected pretty much everything. It went unnoticed until now because the math error canceled out with the default camera settings. -2) I also finished the implementation of the getImpl() method in PImage, so it initializes the texture of the new image in A3D mode. This makes the CubicVR example to work fine. +0192 android _ Blacked-out screen when restoring Android app from background. diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index d11f35fa5..6d7f77617 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -41,9 +41,9 @@ import processing.core.*; * files and images, etc) that comes from that. */ public class Base { - static final int REVISION = 191; + static final int REVISION = 192; /** This might be replaced by main() if there's a lib/version.txt file. */ - static public String VERSION_NAME = "0191"; + static public String VERSION_NAME = "0192"; /** Set true if this a proper release rather than a numbered revision. */ static public boolean RELEASE = false; /** True if heavy debugging error/log messages are enabled */ diff --git a/core/done.txt b/core/done.txt index 2459ad722..fa493243b 100644 --- a/core/done.txt +++ b/core/done.txt @@ -1,3 +1,17 @@ +0191 core (pre) +X fix background(PImage) for OpenGL +X http://code.google.com/p/processing/issues/detail?id=336 +X skip null entries with trim(String[]) +X NaN with PVector.angleBetween +X http://code.google.com/p/processing/issues/detail?id=340 +X fix missing getFloat() method in XML library +X setAttribute? setString/Int/Float or just set? +X get() set() methods are confusing.. too spare +X make sure that paths are created with saveStream() +X make createWriter() use buffering +X saveStream() doesn't work when intermediate directories don't exist + + 0190 core (pre) X change skewX/Y to shearX/Y X need reference update for this diff --git a/core/todo.txt b/core/todo.txt index ca029b312..79913475a 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -1,15 +1,4 @@ -0191 core -X fix background(PImage) for OpenGL -X http://code.google.com/p/processing/issues/detail?id=336 -X skip null entries with trim(String[]) -X NaN with PVector.angleBetween -X http://code.google.com/p/processing/issues/detail?id=340 -X fix missing getFloat() method in XML library -X setAttribute? setString/Int/Float or just set? -X get() set() methods are confusing.. too spare -X make sure that paths are created with saveStream() -X make createWriter() use buffering -X saveStream() doesn't work when intermediate directories don't exist +0192 core Hi all, just thought I'd share something. diff --git a/done.txt b/done.txt index 37bc8df01..b5c5aec32 100644 --- a/done.txt +++ b/done.txt @@ -1,3 +1,21 @@ +0191 (pre) +X remove unused librariesClassPath +X http://code.google.com/p/processing/issues/detail?id=360 +X add antialias option to the editor prefs window +X add smoothing inside the Linux GUI, was looking nasty +X linux permissions not set because of tar in ant +X http://code.google.com/p/processing/issues/detail?id=343 +X fix 'redo' command to work properly for different OSes +X http://code.google.com/p/processing/issues/detail?id=363 +X linux: ctrl-shift-z, macosx cmd-shift-z, windows ctrl-y +X http://en.wikipedia.org/wiki/Table_of_keyboard_shortcuts +X http://developer.apple.com/mac/library/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGUserInput/XHIGUserInput.html +X there's an extra println showing the library debug when exporting (argh) +X 1 import per library isn't correct +X some libraries will have multiple import lines +X don't keep repeating them + + 0190 (pre) X be more specific about linux/sun/java error messages X allow 'oracle' in java version name string diff --git a/todo.txt b/todo.txt index 3c7072ac1..0b1feccb4 100644 --- a/todo.txt +++ b/todo.txt @@ -1,19 +1,4 @@ -0191 -X remove unused librariesClassPath -X http://code.google.com/p/processing/issues/detail?id=360 -X add antialias option to the editor prefs window -X add smoothing inside the Linux GUI, was looking nasty -X linux permissions not set because of tar in ant -X http://code.google.com/p/processing/issues/detail?id=343 -X fix 'redo' command to work properly for different OSes -X http://code.google.com/p/processing/issues/detail?id=363 -X linux: ctrl-shift-z, macosx cmd-shift-z, windows ctrl-y -X http://en.wikipedia.org/wiki/Table_of_keyboard_shortcuts -X http://developer.apple.com/mac/library/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGUserInput/XHIGUserInput.html -X there's an extra println showing the library debug when exporting (argh) -X 1 import per library isn't correct -X some libraries will have multiple import lines -X don't keep repeating them +0192 _ remove version number from splash image