diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 7f0d24ab3..3e1961f2c 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -47,6 +47,8 @@ Not quite ready for prime time, however. + Implement blendMode in FX2D https://github.com/processing/processing/issues/3275 + ++ Added StringList(Object...) constructor to handle a grab bag of objects [ debugger ] diff --git a/core/src/processing/data/StringList.java b/core/src/processing/data/StringList.java index afcaf0a6d..42f807cee 100644 --- a/core/src/processing/data/StringList.java +++ b/core/src/processing/data/StringList.java @@ -44,6 +44,10 @@ public class StringList implements Iterable { } + /** + * Construct a StringList from a random pile of objects. Null values will + * stay null, but all the others will be converted to String values. + */ public StringList(Object... items) { count = items.length; data = new String[count]; diff --git a/core/todo.txt b/core/todo.txt index f878d825e..7fa1f2503 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -14,6 +14,7 @@ o remove setTitle() etc methods from PSurface, just use the ones from Frame? o and with that, encourage the use of the dummy frame object in renderers X dummy moved into PApplet itself X add SVG export library +X add StringList(Object...) constructor opengl X OpenGL sketches work only after running a sketch with default renderer