mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
removing debug spew
This commit is contained in:
@@ -1206,9 +1206,9 @@ public class PdeEditor extends Panel {
|
||||
}
|
||||
|
||||
static protected void copyDir(File sourceDir, File targetDir) {
|
||||
System.out.println("dir " + sourceDir);
|
||||
System.out.println(" -> " + targetDir);
|
||||
System.out.println();
|
||||
//System.out.println("dir " + sourceDir);
|
||||
//System.out.println(" -> " + targetDir);
|
||||
//System.out.println();
|
||||
|
||||
String files[] = sourceDir.list();
|
||||
for (int i = 0; i < files.length; i++) {
|
||||
@@ -1228,7 +1228,7 @@ public class PdeEditor extends Panel {
|
||||
}
|
||||
|
||||
static protected void removeDir(File dir) {
|
||||
System.out.println("removing " + dir);
|
||||
//System.out.println("removing " + dir);
|
||||
|
||||
String files[] = dir.list();
|
||||
for (int i = 0; i < files.length; i++) {
|
||||
|
||||
@@ -372,7 +372,7 @@ public class PdeEditorStatus extends Panel
|
||||
unedit();
|
||||
|
||||
} else if (e.getSource() == editField) {
|
||||
System.out.println("editfield: " + e);
|
||||
//System.out.println("editfield: " + e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+35
-30
@@ -6,18 +6,35 @@ X mousePressed() not working, also mouseReleased
|
||||
X also has to be public void mousePressed() for kjc
|
||||
X background(), fill(), stroke() using color datatype
|
||||
X check 0xff high bits to see if it's an int gray value or a color
|
||||
X fix curve()/bezier()
|
||||
X make curve() work as 6 point with doubled endpoints
|
||||
X translate is disabling color
|
||||
X (probably because of lighting)
|
||||
|
||||
|
||||
bagel
|
||||
|
||||
a _ fix curve()/bezier()
|
||||
a _ also make curve() work as 6 point with doubled endpoints
|
||||
a _ translate is disabling color
|
||||
a _ (probably because of lighting)
|
||||
a _ fold simpleserial into BApplet
|
||||
a _ sprint an sprintln functions
|
||||
a _ make i/o work just like mouse (event driven, with dflt behavior)
|
||||
a _ need to have function to enable it in setup
|
||||
a _ serial.messageReceived extra long crap in demo.pde (clean up?)
|
||||
a _ improve simpleserial and clean up a bit
|
||||
a _ document a bit more regarding its use
|
||||
a _ serial works poorly for starting/stopping applets
|
||||
a _ this is behaving strangely
|
||||
a _ breaks on every 2nd run when using serial apps (or others?)
|
||||
a _ try calling gc on stop as well
|
||||
|
||||
ui
|
||||
a _ saving to gzipped 'versions' file
|
||||
a _ autosave every few minutes, also on each compile, also on save
|
||||
a _ mark each as 'save', 'autosave', 'failed' or 'successful' compile
|
||||
a _ also include a timestamp
|
||||
a _ remove projects if created but nothing happens to them
|
||||
a _ console work
|
||||
a _ make scrollbar for console
|
||||
a _ convert tabs to 8 spaces
|
||||
a o line wrapping (but save info for resize? noo..)
|
||||
|
||||
play
|
||||
a _ shouldn't substitute f's for: "Univers76.vlw.gz";
|
||||
@@ -37,38 +54,19 @@ a _ if os9, this is a no-brainer.. for osx may take a little time
|
||||
a _ lines being highlighted for errors are off (?)
|
||||
a _ test this on other platforms as well
|
||||
|
||||
windows
|
||||
_ figure out how to do do simple .exe with icons
|
||||
_ also file association for .pde files
|
||||
_ use launcher code from sun jre
|
||||
_ needs to be built from command line
|
||||
|
||||
ui
|
||||
a _ saving to gzipped 'versions' file
|
||||
a _ autosave every few minutes, also on each compile, also on save
|
||||
a _ mark each as 'save', 'autosave', 'failed' or 'successful' compile
|
||||
a _ also include a timestamp
|
||||
a _ remove projects if created but nothing happens to them
|
||||
a _ console work
|
||||
a _ make scrollbar for console
|
||||
a _ convert tabs to 8 spaces
|
||||
a o line wrapping (but save info for resize? noo..)
|
||||
|
||||
pde
|
||||
a _ serial.messageReceived extra long crap in demo.pde (clean up?)
|
||||
a _ improve simpleserial and clean up a bit
|
||||
a _ document a bit more regarding its use
|
||||
a _ should serial be an event like mouse/key
|
||||
a _ serial works poorly for starting/stopping applets
|
||||
a _ this is behaving strangely
|
||||
a _ breaks on every 2nd run when using serial apps (or others?)
|
||||
a _ try calling gc on stop as well
|
||||
a _ class unloading not happening
|
||||
a _ when doing an extends ProcessingApplet
|
||||
a _ need to add randomizer to even non-self gen'd classes
|
||||
a _ or figure out how to unload old classes.. grr
|
||||
a _ copying files from 'data' dir is not recursive
|
||||
|
||||
windows
|
||||
_ figure out how to do do simple .exe with icons
|
||||
_ also file association for .pde files
|
||||
_ use launcher code from sun jre
|
||||
_ needs to be built from command line
|
||||
|
||||
cvs / release
|
||||
a _ write message to people who signed up for p5 alpha
|
||||
a _ move structure of app/application dirs around a bit
|
||||
@@ -194,6 +192,13 @@ _ live video editing, wanting things more procedural
|
||||
|
||||
|
||||
(C)BAGEL WORK
|
||||
_ color() has a different meaning
|
||||
_ formerly a normalized 0..1 float to a packed rgb int
|
||||
_ now it's a color according to current standards
|
||||
_ float_color is a private version of the previous color()
|
||||
_ curve was broken (cvertexIndex being reset)
|
||||
_ curve() now doubles start/end points to be more logical
|
||||
_ (fits all four points by drawing six points)
|
||||
_ try screengrab using malloc and/or gobs of extra memory
|
||||
_ debug the version inside bagel b/c it's simpler
|
||||
_ bagel needs to be able to resize itself
|
||||
|
||||
Reference in New Issue
Block a user