finished up rev 0130, add doClose() when closing editor

This commit is contained in:
benfry
2007-10-20 12:13:32 +00:00
parent a0731ccfc1
commit d273aa1fac
4 changed files with 43 additions and 2 deletions
+3
View File
@@ -665,6 +665,9 @@ public class Base {
if (quitting) {
return true;
}
// Close the running window, avoid window boogers with multiple sketches
editor.doClose();
if (editorCount == 1) {
if (Preferences.getBoolean("sketchbook.closing_last_window_quits")) {
+25
View File
@@ -7,6 +7,31 @@ releases will be super crusty.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
ABOUT REV 0130 - 20 October 2007
Bug fixes for 0126-0129. If you haven't read revisions.txt for
those versions, please do so, major changes were introduced.
+ Fixed major issue introduced in 0128 that screws up size()
and the default renderer. The renderer was being reset after
setup(), so any commands used inside setup() would not stick.
http://dev.processing.org/bugs/show_bug.cgi?id=646
http://dev.processing.org/bugs/show_bug.cgi?id=648
http://dev.processing.org/bugs/show_bug.cgi?id=649
http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192873557
http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192731014
+ Fix problem with new keywords.txt file missing some constants.
http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192873557
+ Close sketch window when its parent editor is closed. This was
leaving lots of running sketch window boogers around when
switching between lots of sketches.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
ABOUT REV 0129 - 18 October 2007
Fixes two issues from release 0128.
+11
View File
@@ -1,6 +1,17 @@
0130 core
X fixed problem with size() and the default renderer
X the renderer was being reset after setup(),
X so anything that occurred inside setup() was completely ignored.
X http://dev.processing.org/bugs/show_bug.cgi?id=646
X http://dev.processing.org/bugs/show_bug.cgi?id=648
X http://dev.processing.org/bugs/show_bug.cgi?id=649
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192873557
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192731014
_ add warning system for pgraphics, rather than runtime exceptions
_ keep array of warning strings, and booleans for whether they've called
add to reference
_ update the reference to cover parseXxxx() stuff
_ also add notes about parseInt/Float(blah, otherwise)
+4 -2
View File
@@ -1,6 +1,8 @@
0130 pde
_ call handleClose() when closing sketch window
_ otherwise it's leaving lots of windows around
X fix keywords.txt problems with some constants being left out
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192873557
X call doClose() when closing sketch window
X otherwise it's leaving lots of windows around
_ auto-delete of sketches might be dangerous