mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
starting release 0145
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
+1
-13
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user