starting rev 0136

This commit is contained in:
benfry
2007-11-24 15:11:30 +00:00
parent 4f3417b5ea
commit b6b4fa1066
5 changed files with 94 additions and 86 deletions
+2 -2
View File
@@ -44,8 +44,8 @@ import processing.core.*;
* files and images, etc) that comes from that.
*/
public class Base {
static final int VERSION = 135;
static final String VERSION_NAME = "0135 Beta";
static final int VERSION = 136;
static final String VERSION_NAME = "0136 Beta";
// set to true after the first time it's built.
// so that the errors while building don't show up again.
+36
View File
@@ -1,3 +1,39 @@
0135 core
X modelX/Y/Z still having trouble
X http://dev.processing.org/bugs/show_bug.cgi?id=486
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1186614415
X add docs for model/screen/Y/Z
X added for model, along with example.
X screen was already complete
X bring back opengl mipmaps (create them myself? try w/ newer jogl?)
X opengl mipmaps are leaking (regression in spite of #150 fix)
X http://dev.processing.org/bugs/show_bug.cgi?id=610
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1193967684
X seems to not actually be a problem on mbp, try desktop?
X copy() was needing updatePixels() when used with OPENGL or JAVA2D
X http://dev.processing.org/bugs/show_bug.cgi?id=681
X check on the bug report for this one as well
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1173394373
earlier
o add notes about fixing serial on the mac to the faq (and link to bug)
X not necessary, hopefuly things working better now
X utf8 and encodings
X createWriter() and createReader() that take encodings
X xml files seem to be a lot of UTF-8
X xml stuff
X getItem("name");
X getItems("name"); (same, but looks for multiple matches
X getItem("path/to/item");
o or could use getItem and getItemList? getItemArray()?
o read more about xpath
X parse xml from a string object
X not have to just use Reader
X add mention of this to the board
o update to new version of jogl
X fix mini p5 bugs for eugene
0134 core
X add noLights() method
X http://dev.processing.org/bugs/show_bug.cgi?id=666
+2 -33
View File
@@ -1,37 +1,6 @@
0135 core
X modelX/Y/Z still having trouble
X http://dev.processing.org/bugs/show_bug.cgi?id=486
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1186614415
X add docs for model/screen/Y/Z
X added for model, along with example.
X screen was already complete
X bring back opengl mipmaps (create them myself? try w/ newer jogl?)
X opengl mipmaps are leaking (regression in spite of #150 fix)
X http://dev.processing.org/bugs/show_bug.cgi?id=610
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1193967684
X seems to not actually be a problem on mbp, try desktop?
X copy() was needing updatePixels() when used with OPENGL or JAVA2D
X http://dev.processing.org/bugs/show_bug.cgi?id=681
X check on the bug report for this one as well
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1173394373
0136 core
earlier
o add notes about fixing serial on the mac to the faq (and link to bug)
X not necessary, hopefuly things working better now
X utf8 and encodings
X createWriter() and createReader() that take encodings
X xml files seem to be a lot of UTF-8
X xml stuff
X getItem("name");
X getItems("name"); (same, but looks for multiple matches
X getItem("path/to/item");
o or could use getItem and getItemList? getItemArray()?
o read more about xpath
X parse xml from a string object
X not have to just use Reader
X add mention of this to the board
o update to new version of jogl
X fix mini p5 bugs for eugene
_ can bug 77 be fixed with a finalizer?
reference/online
+53
View File
@@ -1,3 +1,56 @@
0135 pde
o opening a file from right-click in osx
o opens the new thing directly behind an untitled document
X improve how fonts are parsed from the preferences file
X this was causing strange errors as prefs files became corrupted
earlier
X made changes to keywords.txt, but this is broken--it's autogenerated
X keywords/reference
X map is going to null reference, not colored properly
X add beginRaw, endRaw, map to keywords.txt
X find in reference problems
X ? doesn't work with find in reference (actually came up as 'null')
X "find in ref" on XMLElement brings up ref for null (ha)
o should we use if() or if in the reference
X include docs for moviemaker
X also changed finishMovie() to stop() (for consistency)
X only inside size() should gray bg and white fill get called (defaults)
X defaults() is separate from beginDraw/endDraw init/end stuff
o add to sketchbook menu:
o "recent sketches" option (only for things that still exist)
o turn this off by default
o "reload sketchbook" option
o "show sketchbook folder"
X start removing pre-1.4 support
X multiple windows
o what happens when p5 is launched without all its pieces?
o both on windows and mac... is there a way put up useful message
o if everything moved into the .app file, how do you add applet.html?
o can we use useragent to determine whether java 1.4 is in use?
o for mac, could see if it's an old safari (1.3) or firefox (also 1.3)
o for windows, the classid will take care of it all (firefox too?)
o for linux, everyone's using 1.4/1.5 anyway
X rewrite section on versions of java
X we're dropping support for anything before 1.4
X and don't recommend anything before 1.4.2
X we'll support 1.5 a little more now, but only libraries, not syntax
X no support for java 1.6 anytime soon
X to use 1.5+ syntax, use p5 embedded in eclipse
X what's with this fill() bug?
X http://dev.processing.org/bugs/show_bug.cgi?id=468
X background() also not making it through to raw recorder
X this should be fixed, just double-check
X add option to prefs to override memory settings
X it's a checkbox, when used it will force external runtime
X include a fill-in box with the default and various other settings
X values are in megabytes
o reload sketchbook option w/o restarting p5
o students want to manipulate the sketchbook itself
X update javadoc on web site to include xml ref
X probably need to traverse into xml and candy folders.. others?
0134 pde
X fix problem with fractional px sizes and adobe cs3
X http://dev.processing.org/bugs/show_bug.cgi?id=667
+1 -51
View File
@@ -1,54 +1,4 @@
0135 pde
o opening a file from right-click in osx
o opens the new thing directly behind an untitled document
X improve how fonts are parsed from the preferences file
X this was causing strange errors as prefs files became corrupted
earlier
X made changes to keywords.txt, but this is broken--it's autogenerated
X keywords/reference
X map is going to null reference, not colored properly
X add beginRaw, endRaw, map to keywords.txt
X find in reference problems
X ? doesn't work with find in reference (actually came up as 'null')
X "find in ref" on XMLElement brings up ref for null (ha)
o should we use if() or if in the reference
X include docs for moviemaker
X also changed finishMovie() to stop() (for consistency)
X only inside size() should gray bg and white fill get called (defaults)
X defaults() is separate from beginDraw/endDraw init/end stuff
o add to sketchbook menu:
o "recent sketches" option (only for things that still exist)
o turn this off by default
o "reload sketchbook" option
o "show sketchbook folder"
X start removing pre-1.4 support
X multiple windows
o what happens when p5 is launched without all its pieces?
o both on windows and mac... is there a way put up useful message
o if everything moved into the .app file, how do you add applet.html?
o can we use useragent to determine whether java 1.4 is in use?
o for mac, could see if it's an old safari (1.3) or firefox (also 1.3)
o for windows, the classid will take care of it all (firefox too?)
o for linux, everyone's using 1.4/1.5 anyway
X rewrite section on versions of java
X we're dropping support for anything before 1.4
X and don't recommend anything before 1.4.2
X we'll support 1.5 a little more now, but only libraries, not syntax
X no support for java 1.6 anytime soon
X to use 1.5+ syntax, use p5 embedded in eclipse
X what's with this fill() bug?
X http://dev.processing.org/bugs/show_bug.cgi?id=468
X background() also not making it through to raw recorder
X this should be fixed, just double-check
X add option to prefs to override memory settings
X it's a checkbox, when used it will force external runtime
X include a fill-in box with the default and various other settings
X values are in megabytes
o reload sketchbook option w/o restarting p5
o students want to manipulate the sketchbook itself
X update javadoc on web site to include xml ref
X probably need to traverse into xml and candy folders.. others?
0136 pde
eclipse