diff --git a/android/done.txt b/android/done.txt index 702f626d1..18aae706a 100644 --- a/android/done.txt +++ b/android/done.txt @@ -1,3 +1,7 @@ +0214 android (2.0b6) +X No changes on the Android side of things + + 0213 android (2.0b5) no changes diff --git a/android/todo.txt b/android/todo.txt index 988c71f6f..cba4e1c17 100644 --- a/android/todo.txt +++ b/android/todo.txt @@ -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 diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index bde733554..bbf0f52a5 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -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")); } diff --git a/core/done.txt b/core/done.txt index 982368571..ac272b3a5 100644 --- a/core/done.txt +++ b/core/done.txt @@ -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 diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 7f1cdea1f..402dc3735 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -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); diff --git a/core/todo.txt b/core/todo.txt index 963576dee..e44591887 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -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 diff --git a/done.txt b/done.txt index 25b63cace..95d4efd90 100644 --- a/done.txt +++ b/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 diff --git a/todo.txt b/todo.txt index 5c51c9a4c..4767cf490 100644 --- a/todo.txt +++ b/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