diff --git a/app/src/processing/app/tools/CreateFont.java b/app/src/processing/app/tools/CreateFont.java index 22fb0bf80..9ecee84be 100644 --- a/app/src/processing/app/tools/CreateFont.java +++ b/app/src/processing/app/tools/CreateFont.java @@ -836,8 +836,7 @@ class CheckBoxList extends JList { int index = locationToIndex(e.getPoint()); if (index != -1) { - JCheckBox checkbox = (JCheckBox) - getModel().getElementAt(index); + JCheckBox checkbox = getModel().getElementAt(index); checkbox.setSelected(!checkbox.isSelected()); repaint(); } diff --git a/core/todo.txt b/core/todo.txt index 92ea0f3f7..56c3fae7a 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -1,5 +1,8 @@ 0232 core (3.0a5) +python has to use launch() instead of open() +map() is bad for Python (and JavaScript?) + _ simple to detect CMYK JPEG images? _ https://community.oracle.com/thread/1272045?start=0&tstart=0 _ int colorSpace = img.getColorModel().getColorSpace().getType(); @@ -19,6 +22,17 @@ X Refined PShader uniform missing message fixes X https://github.com/processing/processing/pull/2869 X Use correct parameter types in FloatList methods X https://github.com/processing/processing/pull/2902 +X Prevent lerpColor from always rounding down +X https://github.com/processing/processing/issues/2812 +X https://github.com/processing/processing/pull/2813 +X Allow mask() with PGraphicsJava2D +X https://github.com/processing/processing/pull/2910 +X OpenGL renderers ignore vertex winding in contours +X https://github.com/processing/processing/issues/2665 +X https://github.com/processing/processing/pull/2927 +X NPE when calling Client.ip() after the connection has been closed +X https://github.com/processing/processing/issues/2576 +X https://github.com/processing/processing/pull/2922 andres diff --git a/todo.txt b/todo.txt index 08e1311c0..62534800a 100644 --- a/todo.txt +++ b/todo.txt @@ -5,9 +5,7 @@ deb questions: https://github.com/processing/processing/issues/114 better Linux packaging... http://askubuntu.com/questions/396857/how-can-i-add-processing-to-the-unity-launcher -python has to use launch() instead of open() -map() is bad for Python (and JavaScript?) - +_ add script to download JRE and JDK from Oracle pulls X Cmd + H runs sketch instead of hiding the PDE (OS X) @@ -18,14 +16,23 @@ X improve contrib manager localization X https://github.com/processing/processing/pull/2870 X Fix infinite recursion in sound library X https://github.com/processing/processing/pull/2897 +X Add missing generic type parameters +X https://github.com/processing/processing/pull/2899 +X Remove unused Base.builtOnce instance variable +X https://github.com/processing/processing/pull/2864 +X miscellaneous fixes +X https://github.com/processing/processing/pull/2865 +X moved the language stuff to the settings folder +X https://github.com/processing/processing/pull/2941 + +pulls (net) X NullPointerException message when Server writes to a disconnected client X https://github.com/processing/processing/issues/2577 X https://github.com/processing/processing/pull/2578 -X Prevent lerpColor from always rounding down -X https://github.com/processing/processing/issues/2812 -X https://github.com/processing/processing/pull/2813 -X Allow mask() with PGraphicsJava2D -X https://github.com/processing/processing/pull/2910 +X Implement the active() method for Serial and Server +X https://github.com/processing/processing/issues/2364 +X https://github.com/processing/processing/pull/2588 + _ Add support for localizing contributions _ https://github.com/processing/processing/pull/2833 _ Fix renaming from RGB to Rgb.java and others