From 07def439d7c0399cafcc3d2c90e7c8594ec95cad Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Fri, 14 Aug 2015 12:40:19 -0400 Subject: [PATCH] fixing this up a bit --- java/src/processing/mode/java/Commander.java | 7 ++++--- todo.txt | 8 +++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/java/src/processing/mode/java/Commander.java b/java/src/processing/mode/java/Commander.java index 4a3b1b7ce..4739c251f 100644 --- a/java/src/processing/mode/java/Commander.java +++ b/java/src/processing/mode/java/Commander.java @@ -385,9 +385,10 @@ public class Commander implements RunnerListener { // out.println(" 32- or 64-bit specific such as the OpenGL library."); // out.println(" Otherwise specify 0 or leave it out."); - out.println("The --build, --run, --present, or --export must be the final parameter."); - out.println("Additional arguments will be passed to the sketch itself and available"); - out.println("in the sketch's 'args' field. To pass options understood by PApplet.main(),"); + out.println("The --build, --run, --present, or --export will be the final parameter"); + out.println("passed to Processing. Arguments passed following one of those four will"); + out.println("be passed through to the sketch itself, and therefore available to the"); + out.println("sketch via the 'args' field. To pass options understood by PApplet.main(),"); out.println("write a custom main() method so that the preprocessor does not add one."); out.println("https://github.com/processing/processing/wiki/Command-Line"); diff --git a/todo.txt b/todo.txt index 0f35021ad..24cf4f829 100644 --- a/todo.txt +++ b/todo.txt @@ -18,13 +18,15 @@ X https://github.com/processing/processing/issues/2383 X Added "EditorException", which is thrown when loading bad sketches X createEditor() now throws this when something goes wrong X rather than handleOpenInternal() returning false (and being ignored) -X Base.openURL() -> Platform.openURL() -X Base.showXxxx() -> Messages.showXxxx() -X Base.log() -> Messages.log() +X Several platform-oriented features have moved to Platform +X i.e. Platform.isWindows(), Platform.openURL(), Platform.getJavaPath() +X Base.showXxxx() and Base.log() have moved to Messages.showXxxx() gsoc X Second round of arm patches (v5) X https://github.com/processing/processing/pull/3583 +X Contribution Manager GUI updates +X https://github.com/processing/processing/pull/3596 earlier X closing the color selector makes things freeze (only Linux and Windows?)