Skip to content

Commit 3c9e531

Browse files
committed
rolling over for the next release
1 parent 5882aad commit 3c9e531

5 files changed

Lines changed: 138 additions & 136 deletions

File tree

app/src/processing/app/Base.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
public class Base {
4747
// Added accessors for 0218 because the UpdateCheck class was not properly
4848
// updating the values, due to javac inlining the static final values.
49-
static private final int REVISION = 232;
49+
static private final int REVISION = 233;
5050
/** This might be replaced by main() if there's a lib/version.txt file. */
51-
static private String VERSION_NAME = "0232"; //$NON-NLS-1$
51+
static private String VERSION_NAME = "0233"; //$NON-NLS-1$
5252
/** Set true if this a proper release rather than a numbered revision. */
5353
// static private boolean RELEASE = false;
5454

@@ -2360,8 +2360,8 @@ public boolean accept(File dir, String name) {
23602360
static public File getLibFile(String filename) throws IOException {
23612361
return new File(getContentFile("lib"), filename);
23622362
}
2363-
2364-
2363+
2364+
23652365
/**
23662366
* Return an InputStream for a file inside the Processing lib folder.
23672367
*/

core/done.txt

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
0232 core (3.0a5)
2+
X detect CMYK JPEG images and return null
3+
X https://community.oracle.com/thread/1272045?start=0&tstart=0
4+
X show a warning when calling getVertexCount() on GROUP or PRIMITIVE shapes
5+
X https://github.com/processing/processing/issues/2873
6+
X https://github.com/processing/processing-docs/issues/167
7+
X replace is3D(boolean) with set3D()
8+
9+
data
10+
X fix XML.getString() with a default when no attrs are present at all
11+
X was causing a NullPointerException
12+
X also fixes getInt() et al
13+
X fix how dict works to not return '0' values
14+
X add optional second param
15+
X fixed for FloatDict and IntDict
16+
X StringDict won't throw an exception, but optional second param added
17+
X add insert() with a single item to StringList, IntList, FloatList
18+
19+
table
20+
X fix how nulls are handled with Table.replace()
21+
X add (simple) ODS writer to Table
22+
X add addRows(Table) method (more efficient, one resize)
23+
X support "header" option with ODS files
24+
25+
pulls
26+
X Fix check in loadShader()
27+
X https://github.com/processing/processing/pull/2867
28+
X Refined PShader uniform missing message fixes
29+
X https://github.com/processing/processing/pull/2869
30+
X Use correct parameter types in FloatList methods
31+
X https://github.com/processing/processing/pull/2902
32+
X Pass correct offset to glCopyTexSubImage2D
33+
X https://github.com/processing/processing/pull/2898
34+
X beginShape(POINTS) not working for PShape
35+
X https://github.com/processing/processing/issues/2912
36+
X https://github.com/processing/processing/pull/2915
37+
X Multiple blending fixes & improvements
38+
X https://github.com/processing/processing/pull/2921
39+
X https://github.com/processing/processing/issues/2807
40+
X https://github.com/processing/processing/issues/1224
41+
o https://github.com/processing/processing/pull/2601
42+
o Sort out blending differences with P2D/P3D
43+
o might be that compatible images not setting alpha mode correctly
44+
o image = gc.createCompatibleVolatileImage(source.width, source.height, Transparency.TRANSLUCENT);
45+
o https://github.com/processing/processing/issues/1844
46+
X Prevent lerpColor from always rounding down
47+
X https://github.com/processing/processing/issues/2812
48+
X https://github.com/processing/processing/pull/2813
49+
X Allow mask() with PGraphicsJava2D
50+
X https://github.com/processing/processing/pull/2910
51+
X OpenGL renderers ignore vertex winding in contours
52+
X https://github.com/processing/processing/issues/2665
53+
X https://github.com/processing/processing/pull/2927
54+
X NPE when calling Client.ip() after the connection has been closed
55+
X https://github.com/processing/processing/issues/2576
56+
X https://github.com/processing/processing/pull/2922
57+
58+
andres
59+
A Confusing message: The shader doesn't have a uniform called "foo"
60+
A https://github.com/processing/processing/issues/2593
61+
A Exceptions in P3D / P2D not showing up properly
62+
A https://github.com/processing/processing/issues/2930
63+
64+
165
0231 core (3.0a4)
266
X RuntimeException thrown for open arcs under specific parameters in P2D
367
X https://github.com/processing/processing/issues/2854

core/todo.txt

Lines changed: 1 addition & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,6 @@
1-
0232 core (3.0a5)
2-
X detect CMYK JPEG images and return null
3-
X https://community.oracle.com/thread/1272045?start=0&tstart=0
4-
X show a warning when calling getVertexCount() on GROUP or PRIMITIVE shapes
5-
X https://github.com/processing/processing/issues/2873
6-
X https://github.com/processing/processing-docs/issues/167
7-
X replace is3D(boolean) with set3D()
8-
9-
data
10-
X fix XML.getString() with a default when no attrs are present at all
11-
X was causing a NullPointerException
12-
X also fixes getInt() et al
13-
X fix how dict works to not return '0' values
14-
X add optional second param
15-
X fixed for FloatDict and IntDict
16-
X StringDict won't throw an exception, but optional second param added
17-
X add insert() with a single item to StringList, IntList, FloatList
18-
19-
table
20-
X fix how nulls are handled with Table.replace()
21-
X add (simple) ODS writer to Table
22-
X add addRows(Table) method (more efficient, one resize)
23-
X support "header" option with ODS files
24-
25-
pulls
26-
X Fix check in loadShader()
27-
X https://github.com/processing/processing/pull/2867
28-
X Refined PShader uniform missing message fixes
29-
X https://github.com/processing/processing/pull/2869
30-
X Use correct parameter types in FloatList methods
31-
X https://github.com/processing/processing/pull/2902
32-
X Pass correct offset to glCopyTexSubImage2D
33-
X https://github.com/processing/processing/pull/2898
34-
X beginShape(POINTS) not working for PShape
35-
X https://github.com/processing/processing/issues/2912
36-
X https://github.com/processing/processing/pull/2915
37-
X Multiple blending fixes & improvements
38-
X https://github.com/processing/processing/pull/2921
39-
X https://github.com/processing/processing/issues/2807
40-
X https://github.com/processing/processing/issues/1224
41-
o https://github.com/processing/processing/pull/2601
42-
o Sort out blending differences with P2D/P3D
43-
o might be that compatible images not setting alpha mode correctly
44-
o image = gc.createCompatibleVolatileImage(source.width, source.height, Transparency.TRANSLUCENT);
45-
o https://github.com/processing/processing/issues/1844
46-
X Prevent lerpColor from always rounding down
47-
X https://github.com/processing/processing/issues/2812
48-
X https://github.com/processing/processing/pull/2813
49-
X Allow mask() with PGraphicsJava2D
50-
X https://github.com/processing/processing/pull/2910
51-
X OpenGL renderers ignore vertex winding in contours
52-
X https://github.com/processing/processing/issues/2665
53-
X https://github.com/processing/processing/pull/2927
54-
X NPE when calling Client.ip() after the connection has been closed
55-
X https://github.com/processing/processing/issues/2576
56-
X https://github.com/processing/processing/pull/2922
57-
58-
andres
59-
A Confusing message: The shader doesn't have a uniform called "foo"
60-
A https://github.com/processing/processing/issues/2593
61-
A Exceptions in P3D / P2D not showing up properly
62-
A https://github.com/processing/processing/issues/2930
63-
64-
651
0233 (3.0a6)
662

3+
674
graphics
685
X roll back full screen changes
696
X https://github.com/processing/processing/issues/2641

done.txt

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,71 @@
1+
0232 pde (3.0a5)
2+
X remove debug message printed to the console when the ctrl key is down in PDE X
3+
X size(640,360 , P3D) doesn't work properly
4+
X https://github.com/processing/processing/issues/2924
5+
X https://github.com/processing/processing/pull/2925
6+
X remove sound library, have it installed separately like video
7+
X Fix the shortcut keybindings in editor tab popup menu
8+
X https://github.com/processing/processing/issues/179
9+
X https://github.com/processing/processing/pull/2821
10+
X answer deb questions
11+
X https://github.com/processing/processing/issues/114
12+
X change how languages are loaded
13+
X add local override (needs documentation)
14+
X figure out copyDir() problems before pull
15+
o moving window to a new location is broken due to the pull
16+
X update to use new 7u72 version of JRE (and JDK) stuff
17+
X `return` keyword not treated as such when followed by a bracket
18+
X https://github.com/processing/processing/issues/2099
19+
X https://github.com/processing/processing/pull/2958
20+
X ToolTipManager error fix from Manindra
21+
X https://github.com/processing/processing/issues/2926
22+
X Change code completion preferences a bit
23+
24+
pulls
25+
X Cmd + H runs sketch instead of hiding the PDE (OS X)
26+
X https://github.com/processing/processing/issues/2881
27+
X Migrate to unsynchronized data structures
28+
X https://github.com/processing/processing/pull/2863
29+
X improve contrib manager localization
30+
X https://github.com/processing/processing/pull/2870
31+
X Fix typo in spanish translation
32+
X https://github.com/processing/processing/pull/2906
33+
X Update ECJ, use 1.7 as source and target Java version
34+
X https://github.com/processing/processing/pull/2907
35+
X Fix infinite recursion in sound library
36+
X https://github.com/processing/processing/pull/2897
37+
X Add missing generic type parameters
38+
X https://github.com/processing/processing/pull/2899
39+
X Remove unused Base.builtOnce instance variable
40+
X https://github.com/processing/processing/pull/2864
41+
X miscellaneous fixes
42+
X https://github.com/processing/processing/pull/2865
43+
X moved the language stuff to the settings folder
44+
X https://github.com/processing/processing/pull/2941
45+
X Some minor UpdateChecker refactorings
46+
X https://github.com/processing/processing/pull/2830
47+
X Minor improvements to the Contribution Manager's updates check
48+
X https://github.com/processing/processing/pull/2861
49+
X make Cut and Copy in the edit menu active only if some text is selected
50+
X https://github.com/processing/processing/pull/2834
51+
X Fix renaming from RGB to Rgb.java and others
52+
X https://github.com/processing/processing/pull/2825
53+
X sketches should only write to the console of their editor window
54+
X https://github.com/processing/processing/issues/153
55+
X https://github.com/processing/processing/issues/2858
56+
X https://github.com/processing/processing/pull/2827
57+
X extend translations and update German language
58+
X https://github.com/processing/processing/pull/2949
59+
60+
pulls (net)
61+
X NullPointerException message when Server writes to a disconnected client
62+
X https://github.com/processing/processing/issues/2577
63+
X https://github.com/processing/processing/pull/2578
64+
X Implement the active() method for Serial and Server
65+
X https://github.com/processing/processing/issues/2364
66+
X https://github.com/processing/processing/pull/2588
67+
68+
169
0231 pde (3.0a4)
270
X add new download redirect for contribs.txt
371
X https://github.com/processing/processing/issues/2850

todo.txt

Lines changed: 1 addition & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,6 @@
1-
0232 pde (3.0a5)
2-
X remove debug message printed to the console when the ctrl key is down in PDE X
3-
X size(640,360 , P3D) doesn't work properly
4-
X https://github.com/processing/processing/issues/2924
5-
X https://github.com/processing/processing/pull/2925
6-
X remove sound library, have it installed separately like video
7-
X Fix the shortcut keybindings in editor tab popup menu
8-
X https://github.com/processing/processing/issues/179
9-
X https://github.com/processing/processing/pull/2821
10-
X answer deb questions
11-
X https://github.com/processing/processing/issues/114
12-
X change how languages are loaded
13-
X add local override (needs documentation)
14-
X figure out copyDir() problems before pull
15-
o moving window to a new location is broken due to the pull
16-
X update to use new 7u72 version of JRE (and JDK) stuff
17-
X `return` keyword not treated as such when followed by a bracket
18-
X https://github.com/processing/processing/issues/2099
19-
X https://github.com/processing/processing/pull/2958
20-
X ToolTipManager error fix from Manindra
21-
X https://github.com/processing/processing/issues/2926
22-
X Change code completion preferences a bit
23-
24-
pulls
25-
X Cmd + H runs sketch instead of hiding the PDE (OS X)
26-
X https://github.com/processing/processing/issues/2881
27-
X Migrate to unsynchronized data structures
28-
X https://github.com/processing/processing/pull/2863
29-
X improve contrib manager localization
30-
X https://github.com/processing/processing/pull/2870
31-
X Fix typo in spanish translation
32-
X https://github.com/processing/processing/pull/2906
33-
X Update ECJ, use 1.7 as source and target Java version
34-
X https://github.com/processing/processing/pull/2907
35-
X Fix infinite recursion in sound library
36-
X https://github.com/processing/processing/pull/2897
37-
X Add missing generic type parameters
38-
X https://github.com/processing/processing/pull/2899
39-
X Remove unused Base.builtOnce instance variable
40-
X https://github.com/processing/processing/pull/2864
41-
X miscellaneous fixes
42-
X https://github.com/processing/processing/pull/2865
43-
X moved the language stuff to the settings folder
44-
X https://github.com/processing/processing/pull/2941
45-
X Some minor UpdateChecker refactorings
46-
X https://github.com/processing/processing/pull/2830
47-
X Minor improvements to the Contribution Manager's updates check
48-
X https://github.com/processing/processing/pull/2861
49-
X make Cut and Copy in the edit menu active only if some text is selected
50-
X https://github.com/processing/processing/pull/2834
51-
X Fix renaming from RGB to Rgb.java and others
52-
X https://github.com/processing/processing/pull/2825
53-
X sketches should only write to the console of their editor window
54-
X https://github.com/processing/processing/issues/153
55-
X https://github.com/processing/processing/issues/2858
56-
X https://github.com/processing/processing/pull/2827
57-
X extend translations and update German language
58-
X https://github.com/processing/processing/pull/2949
59-
60-
pulls (net)
61-
X NullPointerException message when Server writes to a disconnected client
62-
X https://github.com/processing/processing/issues/2577
63-
X https://github.com/processing/processing/pull/2578
64-
X Implement the active() method for Serial and Server
65-
X https://github.com/processing/processing/issues/2364
66-
X https://github.com/processing/processing/pull/2588
67-
68-
691
0233 (3.0a6)
702

3+
714
_ any problems with new code signing crap?
725
_ issues raised around the symlink (just replace with a copy of the binary?)
736
_ https://developer.apple.com/library/prerelease/mac/technotes/tn2206/_index.html#//apple_ref/doc/uid/DTS40007919-CH1-TNTAG205

0 commit comments

Comments
 (0)