mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
starting next release
This commit is contained in:
@@ -41,8 +41,8 @@ import processing.core.*;
|
||||
* files and images, etc) that comes from that.
|
||||
*/
|
||||
public class Base {
|
||||
static final int REVISION = 164;
|
||||
static String VERSION_NAME = "0164";
|
||||
static final int REVISION = 165;
|
||||
static String VERSION_NAME = "0165";
|
||||
|
||||
static HashMap<Integer, String> platformNames = new HashMap();
|
||||
static {
|
||||
@@ -322,7 +322,7 @@ public class Base {
|
||||
for (int i = 0; i < args.length; i++) {
|
||||
String path = args[i];
|
||||
// Fix a problem with systems that use a non-ASCII languages. Paths are
|
||||
// being passed in with 8.3 syntax, which makes the sketch loader code
|
||||
// being passed in with 8.3 syntax, which makes the sketch loader code
|
||||
// unhappy, since the sketch folder naming doesn't match up correctly.
|
||||
// http://dev.processing.org/bugs/show_bug.cgi?id=1089
|
||||
if (isWindows()) {
|
||||
@@ -803,7 +803,7 @@ public class Base {
|
||||
null,
|
||||
options,
|
||||
options[0]);
|
||||
if (result == JOptionPane.NO_OPTION ||
|
||||
if (result == JOptionPane.NO_OPTION ||
|
||||
result == JOptionPane.CLOSED_OPTION) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,68 @@
|
||||
0163 core (1.0.1)
|
||||
0164 core (1.0.2)
|
||||
X requestImage() causing problems with JAVA2D
|
||||
X fix minor strokeWeight bug with OpenGL
|
||||
X text() with char array
|
||||
o add documentation
|
||||
o add this for text in a rectangle?
|
||||
X minor bug fix to svg files that weren't being resized properly
|
||||
X OpenGL is rendering darker in 0149+
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=958
|
||||
X the fix has been found, just incorporate it
|
||||
X thanks to dave bollinger
|
||||
X OutOfMemoryError with ellipse() in P3D and OPENGL
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1086
|
||||
X should also fix problem with AIOOBE
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1117
|
||||
X point(x,y) ignores noStroke() (in some renderers)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1090
|
||||
X fix startup problem when scheme coloring was odd
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1109
|
||||
X fix several point() problems with P3D
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1110
|
||||
X nextPage() not working properly with PDF as the renderer
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1131
|
||||
X save styles when nextPage() is called
|
||||
X beginRaw() broken (no DXF, etc working)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1099
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1144
|
||||
X Fix algorithm for quadratic to cubic curve conversion
|
||||
X wrong algorithm in PGraphicsOpenGL and PShapeSVG
|
||||
X (thanks to user 'shambles')
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1122
|
||||
X tint() not working in P2D
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1132
|
||||
X blend() y coordinates inverted when using OpenGL
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1137
|
||||
|
||||
invalid/wontfix/dupe
|
||||
X Processing will not start with non-standard disk partitioning on OS X
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1127
|
||||
X Got NoClassDefFoundError exception when accessing quicktime API
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1128
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1129
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1130
|
||||
X not using present mode correctly
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1138
|
||||
X apparent graphics driver conflict on vista
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1140
|
||||
X PImage.save() does not create parent directories
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1124
|
||||
X sketch turning blue and not working on osx
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1164
|
||||
X dupe: blend() inaccurary
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1008
|
||||
X glPushAttrib style function
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1150
|
||||
X calling saveFrame() in noLoop() (update reference)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1155
|
||||
|
||||
xml
|
||||
X fix for xml elements that have null names
|
||||
X added listChildren() method
|
||||
X added optional toString(boolean) parameter to enable/disable indents
|
||||
|
||||
|
||||
0163 core (1.0.1)
|
||||
X do not parse split() with regexp
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1060
|
||||
X ArrayIndexOutOfBoundsException in ellipseImpl() with 1.0
|
||||
|
||||
@@ -1,68 +1,5 @@
|
||||
0164 core (1.0.2)
|
||||
X requestImage() causing problems with JAVA2D
|
||||
X fix minor strokeWeight bug with OpenGL
|
||||
X text() with char array
|
||||
o add documentation
|
||||
o add this for text in a rectangle?
|
||||
X minor bug fix to svg files that weren't being resized properly
|
||||
X OpenGL is rendering darker in 0149+
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=958
|
||||
X the fix has been found, just incorporate it
|
||||
X thanks to dave bollinger
|
||||
X OutOfMemoryError with ellipse() in P3D and OPENGL
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1086
|
||||
X should also fix problem with AIOOBE
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1117
|
||||
X point(x,y) ignores noStroke() (in some renderers)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1090
|
||||
X fix startup problem when scheme coloring was odd
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1109
|
||||
X fix several point() problems with P3D
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1110
|
||||
X nextPage() not working properly with PDF as the renderer
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1131
|
||||
X save styles when nextPage() is called
|
||||
X beginRaw() broken (no DXF, etc working)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1099
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1144
|
||||
X Fix algorithm for quadratic to cubic curve conversion
|
||||
X wrong algorithm in PGraphicsOpenGL and PShapeSVG
|
||||
X (thanks to user 'shambles')
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1122
|
||||
X tint() not working in P2D
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1132
|
||||
X blend() y coordinates inverted when using OpenGL
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1137
|
||||
0165 core (1.0.3)
|
||||
|
||||
invalid/wontfix/dupe
|
||||
X Processing will not start with non-standard disk partitioning on OS X
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1127
|
||||
X Got NoClassDefFoundError exception when accessing quicktime API
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1128
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1129
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1130
|
||||
X not using present mode correctly
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1138
|
||||
X apparent graphics driver conflict on vista
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1140
|
||||
X PImage.save() does not create parent directories
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1124
|
||||
X sketch turning blue and not working on osx
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1164
|
||||
X dupe: blend() inaccurary
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1008
|
||||
X glPushAttrib style function
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1150
|
||||
X calling saveFrame() in noLoop() (update reference)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1155
|
||||
|
||||
xml
|
||||
X fix for xml elements that have null names
|
||||
X added listChildren() method
|
||||
X added optional toString(boolean) parameter to enable/disable indents
|
||||
|
||||
|
||||
0165 core (1.0.3) or later
|
||||
|
||||
_ if no draw() method, and renderer is not displayable, then exit
|
||||
_ static mode PDFs shouldn't just hang
|
||||
|
||||
38
done.txt
38
done.txt
@@ -1,3 +1,41 @@
|
||||
0164 pde (1.0.2)
|
||||
X Empty "code" folder causes problems with Export
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1084
|
||||
X 8.3 filenames being used when opening sketch
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1089
|
||||
X add -X switch to cp on osx build so that extended attrs are not copied
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1098
|
||||
X add JVMArchs to Info.plist so that stupid Apple error msg doesn't appear
|
||||
X StringIndexOutOfBoundsException caused by import statements with no dots
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1145
|
||||
X Pressing <Esc> in "Are you sure you want to Quit?" dialog quits Processing
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1134
|
||||
X Fix QUADS and QUAD_STRIP with P2D
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1162
|
||||
X ArrayIndexOutOfBoundsException when drawing curves in P3D and OPENGL
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1153
|
||||
X problems with negatve arc() angles in OpenGL, P3D, other inconsistencies
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1095
|
||||
|
||||
invalid
|
||||
X Sketchbook sub-menu is empty after changing Sketchbook location preference
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1123
|
||||
X something about setting memory options
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1159
|
||||
X something bizarre about syntax errors
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1161
|
||||
X "JDWP unable to initialize: Error 111 from JNI GetEnv" on Mac OS X PPC
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=959
|
||||
X Saving sketch with the same name as a class or primitive breaks sketch
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1165
|
||||
|
||||
earlier
|
||||
X "An error occurred while starting the application" with Processing 0154+
|
||||
X Maybe provide the old exe or another alternative?
|
||||
X Have someone try this on lab machines until we can find one that breaks
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=986
|
||||
|
||||
|
||||
0163 pde (1.0.1)
|
||||
X ArrayIndexOutOfBoundsException with File > New (Processing 1.0)
|
||||
X maybe a /tmp permissions problem?
|
||||
|
||||
43
todo.txt
43
todo.txt
@@ -1,46 +1,7 @@
|
||||
0164 pde
|
||||
X Empty "code" folder causes problems with Export
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1084
|
||||
X 8.3 filenames being used when opening sketch
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1089
|
||||
X add -X switch to cp on osx build so that extended attrs are not copied
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1098
|
||||
X add JVMArchs to Info.plist so that stupid Apple error msg doesn't appear
|
||||
X StringIndexOutOfBoundsException caused by import statements with no dots
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1145
|
||||
X Pressing <Esc> in "Are you sure you want to Quit?" dialog quits Processing
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1134
|
||||
X Fix QUADS and QUAD_STRIP with P2D
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1162
|
||||
X ArrayIndexOutOfBoundsException when drawing curves in P3D and OPENGL
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1153
|
||||
X problems with negatve arc() angles in OpenGL, P3D, other inconsistencies
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1095
|
||||
|
||||
invalid
|
||||
X Sketchbook sub-menu is empty after changing Sketchbook location preference
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1123
|
||||
X something about setting memory options
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1159
|
||||
X something bizarre about syntax errors
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1161
|
||||
X "JDWP unable to initialize: Error 111 from JNI GetEnv" on Mac OS X PPC
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=959
|
||||
X Saving sketch with the same name as a class or primitive breaks sketch
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1165
|
||||
|
||||
earlier
|
||||
X "An error occurred while starting the application" with Processing 0154+
|
||||
X Maybe provide the old exe or another alternative?
|
||||
X Have someone try this on lab machines until we can find one that breaks
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=986
|
||||
0165 pde
|
||||
|
||||
|
||||
. . .
|
||||
|
||||
|
||||
0165 pde (or later)
|
||||
|
||||
_ update to newer itext
|
||||
_ update to java 6u12
|
||||
|
||||
X try adding a space to the name of the help menu for beachball problems
|
||||
|
||||
Reference in New Issue
Block a user