diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index d9a70d0da..0cab84cbc 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -42,8 +42,8 @@ import processing.core.*; * files and images, etc) that comes from that. */ public class Base { - static final int VERSION = 144; - static final String VERSION_NAME = "0144 Beta"; + static final int VERSION = 145; + static final String VERSION_NAME = "0145 Beta"; static Platform platform; diff --git a/core/done.txt b/core/done.txt index e6efb2b6b..359711354 100644 --- a/core/done.txt +++ b/core/done.txt @@ -1,3 +1,19 @@ +0144 core +X if loading an image in p5 and the image is bad, no error msg shown +X that is, if a loadImage() turns up an access denied page +X added an error message for this, and the image width and height will be -1 +X added loadImageAsync() for threaded image loading + +opengl fixes +X incorporate changes from andres colubri into PGraphicsOpenGL +X most of the changes incorporated, something weird with constructors +X use gluErrorString() for glError() stuff +X PGraphicsOpenGL.java: +X directionalLight() and .pointLight() are both calling +X glLightNoAmbient() which then creates a new FloatBuffer +X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1199376364 + + 0143 core X some fonts broken in java 1.5 on osx have changed again X http://dev.processing.org/bugs/show_bug.cgi?id=407 diff --git a/core/todo.txt b/core/todo.txt index bff831505..8d9f54ab4 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -1,17 +1,5 @@ -0144 core -X if loading an image in p5 and the image is bad, no error msg shown -X that is, if a loadImage() turns up an access denied page -X added an error message for this, and the image width and height will be -1 -X added loadImageAsync() for threaded image loading +0145 core -opengl fixes -X incorporate changes from andres colubri into PGraphicsOpenGL -X most of the changes incorporated, something weird with constructors -X use gluErrorString() for glError() stuff -X PGraphicsOpenGL.java: -X directionalLight() and .pointLight() are both calling -X glLightNoAmbient() which then creates a new FloatBuffer -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1199376364 _ resize window will nuke font setting _ textFont() used in setup() is null once draw() arrives diff --git a/done.txt b/done.txt index 7388eb0ef..61647d319 100644 --- a/done.txt +++ b/done.txt @@ -1,3 +1,41 @@ +0144 pde +X add new reference and examples +X write revisions.txt entry that covers changes since 0135 +X format for discourse is ignoring the selection +X also shouldn't add (so much) extra space to the beginning and end +o add tool for running in jview +o http://dev.processing.org/bugs/show_bug.cgi?id=142 +o calls export, or only available after export (or when an applet dir exists) +o warn user that applet html will be over-written +X no longer supporting 1.1 +X on startup, make sure that the jdi classes are available +X if not, tell the user to install a friggin jdk +X this way we can release a windows version w/o java +X don't open more than one copy of the preferences window +X http://dev.processing.org/bugs/show_bug.cgi?id=830 +X modify namespace handling in xml lib +X changed getFullName() to getName() +X changed getName() to getLocalName() +o look through the code for any places where UTF-8 not used + +text handling +X block comment - don't bother with last line if starting it +X (same behavior as eclipse) +X add block comment to right-click menu +X http://dev.processing.org/bugs/show_bug.cgi?id=840 +X add increase/decrease indent to edit and right-click edit menu +X http://dev.processing.org/bugs/show_bug.cgi?id=841 + +fix problems with vm crashing errors (OutOfMemoryError, etc) +o too many NPEs on loadimage may freeze the app (visualizar example?) +o hopefully this should be fixed with 0136 changes +o lots of runtime exceptions still being lost on osx +o particularly with multi-threaded applications +o macosx dropping exceptions all the time.. grr +o solution is to export, and then see how it runs +o this is particularly bad with threaded applications + + 0143 pde X fixed build problems with macosx and linux, thanks to reports o need to compare with localized version of javac strings diff --git a/todo.txt b/todo.txt index 8d739c09f..c90fdcb80 100644 --- a/todo.txt +++ b/todo.txt @@ -1,39 +1,4 @@ -0144 pde -X add new reference and examples -X write revisions.txt entry that covers changes since 0135 -X format for discourse is ignoring the selection -X also shouldn't add (so much) extra space to the beginning and end -o add tool for running in jview -o http://dev.processing.org/bugs/show_bug.cgi?id=142 -o calls export, or only available after export (or when an applet dir exists) -o warn user that applet html will be over-written -X no longer supporting 1.1 -X on startup, make sure that the jdi classes are available -X if not, tell the user to install a friggin jdk -X this way we can release a windows version w/o java -X don't open more than one copy of the preferences window -X http://dev.processing.org/bugs/show_bug.cgi?id=830 -X modify namespace handling in xml lib -X changed getFullName() to getName() -X changed getName() to getLocalName() -o look through the code for any places where UTF-8 not used - -text handling -X block comment - don't bother with last line if starting it -X (same behavior as eclipse) -X add block comment to right-click menu -X http://dev.processing.org/bugs/show_bug.cgi?id=840 -X add increase/decrease indent to edit and right-click edit menu -X http://dev.processing.org/bugs/show_bug.cgi?id=841 - -fix problems with vm crashing errors (OutOfMemoryError, etc) -o too many NPEs on loadimage may freeze the app (visualizar example?) -o hopefully this should be fixed with 0136 changes -o lots of runtime exceptions still being lost on osx -o particularly with multi-threaded applications -o macosx dropping exceptions all the time.. grr -o solution is to export, and then see how it runs -o this is particularly bad with threaded applications +0145 pde _ draw mode apps do not shut off the run button when finished