110232 core (3.0a5)
2+ _ size(640,360 , P3D) doesn't work properly
3+ _ https://github.com/processing/processing/issues/2924
4+ _ why doesn't p5 punt when loadFont() is used on an otf?
5+ _ is this a GL problem?
6+
7+ data
8+ X fix XML.getString() with a default when no attrs are present at all
9+ X was causing a NullPointerException
10+ X also fixes getInt() et al
11+ _ fix how dict works to not return '0' values
12+ _ add optional second param
213
314table
415X fix how nulls are handled with Table.replace()
516X add (simple) ODS writer to Table
617X add addRows(Table) method (more efficient, one resize)
18+ X support "header" option with ODS files
19+ _ handling of 'missing' values in Table needs serious work
720
821graphics
922X roll back full screen changes
@@ -16,7 +29,20 @@ X Refined PShader uniform missing message fixes
1629X https://github.com/processing/processing/pull/2869
1730X Use correct parameter types in FloatList methods
1831X https://github.com/processing/processing/pull/2902
19-
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 Sort out blending differences with P2D/P3D
42+ o might be that compatible images not setting alpha mode correctly
43+ o image = gc.createCompatibleVolatileImage(source.width, source.height, Transparency.TRANSLUCENT);
44+ o https://github.com/processing/processing/issues/1844
45+ X
2046
2147andres
2248A Confusing message: The shader doesn't have a uniform called "foo"
@@ -58,6 +84,8 @@ _ the table pointer version will be speedy and allow chaining
5884later
5985_ bring back chaining in JSON (and add to XML)
6086_ maybe once we make the PVector change
87+ _ bezierSegment() function to do equal-length segments
88+ _ https://github.com/processing/processing/issues/2919
6189
6290
6391high
@@ -80,10 +108,6 @@ _ internally, we probably have to call set() if it's a 1 pixel point
80108_ but that's going to be a mess.. need to first check the CTM
81109_ tint() not working in PDF (regression between 2.0.3 and 2.1)
82110_ https://github.com/processing/processing/issues/2428
83- _ Sort out blending differences with P2D/P3D
84- _ might be that compatible images not setting alpha mode correctly
85- _ image = gc.createCompatibleVolatileImage(source.width, source.height, Transparency.TRANSLUCENT);
86- _ https://github.com/processing/processing/issues/1844
87111_ finish PFont.getShape() implementation
88112_ needs to have a way to set width/height properly
89113_ draw(s) doesn't work on the returned PShape
0 commit comments