diff --git a/app/Base.java b/app/Base.java index 64ca9cdca..eaf6b1a30 100644 --- a/app/Base.java +++ b/app/Base.java @@ -683,6 +683,10 @@ public class Base { /** * Implements the cross-platform headache of opening URLs + * TODO This code should be replaced by PApplet.link(), + * however that's not a static method (because it requires + * an AppletContext when used as an applet), so it's mildly + * trickier than just removing this method. */ static public void openURL(String url) { //System.out.println("opening url " + url); diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 5c964a726..8c3d9d7bc 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -68,6 +68,11 @@ and fjen, who also contributed fixes for this release. + Addition from Tom Hulbert to add setDTR() to the Serial library. ++ Where possible, more methods inside PApplet have been made static. + This may break some library code (the OCD library is one example) + until it's updated for 0125. We'll try to add a more informative + error message about this in 0126. + [ additions, improvements ] diff --git a/core/todo.txt b/core/todo.txt index cce2dab28..9f89648fb 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -90,7 +90,7 @@ X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=displ 0125p4 (in progress) X significant improvement to text and images in opengl X now using mipmaps to interpolate large and small images -X fix bug with mipmapping on radeon 9700 +X fix bug with mipmapping on radeon 9700 X things not showing up in linux X this may be fixed along with bug #341 X probably threading issue, 98 doesn't have any trouble diff --git a/todo.txt b/todo.txt index 72da155e7..a18d92783 100644 --- a/todo.txt +++ b/todo.txt @@ -77,6 +77,8 @@ o file bug re: qtjava being compiled for 1.5 on the intel macs o because 1.4 isn't available on 10.3.9, this is ridiculous +_ move reference folder around so that it matches site organization +_ otherwise several links break on the main faq page _ ocd is broken in 0125 - do a better error message for this X implement sortCompare() and sortSwap() _ discuss this with casey