todo items and minor tweaks

This commit is contained in:
Ben Fry
2014-11-14 15:07:37 -07:00
parent 64d3bee4a5
commit f4ce5e5a1f
3 changed files with 30 additions and 10 deletions

View File

@@ -836,8 +836,7 @@ class CheckBoxList extends JList<JCheckBox> {
int index = locationToIndex(e.getPoint());
if (index != -1) {
JCheckBox checkbox = (JCheckBox)
getModel().getElementAt(index);
JCheckBox checkbox = getModel().getElementAt(index);
checkbox.setSelected(!checkbox.isSelected());
repaint();
}

View File

@@ -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

View File

@@ -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