mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
the good stuff
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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
|
||||
|
||||
17
done.txt
17
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
|
||||
|
||||
17
todo.txt
17
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
|
||||
|
||||
Reference in New Issue
Block a user