mirror of
https://github.com/processing/processing4.git
synced 2026-01-27 18:31:07 +01:00
starting the next release
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
0214 android (2.0b6)
|
||||
X No changes on the Android side of things
|
||||
|
||||
|
||||
0213 android (2.0b5)
|
||||
no changes
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
0214 android (2.0b6)
|
||||
X No changes on the Android side of things
|
||||
0215 android
|
||||
|
||||
|
||||
_ implement Android version of command line tools
|
||||
|
||||
@@ -44,9 +44,9 @@ import processing.core.*;
|
||||
* files and images, etc) that comes from that.
|
||||
*/
|
||||
public class Base {
|
||||
static public final int REVISION = 214;
|
||||
static public final int REVISION = 215;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static public String VERSION_NAME = "0214";
|
||||
static public String VERSION_NAME = "0215";
|
||||
/** Set true if this a proper release rather than a numbered revision. */
|
||||
static public boolean RELEASE = false;
|
||||
|
||||
@@ -2338,12 +2338,12 @@ public class Base {
|
||||
}
|
||||
*/
|
||||
|
||||
/**
|
||||
* Adjacent the executable on Windows and Linux,
|
||||
/**
|
||||
* Adjacent the executable on Windows and Linux,
|
||||
* or inside Contents/Resources/Java on Mac OS X.
|
||||
*/
|
||||
static protected File processingRoot;
|
||||
|
||||
static protected File processingRoot;
|
||||
|
||||
static public File getContentFile(String name) {
|
||||
if (processingRoot == null) {
|
||||
// Get the path to the .jar file that contains Base.class
|
||||
@@ -2356,7 +2356,7 @@ public class Base {
|
||||
// The main Processing installation directory
|
||||
processingRoot = libFolder.getParentFile();
|
||||
} else {
|
||||
Base.log("Could not find lib in " +
|
||||
Base.log("Could not find lib in " +
|
||||
libFolder.getAbsolutePath() + ", switching to user.dir");
|
||||
processingRoot = new File(System.getProperty("user.dir"));
|
||||
}
|
||||
|
||||
@@ -1,3 +1,14 @@
|
||||
0214 core (2.0b6)
|
||||
A Patch for /trunk/processing/core/src/processing/opengl/PGraphicsOpenGL.java
|
||||
A http://code.google.com/p/processing/issues/detail?id=1306
|
||||
A reverted back to earlier version of JOGL
|
||||
A several fixes for GMA 950
|
||||
A video was broken due to JOGL issues
|
||||
A http://code.google.com/p/processing/issues/detail?id=1364
|
||||
X icon loading causes an error if you use a package
|
||||
X http://code.google.com/p/processing/issues/detail?id=1346
|
||||
|
||||
|
||||
0213 core (2.0b5)
|
||||
X mouseButton not being set properly on Windows (and probably Linux) in 2.0b4
|
||||
X http://code.google.com/p/processing/issues/detail?id=1332
|
||||
|
||||
@@ -10419,7 +10419,7 @@ public class PApplet extends Applet
|
||||
* Description to come...
|
||||
*
|
||||
* ( end auto-generated from textureWrap.xml )
|
||||
*
|
||||
*
|
||||
* @webref image:textures
|
||||
* @param wrap Either CLAMP (default) or REPEAT
|
||||
*/
|
||||
@@ -10588,7 +10588,7 @@ public class PApplet extends Applet
|
||||
* This is a new reference entry for Processing 2.0. It will be updated shortly.
|
||||
*
|
||||
* ( end auto-generated )
|
||||
*
|
||||
*
|
||||
* @webref Rendering
|
||||
* @param mode the blending mode to use
|
||||
*/
|
||||
@@ -10632,7 +10632,7 @@ public class PApplet extends Applet
|
||||
* This is a new reference entry for Processing 2.0. It will be updated shortly.
|
||||
*
|
||||
* ( end auto-generated )
|
||||
*
|
||||
*
|
||||
* @webref rendering:shaders
|
||||
* @param fragFilename name of fragment shader file
|
||||
*/
|
||||
@@ -10655,7 +10655,7 @@ public class PApplet extends Applet
|
||||
* This is a new reference entry for Processing 2.0. It will be updated shortly.
|
||||
*
|
||||
* ( end auto-generated )
|
||||
*
|
||||
*
|
||||
* @webref rendering:shaders
|
||||
* @param shader name of shader file
|
||||
*/
|
||||
@@ -10680,7 +10680,7 @@ public class PApplet extends Applet
|
||||
* This is a new reference entry for Processing 2.0. It will be updated shortly.
|
||||
*
|
||||
* ( end auto-generated )
|
||||
*
|
||||
*
|
||||
* @webref rendering:shaders
|
||||
*/
|
||||
public void resetShader() {
|
||||
@@ -11561,9 +11561,9 @@ public class PApplet extends Applet
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @param level either 2, 4, or 8
|
||||
*/
|
||||
*/
|
||||
public void smooth(int level) {
|
||||
if (recorder != null) recorder.smooth(level);
|
||||
g.smooth(level);
|
||||
|
||||
@@ -1,12 +1,4 @@
|
||||
0214 core (2.0b6)
|
||||
A Patch for /trunk/processing/core/src/processing/opengl/PGraphicsOpenGL.java
|
||||
A http://code.google.com/p/processing/issues/detail?id=1306
|
||||
A reverted back to earlier version of JOGL
|
||||
A several fixes for GMA 950
|
||||
A video was broken due to JOGL issues
|
||||
A http://code.google.com/p/processing/issues/detail?id=1364
|
||||
X icon loading causes an error if you use a package
|
||||
X http://code.google.com/p/processing/issues/detail?id=1346
|
||||
0215 core
|
||||
|
||||
|
||||
_ mouseButton not being set properly in mouseClicked
|
||||
|
||||
27
done.txt
27
done.txt
@@ -1,3 +1,30 @@
|
||||
0214 pde (2.0b6)
|
||||
X Input Method support (for Japanese et al.) has been disabled
|
||||
X implement as an option inside Preferences
|
||||
X http://code.google.com/p/processing/issues/detail?id=526
|
||||
X remove preferences that refer to applets
|
||||
X remove applet folder from the Java stuff
|
||||
X remove old 'cmd' folder from the Java build directory
|
||||
X Import statements are executed within multiline comments
|
||||
X http://code.google.com/p/processing/issues/detail?id=911
|
||||
X write preferences file sorted
|
||||
X Major change to how lib folder is found, hopefully handles cmd line better
|
||||
o caretBlinks always true.. just remove the pref?
|
||||
o blockCaret always false.. remove it?
|
||||
X report from someone about blinking caret
|
||||
X http://code.google.com/p/processing/issues/detail?id=1136
|
||||
X added caret options
|
||||
X editor.caret.blink = true
|
||||
X editor.caret.block = false
|
||||
X see if commander is still headless
|
||||
X check to see if sketchbook is getting picked up for cmd line
|
||||
X don't use --request on OS X 10.6, it's not available
|
||||
X processing-java ClassNotFoundException: BatchCompiler (Linux)
|
||||
X http://code.google.com/p/processing/issues/detail?id=1334
|
||||
X 2.0 beta editor does not respond properly if External Editor was enabled
|
||||
X http://code.google.com/p/processing/issues/detail?id=1355
|
||||
|
||||
|
||||
0213 pde (2.0b5)
|
||||
X Console disappears with increased editor font size
|
||||
X http://code.google.com/p/processing/issues/detail?id=1275
|
||||
|
||||
26
todo.txt
26
todo.txt
@@ -1,28 +1,4 @@
|
||||
0214 pde (2.0b6)
|
||||
X Input Method support (for Japanese et al.) has been disabled
|
||||
X implement as an option inside Preferences
|
||||
X http://code.google.com/p/processing/issues/detail?id=526
|
||||
X remove preferences that refer to applets
|
||||
X remove applet folder from the Java stuff
|
||||
X remove old 'cmd' folder from the Java build directory
|
||||
X Import statements are executed within multiline comments
|
||||
X http://code.google.com/p/processing/issues/detail?id=911
|
||||
X write preferences file sorted
|
||||
X Major change to how lib folder is found, hopefully handles cmd line better
|
||||
o caretBlinks always true.. just remove the pref?
|
||||
o blockCaret always false.. remove it?
|
||||
X report from someone about blinking caret
|
||||
X http://code.google.com/p/processing/issues/detail?id=1136
|
||||
X added caret options
|
||||
X editor.caret.blink = true
|
||||
X editor.caret.block = false
|
||||
X see if commander is still headless
|
||||
X check to see if sketchbook is getting picked up for cmd line
|
||||
X don't use --request on OS X 10.6, it's not available
|
||||
X processing-java ClassNotFoundException: BatchCompiler (Linux)
|
||||
X http://code.google.com/p/processing/issues/detail?id=1334
|
||||
X 2.0 beta editor does not respond properly if External Editor was enabled
|
||||
X http://code.google.com/p/processing/issues/detail?id=1355
|
||||
0215 pde
|
||||
|
||||
|
||||
_ Sketch that exported to Linux doesn't get the command line arguments
|
||||
|
||||
Reference in New Issue
Block a user