mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
working on finishing up libs
This commit is contained in:
@@ -18,8 +18,8 @@ rm -rf processing/lib/CVS
|
||||
#rm -rf processing/lib/netscape/CVS
|
||||
#rm -rf processing/lib/netscape/javascript/CVS
|
||||
#rm -rf processing/fonts/CVS
|
||||
rm -rf processing/reference/CVS
|
||||
rm -rf processing/reference/images/CVS
|
||||
#rm -rf processing/reference/CVS
|
||||
#rm -rf processing/reference/images/CVS
|
||||
#rm -rf processing/sketchbook/CVS
|
||||
#rm -rf processing/sketchbook/default/CVS
|
||||
#rm -f processing/sketchbook/default/.cvsignore
|
||||
@@ -78,6 +78,14 @@ unix2dos processing/lib/preferences.txt 2> /dev/null
|
||||
unix2dos processing/lib/keywords.txt 2> /dev/null
|
||||
#unix2dos processing/lib/pde_windows.properties 2> /dev/null
|
||||
|
||||
|
||||
# something like the following might be better:
|
||||
# find / -name "*.mp3" -exec rm -f {}\;
|
||||
# and same for cvsignore, ~ files, .DS_Store
|
||||
find processing -name "*~" -exec rm -f {} ';'
|
||||
find processing -name ".DS_Store" -exec rm -f {} ';'
|
||||
find processing -name "._*" -exec rm -f {} ';'
|
||||
|
||||
# zip it all up for release
|
||||
echo Packaging standard release...
|
||||
echo
|
||||
@@ -101,7 +109,3 @@ zip -rq $P5-expert.zip $P5
|
||||
|
||||
echo Done.
|
||||
|
||||
|
||||
# something like the following might be better:
|
||||
# find / -name "*.mp3" -exec rm -f {}\;
|
||||
# and same for cvsignore, ~ files, .DS_Store
|
||||
|
||||
@@ -118,7 +118,7 @@ public class PImage implements PConstants, Cloneable {
|
||||
* alpha is zero, it will be transparent.
|
||||
*/
|
||||
public PImage(int width, int height) {
|
||||
setup(width, height, RGB);
|
||||
init(width, height, RGB);
|
||||
//this(new int[width * height], width, height, RGBA);
|
||||
// toxi: is it maybe better to init the image with max alpha enabled?
|
||||
//for(int i=0; i<pixels.length; i++) pixels[i]=0xffffffff;
|
||||
@@ -143,7 +143,7 @@ public class PImage implements PConstants, Cloneable {
|
||||
/**
|
||||
* Function to be used by subclasses to setup their own bidness.
|
||||
*/
|
||||
public void setup(int width, int height, int format) { // ignore
|
||||
public void init(int width, int height, int format) { // ignore
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
this.pixels = new int[width*height];
|
||||
|
||||
@@ -204,6 +204,12 @@ X beginCamera() no longer sets an identity matrix
|
||||
X make savePath() and createPath() accessible to the outside world
|
||||
X useful for libraries saving files etc.
|
||||
|
||||
|
||||
............................................................
|
||||
|
||||
|
||||
0071 or later (but high priority)
|
||||
|
||||
_ before graphics engine change, attach jogl stuff?
|
||||
_ massive graphics engine changes
|
||||
_ explicitly state depth()/nodepth()
|
||||
@@ -235,12 +241,6 @@ _ better lighting model to show darkness at various depths
|
||||
_ maybe just ultra-high res bitmaps from gl
|
||||
_ version of BApplet that replaces g. with ai. or pdf.
|
||||
|
||||
|
||||
............................................................
|
||||
|
||||
|
||||
0071 or later (but high priority)
|
||||
|
||||
_ figure out how to handle cached images, multiple images
|
||||
_ MediaTracker blocking is prolly making jar download really slow
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1089914280;start=0
|
||||
|
||||
+15
-14
@@ -131,20 +131,6 @@ _ c:/fry/processing/build/windows/work/lib/build/Temporary_8501_3382.java:1:63
|
||||
|
||||
_ macosx - check to see if new linemetrics stuff is working better
|
||||
|
||||
_ implement new version of history
|
||||
_ make history folder, and a zip (not gz) file for each entry
|
||||
_ history causing trouble - super slow with a huge sketch
|
||||
_ could instead be gzipped and appended to history.dat
|
||||
_ along with another file that is actually a table of offsets
|
||||
_ no need to make the thing a gzip stream
|
||||
_ checkbox on menu for 'record history' ?
|
||||
_ history converter option?
|
||||
_ only first 20 entries visible?
|
||||
_ zlib file becoming corrupt (not flushed after close?)
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1080346981;start=0
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1088333655;start=0
|
||||
_ shortcut to walk through history, ala photoshop (ctrl-alt-z)
|
||||
|
||||
|
||||
README
|
||||
_ make the whole thing an html file?
|
||||
@@ -165,11 +151,26 @@ _ update readme with notes from bboard about "built with processing"
|
||||
_ add to "common problems"
|
||||
_ junk in the classpath can often cause trouble
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1094871304
|
||||
_ history is not implemented in this version
|
||||
|
||||
|
||||
......................................................................
|
||||
|
||||
|
||||
_ implement new version of history
|
||||
_ make history folder, and a zip (not gz) file for each entry
|
||||
_ history causing trouble - super slow with a huge sketch
|
||||
_ could instead be gzipped and appended to history.dat
|
||||
_ along with another file that is actually a table of offsets
|
||||
_ no need to make the thing a gzip stream
|
||||
_ checkbox on menu for 'record history' ?
|
||||
_ history converter option?
|
||||
_ only first 20 entries visible?
|
||||
_ zlib file becoming corrupt (not flushed after close?)
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1080346981;start=0
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1088333655;start=0
|
||||
_ shortcut to walk through history, ala photoshop (ctrl-alt-z)
|
||||
|
||||
_ keypressed hanging on applets with a code folder
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1081450102
|
||||
_ problems running external vm/vm is hanging
|
||||
|
||||
Reference in New Issue
Block a user