diff --git a/processing/build/linux/dist.sh b/processing/build/linux/dist.sh index e964af748..2914ac4a5 100755 --- a/processing/build/linux/dist.sh +++ b/processing/build/linux/dist.sh @@ -59,13 +59,14 @@ rm -rf processing/lib/export/CVS #cp dist/run.bat processing/ #cp dist/run95.bat processing/ cp work/Proce55ing processing/ -cp dist/lib/pde.properties_linux processing/lib/ +cp dist/lib/pde_linux.properties processing/lib/ # make sure notes.txt is unix LFs # the 2> is because the app is a little chatty -dos2unix processing/notes.txt 2> /dev/null +dos2unix processing/readme.txt 2> /dev/null +dos2unix processing/revisions.txt 2> /dev/null dos2unix processing/lib/pde.properties 2> /dev/null -dos2unix processing/lib/pde.properties_windows 2> /dev/null +dos2unix processing/lib/pde_linux.properties 2> /dev/null # zip it all up for release echo Creating tarball and finishing... diff --git a/processing/build/macosx/dist.sh b/processing/build/macosx/dist.sh index d9779ebeb..f485d3f93 100755 --- a/processing/build/macosx/dist.sh +++ b/processing/build/macosx/dist.sh @@ -10,8 +10,7 @@ echo Creating P5 distribution for revision $REVISION... # remove any old boogers rm -rf processing -rm -rf processing-0000-macosx -rm -f processing-*.hqx +rm -rf processing-* # use 'shared' files as starting point cp -r ../shared processing diff --git a/processing/build/shared/readme.txt b/processing/build/shared/readme.txt index 998482bc1..8356f4bf2 100644 --- a/processing/build/shared/readme.txt +++ b/processing/build/shared/readme.txt @@ -3,6 +3,9 @@ PROCE55ING D3VEL()PM3NT 3N\/1RONM3NT alpha release (revision XXXX) +>>>>>>>>>> THIS DOCUMENT IS IN PROGRESS FOR ALPHA <<<<<<<<<<<< + + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . diff --git a/processing/todo.txt b/processing/todo.txt index 71197c140..b7932cb4e 100644 --- a/processing/todo.txt +++ b/processing/todo.txt @@ -41,29 +41,13 @@ o crashes when people click on help in top bar (same in DBN) [macos9] X not reproduced.. mrjappbuilder seems stabler? X use osx utilities to setfileinfo for .jar files etc o try to build macutils under osx - -a _ this code is not performing correctly -BImage b; // declare variable "b" of type BImage -b = loadImage("image.gif"); -image(b, 0, 0); -imageMode(CENTER); -image(b, 0, 0); - -a _ this code is not performing correctly -a _ (see example in reference for expected output) -beginShape(TRIANGLE_STRIP); -vertex(30, 75); -vertex(40, 20); -vertex(50, 75); -vertex(60, 20); -vertex(70, 75); -vertex(80, 20); -vertex(90, 75); -endShape(); +X bug where pde.properties was being replaced for sketch.properties +X changed pde.properties_PLATFORM -> pde_PLATFORM.properties bagel a _ serial a _ pde menu item for listing serial ports available +a _ import javax.comm stuff as standard in kjc (not in applet) pde a _ move background() out of draw() for draw mode apps @@ -80,6 +64,7 @@ a _ set file type/creator for .pde files.. TEXTPde1 macos a _ implement menuitem to load ref and to launch p5.net a _ MRJFileUtils.openURL(String url) throws IOException +a _ also, ref should go to index page, not environment a _ serial port code needs to be implemented a _ something that docks better to java serial api a _ dataInputStream, setUseCaches on the url to false @@ -123,6 +108,45 @@ also an interesting possibility (for tech-minded only) and nothing for macos9 +a _ this code is not performing correctly +BImage b; // declare variable "b" of type BImage +b = loadImage("image.gif"); +image(b, 0, 0); +imageMode(CENTER); +image(b, 0, 0); + +a _ this code is not performing correctly +a _ (see example in reference for expected output) +beginShape(TRIANGLE_STRIP); +vertex(30, 75); +vertex(40, 20); +vertex(50, 75); +vertex(60, 20); +vertex(70, 75); +vertex(80, 20); +vertex(90, 75); +endShape(); + +a _ first a syntax error, when fixed, causes NullPointerException  +a _ quitting the app makes things all better. argh. +// problematic version +color rr = #FFCC00; +fill(255); +rect(20, 20, 50, 50); +fill(rr); +rect(50, 50, 50, 50); +// then fix the error and run again: +color rr = #FFCC00; +fill(255); +rect(20, 20, 50, 50); +fill(rr); +rect(50, 50, 50, 50); + +a _ proce55ing thinks the following numbers are a double: +float a = .5; +float b = 0.5; + + ////////////////////////////////////////////////////////////////////