diff --git a/app/PdeEditor.java b/app/PdeEditor.java index 52c3fb379..ce0f43f13 100644 --- a/app/PdeEditor.java +++ b/app/PdeEditor.java @@ -66,7 +66,7 @@ public class PdeEditor extends Panel { // set bgcolor of buttons here, b/c also used for empty component buttons = new PdeEditorButtons(this); Color buttonBgColor = - PdeBase.getColor("editor.buttons.bgcolor", new Color(153, 0, 0)); + PdeBase.getColor("editor.buttons.bgcolor", new Color(0x99, 0x99, 0x99)); buttons.setBackground(buttonBgColor); leftPanel.add("North", buttons); Label dummy = new Label(); diff --git a/app/notes.txt b/app/notes.txt index 13bf4606f..bdb8d51e5 100644 --- a/app/notes.txt +++ b/app/notes.txt @@ -1,3 +1,21 @@ +ABOUT REV 0035 + +- duplicate/rename replaced with save as + +- curves were broken (didn't draw anything) + now they're not (they draw things) + +- curve() now makes more sense and fits all four points provided + +- using translate() no longer makes lines turn black. ahem. + +- fixed status message color + +- added newline before program code when exporting .java files + +- removed NullPointerException on startup + + ABOUT REV 0034 - fixed the problems with launching applets, implemented frame diff --git a/done.txt b/done.txt index d0440fec9..08bf50544 100644 --- a/done.txt +++ b/done.txt @@ -1,3 +1,20 @@ +0035 +X fixed a NullPointerException on startup +X when sketch.properties didn't exist, shouldn't print error +X fix status standard message color text color +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) +X save as instead of rename/duplicate +X this makes more sense, hopefully it won't break everything +X put newline after imports header in exported .java files + + 0034 X make all windows 120x120? X default program should be large, 300x200 or so diff --git a/todo.txt b/todo.txt index 06d90c257..0ea1cd825 100644 --- a/todo.txt +++ b/todo.txt @@ -1,18 +1,7 @@ 0036 -X fixed a NullPointerException on startup -X when sketch.properties didn't exist, shouldn't print error -X fix status standard message color text color -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) -X save as instead of rename/duplicate -X this makes more sense, hopefully it won't break everything -X put newline after imports header in exported .java files +X editor.buttons.bgcolor default value was wrong + +_ dbn2p5 converter.. ooh! bagel a _ fold simpleserial into BApplet