starting rev 0192

This commit is contained in:
benfry
2010-10-01 01:44:46 +00:00
parent f393a7758d
commit 1497c8a846
7 changed files with 64 additions and 55 deletions

View File

@@ -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

View File

@@ -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.

View File

@@ -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 */

View File

@@ -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

View File

@@ -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.

View File

@@ -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

View File

@@ -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