starting rev 0095

This commit is contained in:
benfry
2005-11-01 08:49:18 +00:00
parent e4d6f9a8e6
commit 80f7e085f0
4 changed files with 51 additions and 45 deletions
+23
View File
@@ -1,3 +1,26 @@
0094 core
X fix bug that was causing font sizes not to be set on opengl
X http://dev.processing.org/bugs/show_bug.cgi?id=174
X apply fix from toxi to make targa files less picky
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1127999630
X "folder" has been renamed to "path" to match savePath().
X added "dataPath" to return the full path to something in the data folder
X savePath should maybe be appletPath or sketchPath
X because can be used for opening files too
X (i.e. if needing a File object)
X width, height set to zero in static mode
X probably only set when resize() is called, and it's not happening
X g.smooth is always false in opengl
X http://dev.processing.org/bugs/show_bug.cgi?id=192
o triangleColors are different because they're per-triangle
o as opposed to per-vertex, because it's based on the facet of the tri
X make vertexCount etc properly accessible in PGraphics3
X so that people can do things like the dxf renderer
X also have a simple way to hook in triangle leeches to PGraphics3
X this exists, but needs to be documented, or have accessors
0093 core
X upgrade jogl to a newer rev to fix osx "cannot lock" issues
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1118603714
+1 -21
View File
@@ -1,24 +1,4 @@
0094 core
X fix bug that was causing font sizes not to be set on opengl
X http://dev.processing.org/bugs/show_bug.cgi?id=174
X apply fix from toxi to make targa files less picky
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1127999630
X "folder" has been renamed to "path" to match savePath().
X added "dataPath" to return the full path to something in the data folder
X savePath should maybe be appletPath or sketchPath
X because can be used for opening files too
X (i.e. if needing a File object)
X width, height set to zero in static mode
X probably only set when resize() is called, and it's not happening
X g.smooth is always false in opengl
X http://dev.processing.org/bugs/show_bug.cgi?id=192
o triangleColors are different because they're per-triangle
o as opposed to per-vertex, because it's based on the facet of the tri
X make vertexCount etc properly accessible in PGraphics3
X so that people can do things like the dxf renderer
X also have a simple way to hook in triangle leeches to PGraphics3
X this exists, but needs to be documented, or have accessors
0095 core
_ when using PGraphics, must call beginFrame() and endFrame()
+26
View File
@@ -1,3 +1,29 @@
0094 pde
X don't write stdout.txt/stderr.txt to the build folder
X writing to the p5 folder was causing security problems
X http://dev.processing.org/bugs/show_bug.cgi?id=177
X bug in console that was causing stderr and stdout
X to be written over one another.. oops
X console text selection immediately de-selects
X suspect console is updated every 250 ms even when the app isn't running
X simplest to just not update the console if nothing is waiting in buffer
X http://dev.processing.org/bugs/show_bug.cgi?id=180
X problem with using qtjava is probably the quotes..
X remove them because they're matching quotes elsewhere
X drag & drop implementation to add files to sketch
X http://dev.processing.org/bugs/show_bug.cgi?id=21
X test drag and drop on windows
o also test on linux
X make simple tool for casey to rebuild all the examples at once
X first select a folder, then will open each sketch in turn, and export
X just make it easier to go to the next sketch
X need to rebuild with this release because of 1.3/1.4 issues
X http://dev.processing.org/bugs/show_bug.cgi?id=117
o or add tool to hit 'next' to go through examples
o just make it "next file in folder" since examples are all over
o also need to copy examples locally
0093 pde
X println() can hose the app for the first 20-30 frames
X incorporate fix posted by mellis
+1 -24
View File
@@ -1,27 +1,4 @@
0094 pde
X don't write stdout.txt/stderr.txt to the build folder
X writing to the p5 folder was causing security problems
X http://dev.processing.org/bugs/show_bug.cgi?id=177
X bug in console that was causing stderr and stdout
X to be written over one another.. oops
X console text selection immediately de-selects
X suspect console is updated every 250 ms even when the app isn't running
X simplest to just not update the console if nothing is waiting in buffer
X http://dev.processing.org/bugs/show_bug.cgi?id=180
X problem with using qtjava is probably the quotes..
X remove them because they're matching quotes elsewhere
X drag & drop implementation to add files to sketch
X http://dev.processing.org/bugs/show_bug.cgi?id=21
X test drag and drop on windows
o also test on linux
X make simple tool for casey to rebuild all the examples at once
X first select a folder, then will open each sketch in turn, and export
X just make it easier to go to the next sketch
X need to rebuild with this release because of 1.3/1.4 issues
X http://dev.processing.org/bugs/show_bug.cgi?id=117
o or add tool to hit 'next' to go through examples
o just make it "next file in folder" since examples are all over
o also need to copy examples locally
0095 pde
_ add "reference" and "examples" categories to bugzilla