starting revision 0171

This commit is contained in:
benfry
2009-10-18 22:17:38 +00:00
parent 18f4ae36b7
commit 1201453ba7
5 changed files with 59 additions and 53 deletions
+2 -2
View File
@@ -40,8 +40,8 @@ import processing.core.*;
* files and images, etc) that comes from that.
*/
public class Base {
static final int REVISION = 170;
static String VERSION_NAME = "0170";
static final int REVISION = 171;
static String VERSION_NAME = "0171";
static HashMap<Integer, String> platformNames = new HashMap<Integer, String>();
static {
+19
View File
@@ -1,3 +1,22 @@
0170 core (1.0.8)
X added some min/max functions that work with doubles
X not sure if those are staying in or not
X filter(RGB) supposed to be filter(OPAQUE)
X http://dev.processing.org/bugs/show_bug.cgi?id=1346
X implement non-power-of-2 textures
X fix get() when used with save() in OpenGL mode
X immediately update projection with OpenGL
X in the past, projection updates required a new frame
X also prevents camera/project from being reset with setSize() (regression?)
X which was a problem anyway because it made GL calls outside draw()
X partial fix for texture edge problems with opengl
o http://dev.processing.org/bugs/show_bug.cgi?id=602
X some camera problems may be coming from "cameraNear = -8" line
X this may cause other problems with drawing/clipping however
X opengl camera does not update on current frame (has to do a second frame)
X remove methods from PApplet that use doubles
0169 core (1.0.7)
X remove major try/catch block from PApplet.main()
X hopefully will allow some exception stuff to come through properly
+1 -17
View File
@@ -1,20 +1,4 @@
0170 core
X added some min/max functions that work with doubles
X not sure if those are staying in or not
X filter(RGB) supposed to be filter(OPAQUE)
X http://dev.processing.org/bugs/show_bug.cgi?id=1346
X implement non-power-of-2 textures
X fix get() when used with save() in OpenGL mode
X immediately update projection with OpenGL
X in the past, projection updates required a new frame
X also prevents camera/project from being reset with setSize() (regression?)
X which was a problem anyway because it made GL calls outside draw()
X partial fix for texture edge problems with opengl
o http://dev.processing.org/bugs/show_bug.cgi?id=602
X some camera problems may be coming from "cameraNear = -8" line
X this may cause other problems with drawing/clipping however
X opengl camera does not update on current frame (has to do a second frame)
X remove methods from PApplet that use doubles
0171 core
_ open up the pdf library more (philho)
+36
View File
@@ -1,3 +1,39 @@
0170 pde (1.0.8)
X update java on linux/windows to 6u16
X update quaqua to 6.0.1
X preferences broken
X http://dev.processing.org/bugs/show_bug.cgi?id=1320
X http://dev.processing.org/bugs/show_bug.cgi?id=1322
X http://dev.processing.org/bugs/show_bug.cgi?id=1325
X http://dev.processing.org/bugs/show_bug.cgi?id=1329
X http://dev.processing.org/bugs/show_bug.cgi?id=1336
X http://dev.processing.org/bugs/show_bug.cgi?id=1337
X http://dev.processing.org/bugs/show_bug.cgi?id=1344
X check for usequartz problems in snow leopard
X "Unrecognized option: -d32" on OS X 10.4
X http://dev.processing.org/bugs/show_bug.cgi?id=1324
X slow response or spinning wheel on osx
X remove menu dimming code
X http://dev.processing.org/bugs/show_bug.cgi?id=786
X new version of minim: 2.0.2
X http://code.compartmental.net/tools/minim/
X Outdated "Get the latest Java Plug-in here"
X http://dev.processing.org/bugs/show_bug.cgi?id=1331
X when disk is full, Processing zeroes files when it tries to save changes
X even saveStream() does this.. simple fix, b/c it's all one fxn
X or at least should be routed through a single fxn
X http://dev.processing.org/bugs/show_bug.cgi?id=967
X problems with save on close
X http://dev.processing.org/bugs/show_bug.cgi?id=1193
X deleting new tab causes troubles
X florian had another version of this
X http://dev.processing.org/bugs/show_bug.cgi?id=1332
X Saving the project with the same name as an existing tab may delete code
X http://dev.processing.org/bugs/show_bug.cgi?id=1102
X after deleting a tab code still get's preprocessed, pde file is not forgotten
X http://dev.processing.org/bugs/show_bug.cgi?id=1092
0169 pde (1.0.7)
X Erroneous line highlighting is off by one if there is no setup() routine
X http://dev.processing.org/bugs/show_bug.cgi?id=1263
+1 -34
View File
@@ -1,37 +1,4 @@
0170 pde (1.0.8)
X update java on linux/windows to 6u16
X update quaqua to 6.0.1
X preferences broken
X http://dev.processing.org/bugs/show_bug.cgi?id=1320
X http://dev.processing.org/bugs/show_bug.cgi?id=1322
X http://dev.processing.org/bugs/show_bug.cgi?id=1325
X http://dev.processing.org/bugs/show_bug.cgi?id=1329
X http://dev.processing.org/bugs/show_bug.cgi?id=1336
X http://dev.processing.org/bugs/show_bug.cgi?id=1337
X http://dev.processing.org/bugs/show_bug.cgi?id=1344
X check for usequartz problems in snow leopard
X "Unrecognized option: -d32" on OS X 10.4
X http://dev.processing.org/bugs/show_bug.cgi?id=1324
X slow response or spinning wheel on osx
X remove menu dimming code
X http://dev.processing.org/bugs/show_bug.cgi?id=786
X new version of minim: 2.0.2
X http://code.compartmental.net/tools/minim/
X Outdated "Get the latest Java Plug-in here"
X http://dev.processing.org/bugs/show_bug.cgi?id=1331
X when disk is full, Processing zeroes files when it tries to save changes
X even saveStream() does this.. simple fix, b/c it's all one fxn
X or at least should be routed through a single fxn
X http://dev.processing.org/bugs/show_bug.cgi?id=967
X problems with save on close
X http://dev.processing.org/bugs/show_bug.cgi?id=1193
X deleting new tab causes troubles
X florian had another version of this
X http://dev.processing.org/bugs/show_bug.cgi?id=1332
X Saving the project with the same name as an existing tab may delete code
X http://dev.processing.org/bugs/show_bug.cgi?id=1102
X after deleting a tab code still get's preprocessed, pde file is not forgotten
X http://dev.processing.org/bugs/show_bug.cgi?id=1092
0171 pde (1.0.9? 1.5?)
_ the code[] array in Sketch is super hokey... switch to an arraylist