prepare release notes for 2.0a1

This commit is contained in:
benfry
2011-09-02 15:56:50 +00:00
parent 6e11e9418d
commit 942172cd9e
3 changed files with 37 additions and 4 deletions
+33
View File
@@ -1,3 +1,36 @@
PROCESSING 2.0a1 (REV 0200) - 2 September 2011
First alpha release as we head toward 2.0. Please read the changes page
to learn about what's different: http://wiki.processing.org/w/Changes
[ since we last spoke ]
+ Lots of video work from Andres.
+ Updated to Java 6u26 on Windows and Linux.
+ HTML escapes for < and > were not working properly
http://code.google.com/p/processing/issues/detail?id=771
+ Quit if multiple instances of Processing are running (see the Wiki).
+ Fixed another problem with missing shearX/Y() in JAVA2D
http://code.google.com/p/processing/issues/detail?id=784
+ Removed textMode(SCREEN).
+ Added expand(long) and expand(double) because of Table.
+ PImage.save() with full path raises exception
http://code.google.com/p/processing/issues/detail?id=808
+ Fix problem where loading data from an http:// stream would
run out of memory on Android.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
PROCESSING REV 0199 - 27 June 2011
Handful of bug fixes, primarly to deal with issues introduced in 0198.
+2 -4
View File
@@ -3,6 +3,8 @@ X remove textMode(SCREEN)
X added expand(long) and expand(double) because of Table
X PImage.save() with full path raises exception
X http://code.google.com/p/processing/issues/detail?id=808
X update wiki re: PNode... also include notes about the changes
X add note about textMode(SCREEN) to the wiki
_ change how beginRecord() works.. passing around PApplet vs PGraphics is gross
_ have to pass PApplet just to make the rendering work to both renderers
@@ -13,10 +15,6 @@ _ for more options, just integrate the fs library?
_ http://www.superduper.org/processing/fullscreen_api/
_ https://github.com/kritzikratzi/jAppleMenuBar/blob/master/src/native/jAppleMenuBar.m
X update wiki re: PNode... also include notes about the changes
_ add note about textMode(SCREEN) to the wiki
SCREEN was a super fast/efficient way of rendering text with P2D and P3D, but since they're going bye-bye and it's actually slower in the remaining renderers, it's going away.
_ if save() returns boolean, does saveFrame()?
_ also need to copy this over to android
+2
View File
@@ -7,6 +7,8 @@ X code to quit if multiple instances are running from peter
X another problem with missing shearX/Y() in JAVA2D
X http://code.google.com/p/processing/issues/detail?id=784
_ don't show library conflict warning until someone tries to build code
_ too many people seem to think this is an error
_ work on code to quit if multiple instances are running
_ need to bring the other instance to front