diff --git a/app/src/processing/app/Runner.java b/app/src/processing/app/Runner.java index 20f7aa2c9..6608221a0 100644 --- a/app/src/processing/app/Runner.java +++ b/app/src/processing/app/Runner.java @@ -121,7 +121,9 @@ public class Runner implements MessageConsumer { //params.add("-Dapple.awt.fakefullscreen=true"); params.add("-cp"); - params.add(sketch.classPath + Base.librariesClassPath); + params.add(sketch.classPath + + File.pathSeparator + + Base.librariesClassPath); params.add("processing.core.PApplet"); @@ -203,7 +205,18 @@ public class Runner implements MessageConsumer { System.getProperty("java.library.path")); params.add("-cp"); - params.add(sketch.classPath + Base.librariesClassPath); + params.add(sketch.classPath + + File.pathSeparator + + Base.librariesClassPath); + + /* + System.out.println("sketch class path"); + PApplet.println(PApplet.split(sketch.classPath, ';')); + System.out.println(); + System.out.println("libraries class path"); + PApplet.println(PApplet.split(Base.librariesClassPath, ';')); + System.out.println(); + */ params.add("processing.core.PApplet"); diff --git a/todo.txt b/todo.txt index 9534fa16b..17107f317 100644 --- a/todo.txt +++ b/todo.txt @@ -4,6 +4,10 @@ X no, because some renderers really need to create, not load it X would have to cache opengl fonts at different sizes, etc X document hint() commands for advanced reference X add note about gcj/gij to the platform notes +o when writing javadoc for p5 sketches, only write from first tab +X already was using code[0] +X processing.video not working on windows in 126 through 130 +X http://dev.processing.org/bugs/show_bug.cgi?id=654 server/client stuff X add server/client notification thing for the nyu guys @@ -40,9 +44,6 @@ _ move reference folder around so that it matches site organization _ otherwise several links break on the main faq page _ update keywords generator script on the site - -_ when writing javadoc for p5 sketches, only write from first tab - _ make editor buttons light up and clear properly _ inside sketch.java, don't hardwire the file extension types _ arduino uses .c, .cpp, .h instead of .java