diff --git a/app/Runner.java b/app/Runner.java index 5965c782f..652af7dca 100644 --- a/app/Runner.java +++ b/app/Runner.java @@ -310,7 +310,9 @@ public class Runner implements MessageConsumer { if (windowLocation != null) { window.setLocation(windowLocation); } - window.show(); + if (applet.displayable()) { + window.show(); + } applet.requestFocus(); // necessary for key events } diff --git a/build/shared/lib/export/application.exe b/build/shared/lib/export/application.exe index f4bd553c4..825a25333 100755 Binary files a/build/shared/lib/export/application.exe and b/build/shared/lib/export/application.exe differ diff --git a/build/windows/launcher/export.exe b/build/windows/launcher/export.exe index f4bd553c4..825a25333 100755 Binary files a/build/windows/launcher/export.exe and b/build/windows/launcher/export.exe differ diff --git a/build/windows/launcher/processing.exe b/build/windows/launcher/processing.exe index c3eb96372..714f56df2 100755 Binary files a/build/windows/launcher/processing.exe and b/build/windows/launcher/processing.exe differ diff --git a/core/todo.txt b/core/todo.txt index 1e20a2a62..f4f61fb54 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -21,6 +21,9 @@ _ polygon z-order with alpha in opengl _ at least add it to the faq, or this would be a test case w/ the sorting _ http://dev.processing.org/bugs/show_bug.cgi?id=176 +_ lookat is now camera(), but not fixed in the docs +_ add notes to the faq about the camera changes on the changes page + _ loadImage("") produces weird error message _ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1136487954 @@ -637,7 +640,7 @@ _ texture re-allocated on each frame _ http://dev.processing.org/bugs/show_bug.cgi?id=150 _ point() doesn't work with some graphics card setups _ http://dev.processing.org/bugs/show_bug.cgi?id=121 -_ blend(), get(), set(), loadPixels, updatePixels() are broken in opengl +_ blend(), get(), set(), copy(), loadPixels, updatePixels() are broken in opengl _ set(x, y, image) y reversed in openGL _ http://dev.processing.org/bugs/show_bug.cgi?id=91 _ when turning smoothing on, internal lines of shapes are visible diff --git a/todo.txt b/todo.txt index 9c13cb4da..8b3807e71 100644 --- a/todo.txt +++ b/todo.txt @@ -619,6 +619,8 @@ _ which will also just give you the last camera _ should it be new Camera(PROMPT); _ saveFrame() directly to quicktime via port of DbnRecorder _ do this after beta, not likely to work with java 1.4 on macosx +_ audio stops working after two seconds +_ http://dev.processing.org/bugs/show_bug.cgi?id=277 LIBRARIES / Net