rolling over for the next release

This commit is contained in:
Ben Fry
2014-11-16 12:59:29 -07:00
parent f258702441
commit 83b8344289
5 changed files with 138 additions and 136 deletions

View File

@@ -46,9 +46,9 @@ import processing.mode.java.JavaMode;
public class Base {
// Added accessors for 0218 because the UpdateCheck class was not properly
// updating the values, due to javac inlining the static final values.
static private final int REVISION = 232;
static private final int REVISION = 233;
/** This might be replaced by main() if there's a lib/version.txt file. */
static private String VERSION_NAME = "0232"; //$NON-NLS-1$
static private String VERSION_NAME = "0233"; //$NON-NLS-1$
/** Set true if this a proper release rather than a numbered revision. */
// static private boolean RELEASE = false;
@@ -2360,8 +2360,8 @@ public class Base {
static public File getLibFile(String filename) throws IOException {
return new File(getContentFile("lib"), filename);
}
/**
* Return an InputStream for a file inside the Processing lib folder.
*/

View File

@@ -1,3 +1,67 @@
0232 core (3.0a5)
X detect CMYK JPEG images and return null
X https://community.oracle.com/thread/1272045?start=0&tstart=0
X show a warning when calling getVertexCount() on GROUP or PRIMITIVE shapes
X https://github.com/processing/processing/issues/2873
X https://github.com/processing/processing-docs/issues/167
X replace is3D(boolean) with set3D()
data
X fix XML.getString() with a default when no attrs are present at all
X was causing a NullPointerException
X also fixes getInt() et al
X fix how dict works to not return '0' values
X add optional second param
X fixed for FloatDict and IntDict
X StringDict won't throw an exception, but optional second param added
X add insert() with a single item to StringList, IntList, FloatList
table
X fix how nulls are handled with Table.replace()
X add (simple) ODS writer to Table
X add addRows(Table) method (more efficient, one resize)
X support "header" option with ODS files
pulls
X Fix check in loadShader()
X https://github.com/processing/processing/pull/2867
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 Pass correct offset to glCopyTexSubImage2D
X https://github.com/processing/processing/pull/2898
X beginShape(POINTS) not working for PShape
X https://github.com/processing/processing/issues/2912
X https://github.com/processing/processing/pull/2915
X Multiple blending fixes & improvements
X https://github.com/processing/processing/pull/2921
X https://github.com/processing/processing/issues/2807
X https://github.com/processing/processing/issues/1224
o https://github.com/processing/processing/pull/2601
o Sort out blending differences with P2D/P3D
o might be that compatible images not setting alpha mode correctly
o image = gc.createCompatibleVolatileImage(source.width, source.height, Transparency.TRANSLUCENT);
o https://github.com/processing/processing/issues/1844
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
A Confusing message: The shader doesn't have a uniform called "foo"
A https://github.com/processing/processing/issues/2593
A Exceptions in P3D / P2D not showing up properly
A https://github.com/processing/processing/issues/2930
0231 core (3.0a4)
X RuntimeException thrown for open arcs under specific parameters in P2D
X https://github.com/processing/processing/issues/2854

View File

@@ -1,69 +1,6 @@
0232 core (3.0a5)
X detect CMYK JPEG images and return null
X https://community.oracle.com/thread/1272045?start=0&tstart=0
X show a warning when calling getVertexCount() on GROUP or PRIMITIVE shapes
X https://github.com/processing/processing/issues/2873
X https://github.com/processing/processing-docs/issues/167
X replace is3D(boolean) with set3D()
data
X fix XML.getString() with a default when no attrs are present at all
X was causing a NullPointerException
X also fixes getInt() et al
X fix how dict works to not return '0' values
X add optional second param
X fixed for FloatDict and IntDict
X StringDict won't throw an exception, but optional second param added
X add insert() with a single item to StringList, IntList, FloatList
table
X fix how nulls are handled with Table.replace()
X add (simple) ODS writer to Table
X add addRows(Table) method (more efficient, one resize)
X support "header" option with ODS files
pulls
X Fix check in loadShader()
X https://github.com/processing/processing/pull/2867
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 Pass correct offset to glCopyTexSubImage2D
X https://github.com/processing/processing/pull/2898
X beginShape(POINTS) not working for PShape
X https://github.com/processing/processing/issues/2912
X https://github.com/processing/processing/pull/2915
X Multiple blending fixes & improvements
X https://github.com/processing/processing/pull/2921
X https://github.com/processing/processing/issues/2807
X https://github.com/processing/processing/issues/1224
o https://github.com/processing/processing/pull/2601
o Sort out blending differences with P2D/P3D
o might be that compatible images not setting alpha mode correctly
o image = gc.createCompatibleVolatileImage(source.width, source.height, Transparency.TRANSLUCENT);
o https://github.com/processing/processing/issues/1844
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
A Confusing message: The shader doesn't have a uniform called "foo"
A https://github.com/processing/processing/issues/2593
A Exceptions in P3D / P2D not showing up properly
A https://github.com/processing/processing/issues/2930
0233 (3.0a6)
graphics
X roll back full screen changes
X https://github.com/processing/processing/issues/2641

View File

@@ -1,3 +1,71 @@
0232 pde (3.0a5)
X remove debug message printed to the console when the ctrl key is down in PDE X
X size(640,360 , P3D) doesn't work properly
X https://github.com/processing/processing/issues/2924
X https://github.com/processing/processing/pull/2925
X remove sound library, have it installed separately like video
X Fix the shortcut keybindings in editor tab popup menu
X https://github.com/processing/processing/issues/179
X https://github.com/processing/processing/pull/2821
X answer deb questions
X https://github.com/processing/processing/issues/114
X change how languages are loaded
X add local override (needs documentation)
X figure out copyDir() problems before pull
o moving window to a new location is broken due to the pull
X update to use new 7u72 version of JRE (and JDK) stuff
X `return` keyword not treated as such when followed by a bracket
X https://github.com/processing/processing/issues/2099
X https://github.com/processing/processing/pull/2958
X ToolTipManager error fix from Manindra
X https://github.com/processing/processing/issues/2926
X Change code completion preferences a bit
pulls
X Cmd + H runs sketch instead of hiding the PDE (OS X)
X https://github.com/processing/processing/issues/2881
X Migrate to unsynchronized data structures
X https://github.com/processing/processing/pull/2863
X improve contrib manager localization
X https://github.com/processing/processing/pull/2870
X Fix typo in spanish translation
X https://github.com/processing/processing/pull/2906
X Update ECJ, use 1.7 as source and target Java version
X https://github.com/processing/processing/pull/2907
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
X Some minor UpdateChecker refactorings
X https://github.com/processing/processing/pull/2830
X Minor improvements to the Contribution Manager's updates check
X https://github.com/processing/processing/pull/2861
X make Cut and Copy in the edit menu active only if some text is selected
X https://github.com/processing/processing/pull/2834
X Fix renaming from RGB to Rgb.java and others
X https://github.com/processing/processing/pull/2825
X sketches should only write to the console of their editor window
X https://github.com/processing/processing/issues/153
X https://github.com/processing/processing/issues/2858
X https://github.com/processing/processing/pull/2827
X extend translations and update German language
X https://github.com/processing/processing/pull/2949
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 Implement the active() method for Serial and Server
X https://github.com/processing/processing/issues/2364
X https://github.com/processing/processing/pull/2588
0231 pde (3.0a4)
X add new download redirect for contribs.txt
X https://github.com/processing/processing/issues/2850

View File

@@ -1,73 +1,6 @@
0232 pde (3.0a5)
X remove debug message printed to the console when the ctrl key is down in PDE X
X size(640,360 , P3D) doesn't work properly
X https://github.com/processing/processing/issues/2924
X https://github.com/processing/processing/pull/2925
X remove sound library, have it installed separately like video
X Fix the shortcut keybindings in editor tab popup menu
X https://github.com/processing/processing/issues/179
X https://github.com/processing/processing/pull/2821
X answer deb questions
X https://github.com/processing/processing/issues/114
X change how languages are loaded
X add local override (needs documentation)
X figure out copyDir() problems before pull
o moving window to a new location is broken due to the pull
X update to use new 7u72 version of JRE (and JDK) stuff
X `return` keyword not treated as such when followed by a bracket
X https://github.com/processing/processing/issues/2099
X https://github.com/processing/processing/pull/2958
X ToolTipManager error fix from Manindra
X https://github.com/processing/processing/issues/2926
X Change code completion preferences a bit
pulls
X Cmd + H runs sketch instead of hiding the PDE (OS X)
X https://github.com/processing/processing/issues/2881
X Migrate to unsynchronized data structures
X https://github.com/processing/processing/pull/2863
X improve contrib manager localization
X https://github.com/processing/processing/pull/2870
X Fix typo in spanish translation
X https://github.com/processing/processing/pull/2906
X Update ECJ, use 1.7 as source and target Java version
X https://github.com/processing/processing/pull/2907
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
X Some minor UpdateChecker refactorings
X https://github.com/processing/processing/pull/2830
X Minor improvements to the Contribution Manager's updates check
X https://github.com/processing/processing/pull/2861
X make Cut and Copy in the edit menu active only if some text is selected
X https://github.com/processing/processing/pull/2834
X Fix renaming from RGB to Rgb.java and others
X https://github.com/processing/processing/pull/2825
X sketches should only write to the console of their editor window
X https://github.com/processing/processing/issues/153
X https://github.com/processing/processing/issues/2858
X https://github.com/processing/processing/pull/2827
X extend translations and update German language
X https://github.com/processing/processing/pull/2949
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 Implement the active() method for Serial and Server
X https://github.com/processing/processing/issues/2364
X https://github.com/processing/processing/pull/2588
0233 (3.0a6)
_ any problems with new code signing crap?
_ issues raised around the symlink (just replace with a copy of the binary?)
_ https://developer.apple.com/library/prerelease/mac/technotes/tn2206/_index.html#//apple_ref/doc/uid/DTS40007919-CH1-TNTAG205