Skip to content

Commit 056b333

Browse files
committed
fixing this up a bit
1 parent 50cdd1b commit 056b333

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

java/src/processing/mode/java/Commander.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,10 @@ static void printCommandLine(PrintStream out) {
385385
// out.println(" 32- or 64-bit specific such as the OpenGL library.");
386386
// out.println(" Otherwise specify 0 or leave it out.");
387387

388-
out.println("The --build, --run, --present, or --export must be the final parameter.");
389-
out.println("Additional arguments will be passed to the sketch itself and available");
390-
out.println("in the sketch's 'args' field. To pass options understood by PApplet.main(),");
388+
out.println("The --build, --run, --present, or --export will be the final parameter");
389+
out.println("passed to Processing. Arguments passed following one of those four will");
390+
out.println("be passed through to the sketch itself, and therefore available to the");
391+
out.println("sketch via the 'args' field. To pass options understood by PApplet.main(),");
391392
out.println("write a custom main() method so that the preprocessor does not add one.");
392393
out.println("https://github.com/processing/processing/wiki/Command-Line");
393394

todo.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ X https://github.com/processing/processing/issues/2383
1818
X Added "EditorException", which is thrown when loading bad sketches
1919
X createEditor() now throws this when something goes wrong
2020
X rather than handleOpenInternal() returning false (and being ignored)
21-
X Base.openURL() -> Platform.openURL()
22-
X Base.showXxxx() -> Messages.showXxxx()
23-
X Base.log() -> Messages.log()
21+
X Several platform-oriented features have moved to Platform
22+
X i.e. Platform.isWindows(), Platform.openURL(), Platform.getJavaPath()
23+
X Base.showXxxx() and Base.log() have moved to Messages.showXxxx()
2424

2525
gsoc
2626
X Second round of arm patches (v5)
2727
X https://github.com/processing/processing/pull/3583
28+
X Contribution Manager GUI updates
29+
X https://github.com/processing/processing/pull/3596
2830

2931
earlier
3032
X closing the color selector makes things freeze (only Linux and Windows?)

0 commit comments

Comments
 (0)