Skip to content

Commit 0527e85

Browse files
committed
starting the next revision
1 parent 1d50568 commit 0527e85

5 files changed

Lines changed: 82 additions & 70 deletions

File tree

app/src/processing/app/Base.java

Lines changed: 2 additions & 2 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 = 225;
49+
static private final int REVISION = 226;
5050
/** This might be replaced by main() if there's a lib/version.txt file. */
51-
static private String VERSION_NAME = "0225"; //$NON-NLS-1$
51+
static private String VERSION_NAME = "0226"; //$NON-NLS-1$
5252
/** Set true if this a proper release rather than a numbered revision. */
5353
// static private boolean RELEASE = false;
5454

core/done.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
0225 core (2.1.2)
2+
X bug with StringDict(Reader) that wasn't setting the indices hashmap
3+
X check this with other versions of this class
4+
X call revalidate() via reflection
5+
X text looks lousy compared to the Apple JVM
6+
X mess with rendering hints? (notes in PGraphicsJava2D)
7+
X improvements made, but still not amazing.. just at level of Windows/Linux
8+
X PGraphics.colorCalcARGB(int, float) doesn't cap alpha
9+
X https://github.com/processing/processing/issues/2439
10+
X run window border color changed in 2.1
11+
X https://github.com/processing/processing/issues/2297
12+
X simple NPE issue that needs workaround
13+
X https://github.com/processing/processing/issues/2354
14+
15+
fixed in 2.1
16+
X draw() called again before finishing on OS X (retina issue)
17+
X https://github.com/processing/processing/issues/1709
18+
X get() not always setting alpha channel when used with point()
19+
X https://github.com/processing/processing/issues/1756
20+
A support for geometry and tessellation shaders (on desktop)
21+
A https://github.com/processing/processing/issues/2252
22+
23+
andres
24+
X copy() under OPENGL uses upside-down coordinates for cropping
25+
X https://github.com/processing/processing/issues/2345
26+
X video on windows causes exception
27+
X https://github.com/processing/processing/issues/2327
28+
X Shape Font Rendering was broken with the OpenGL Renderer
29+
X https://github.com/processing/processing/issues/2375
30+
A depth buffer shouldn't be cleared when depth mask is disabled
31+
A https://github.com/processing/processing/issues/2296
32+
A set pixels transparent by default in P2D/P3D
33+
A https://github.com/processing/processing/issues/2207
34+
A unwind depth sorting because it was breaking DXF export
35+
A https://github.com/processing/processing/issues/2404
36+
A Sketch hangs if sketchRenderer() returns an OpenGL renderer
37+
A https://github.com/processing/processing/issues/2363
38+
A "buffer" uniform triggers shader compilation error
39+
A https://github.com/processing/processing/issues/2325
40+
A buffer has been renamed to ppixels for shaders
41+
A noLoop clears screen on Windows 8
42+
A https://github.com/processing/processing/issues/2416
43+
A fix pixels[] array for video capture
44+
A https://github.com/processing/processing/issues/2424
45+
46+
147
0224 core (2.1.1)
248
X PImage resize() causes PImage not to be rendered in JAVA2D
349
X https://github.com/processing/processing/issues/2179

core/todo.txt

Lines changed: 2 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,5 @@
1-
0225 core
2-
X bug with StringDict(Reader) that wasn't setting the indices hashmap
3-
X check this with other versions of this class
4-
X call revalidate() via reflection
5-
X text looks lousy compared to the Apple JVM
6-
X mess with rendering hints? (notes in PGraphicsJava2D)
7-
X improvements made, but still not amazing.. just at level of Windows/Linux
8-
X PGraphics.colorCalcARGB(int, float) doesn't cap alpha
9-
X https://github.com/processing/processing/issues/2439
10-
X run window border color changed in 2.1
11-
X https://github.com/processing/processing/issues/2297
12-
X simple NPE issue that needs workaround
13-
X https://github.com/processing/processing/issues/2354
14-
15-
fixed in 2.1
16-
X draw() called again before finishing on OS X (retina issue)
17-
X https://github.com/processing/processing/issues/1709
18-
X get() not always setting alpha channel when used with point()
19-
X https://github.com/processing/processing/issues/1756
20-
A support for geometry and tessellation shaders (on desktop)
21-
A https://github.com/processing/processing/issues/2252
22-
23-
andres
24-
X copy() under OPENGL uses upside-down coordinates for cropping
25-
X https://github.com/processing/processing/issues/2345
26-
X video on windows causes exception
27-
X https://github.com/processing/processing/issues/2327
28-
X Shape Font Rendering was broken with the OpenGL Renderer
29-
X https://github.com/processing/processing/issues/2375
30-
A depth buffer shouldn't be cleared when depth mask is disabled
31-
A https://github.com/processing/processing/issues/2296
32-
A set pixels transparent by default in P2D/P3D
33-
A https://github.com/processing/processing/issues/2207
34-
A unwind depth sorting because it was breaking DXF export
35-
A https://github.com/processing/processing/issues/2404
36-
A Sketch hangs if sketchRenderer() returns an OpenGL renderer
37-
A https://github.com/processing/processing/issues/2363
38-
A "buffer" uniform triggers shader compilation error
39-
A https://github.com/processing/processing/issues/2325
40-
A buffer has been renamed to ppixels for shaders
41-
A noLoop clears screen on Windows 8
42-
A https://github.com/processing/processing/issues/2416
43-
A fix pixels[] array for video capture
44-
A https://github.com/processing/processing/issues/2424
1+
0226 core
2+
453

464
_ XML.getChildren() throwing NPE when getInt() called on non-existent var
475
_ https://github.com/processing/processing/issues/2367

done.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
0225 pde (2.1.2)
2+
X Fix exception caused by Runner when it can't find location
3+
X https://github.com/processing/processing/issues/2346
4+
X https://github.com/processing/processing/pull/2359
5+
G Serial: Update to latest upstream (fixes potential port handle leak)
6+
G https://github.com/processing/processing/pull/2361
7+
J add affordance for mode developers to run from Eclipse
8+
J https://github.com/processing/processing/pull/2422
9+
J non-pde extensions for modes cause a crash
10+
J https://github.com/processing/processing/issues/2419
11+
J some hardcoding for .pde still exists
12+
J https://github.com/processing/processing/issues/2420
13+
X the PDE uses 15% of CPU while just sitting idle (thx to David Fokkema)
14+
X https://github.com/processing/processing/issues/1561
15+
X https://github.com/processing/processing/pull/2451
16+
X Update code signing for Processing.app for Mavericks changes
17+
X https://github.com/processing/processing/issues/2453
18+
o use --deep for codesign to work? (nope)
19+
o http://furbo.org/2013/10/17/code-signing-and-mavericks/
20+
o http://brockerhoff.net/RB/AppCheckerLite/
21+
J permit modes to specify alternate extension (.py for .pyde stuff)
22+
J https://github.com/processing/processing/pull/2452
23+
X sketchPath() returns user.home in exported apps on OSX
24+
X https://github.com/processing/processing/issues/2181
25+
26+
127
0224 pde (2.1.1)
228
M fix infinite loop in Find/Replace
329
M https://github.com/processing/processing/issues/2082

todo.txt

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,10 @@
1-
0225 pde
2-
X Fix exception caused by Runner when it can't find location
3-
X https://github.com/processing/processing/issues/2346
4-
X https://github.com/processing/processing/pull/2359
5-
G Serial: Update to latest upstream (fixes potential port handle leak)
6-
G https://github.com/processing/processing/pull/2361
7-
J add affordance for mode developers to run from Eclipse
8-
J https://github.com/processing/processing/pull/2422
9-
J non-pde extensions for modes cause a crash
10-
J https://github.com/processing/processing/issues/2419
11-
J some hardcoding for .pde still exists
12-
J https://github.com/processing/processing/issues/2420
13-
X the PDE uses 15% of CPU while just sitting idle (thx to David Fokkema)
14-
X https://github.com/processing/processing/issues/1561
15-
X https://github.com/processing/processing/pull/2451
16-
X Update code signing for Processing.app for Mavericks changes
17-
X https://github.com/processing/processing/issues/2453
18-
o use --deep for codesign to work? (nope)
19-
o http://furbo.org/2013/10/17/code-signing-and-mavericks/
20-
o http://brockerhoff.net/RB/AppCheckerLite/
21-
J permit modes to specify alternate extension (.py for .pyde stuff)
22-
J https://github.com/processing/processing/pull/2452
23-
X sketchPath() returns user.home in exported apps on OSX
24-
X https://github.com/processing/processing/issues/2181
1+
0226 pde
252

263

274
high
5+
_ sketch sometimes simply does not launch
6+
_ https://github.com/processing/processing/issues/2402
7+
_ https://github.com/processing/processing/pull/2455
288
_ exported apps reporting as "damaged" on OS X
299
_ https://github.com/processing/processing/issues/2095
3010
_ QuickReference tool was able to bring down the environment
@@ -43,6 +23,8 @@ _ maybe OS X Java can't look in subfolders? (just auto-adds things)
4323

4424

4525
medium
26+
_ re/move things from Google Code downloads
27+
_ https://code.google.com/p/support/wiki/DownloadsFAQ
4628
_ actual help with cleaning out the repo
4729
_ https://github.com/processing/processing/issues/1898
4830
_ requires re-forking, so still a ton of work

0 commit comments

Comments
 (0)