mirror of
https://github.com/processing/processing4.git
synced 2026-04-25 05:34:32 +02:00
changes for wheelmouse auto-detect, and incorporating video
This commit is contained in:
@@ -4,6 +4,18 @@ for older releases will be super crusty. caution: the beverage you're
|
||||
about to enjoy is extremely hot.
|
||||
|
||||
|
||||
ABOUT REV 0055 -
|
||||
|
||||
- sort functions for arrays of ints, floats, doubles or Strings
|
||||
|
||||
here's how it works for floats:
|
||||
float a[] = { 3.4, 3.6, 2, 0, 7.1 };
|
||||
sort(a);
|
||||
for (int i = 0; i < a.length; i++) {
|
||||
println(a[i]);
|
||||
}
|
||||
|
||||
|
||||
ABOUT REV 0054 - 11 april 2003
|
||||
|
||||
[ ok, so 53 was a bit of a dog ]
|
||||
|
||||
BIN
processing/build/windows/dist/Proce55ing.exe
vendored
BIN
processing/build/windows/dist/Proce55ing.exe
vendored
Binary file not shown.
2
processing/build/windows/dist/run.bat
vendored
2
processing/build/windows/dist/run.bat
vendored
@@ -3,4 +3,4 @@
|
||||
REM --- if you need more ram, change the 64m (which means
|
||||
REM --- 64 megabytes) to something higher.
|
||||
|
||||
java -ms64m -mx64m -cp lib;lib\build;lib\pde.jar;lib\kjc.jar;lib\oro.jar;lib\comm.jar PdeBase
|
||||
java -ms64m -mx64m -cp lib;lib\build;lib\pde.jar;lib\kjc.jar;lib\oro.jar;lib\comm.jar;c:\winnt\system32\qtjava.zip;c:\windows\system32\qtjava.zip PdeBase
|
||||
|
||||
@@ -119,14 +119,16 @@ BOOL CLauncherApp::InitInstance()
|
||||
*/
|
||||
|
||||
sprintf(cp,
|
||||
"-cp \""
|
||||
"%s\\lib;"
|
||||
"%s\\lib\\build;"
|
||||
"%s\\lib\\pde.jar;"
|
||||
"-cp \""
|
||||
"%s\\lib;"
|
||||
"%s\\lib\\build;"
|
||||
"%s\\lib\\pde.jar;"
|
||||
"%s\\lib\\kjc.jar;"
|
||||
"%s\\lib\\oro.jar;"
|
||||
"%s\\lib\\comm.jar;"
|
||||
"\" ",
|
||||
"C:\\WINNT\\system32\\QTJava.zip;"
|
||||
"C:\\WINDOWS\\system32\\QTJava.zip;"
|
||||
"\" ",
|
||||
loaddir, loaddir, loaddir, loaddir, loaddir, loaddir);
|
||||
|
||||
//sprintf(cp, "-cp ");
|
||||
|
||||
@@ -58,11 +58,23 @@ fi
|
||||
|
||||
cd bagel
|
||||
|
||||
CLASSPATH=../build/windows/work/java/lib/rt.jar:../build/windows/work/java/lib/ext/comm.jar
|
||||
if test -d /cygdrive/c/WINNT
|
||||
then
|
||||
# windows 2000 or nt
|
||||
QT_JAVA_PATH=/cygdrive/c/WINNT/system32/QTJava.zip
|
||||
else
|
||||
# other versions of windows, including xp
|
||||
QT_JAVA_PATH=/cygdrive/c/WINDOWS/system32/QTJava.zip
|
||||
fi
|
||||
# another alternative
|
||||
#QT_JAVA_PATH=../build/shared/lib/qtjava.zip
|
||||
|
||||
CLASSPATH=../build/windows/work/java/lib/rt.jar:../build/windows/work/java/lib/ext/comm.jar:${QT_JAVA_PATH}
|
||||
|
||||
|
||||
### --- make version with serial for the application
|
||||
echo Building bagel with serial support
|
||||
perl make.pl SERIAL
|
||||
echo Building bagel with serial and video support
|
||||
perl make.pl SERIAL VIDEO
|
||||
cp classes/*.class ../build/windows/work/classes/
|
||||
|
||||
### --- make version without serial for applet exporting
|
||||
|
||||
@@ -1,2 +1,14 @@
|
||||
#!/bin/sh
|
||||
cd work && ./java/bin/java -cp lib\;lib\\build\;lib\\pde.jar\;lib\\kjc.jar\;lib\\oro.jar\;java\\lib\\ext\\comm.jar PdeBase
|
||||
|
||||
if test -d /cygdrive/c/WINNT
|
||||
then
|
||||
# windows 2000 or nt
|
||||
QT_JAVA_PATH=\\cygdrive\\c\\WINNT\\system32\\QTJava.zip
|
||||
else
|
||||
# other versions of windows, including xp
|
||||
QT_JAVA_PATH=\\cygdrive\\c\\WINDOWS\\system32\\QTJava.zip
|
||||
fi
|
||||
# another alternative
|
||||
#QT_JAVA_PATH=..\\build\\shared\\lib\\qtjava.zip
|
||||
|
||||
cd work && ./java/bin/java -cp lib\;lib\\build\;lib\\pde.jar\;lib\\kjc.jar\;lib\\oro.jar\;java\\lib\\ext\\comm.jar\;${QT_JAVA_PATH} PdeBase
|
||||
|
||||
Reference in New Issue
Block a user