fix for bug #654, processing.video broken on windows recently

This commit is contained in:
benfry
2007-10-21 20:51:54 +00:00
parent 8ee9b4a6d0
commit 1fa20dcbeb
2 changed files with 19 additions and 5 deletions

View File

@@ -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");

View File

@@ -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