Skip to content

Commit 801a94a

Browse files
committed
starting the next release (3.3.1)
1 parent 3eb6fda commit 801a94a

File tree

5 files changed

+68
-45
lines changed

5 files changed

+68
-45
lines changed

app/src/processing/app/Base.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
public class Base {
5656
// Added accessors for 0218 because the UpdateCheck class was not properly
5757
// updating the values, due to javac inlining the static final values.
58-
static private final int REVISION = 257;
58+
static private final int REVISION = 258;
5959
/** This might be replaced by main() if there's a lib/version.txt file. */
60-
static private String VERSION_NAME = "0257"; //$NON-NLS-1$
60+
static private String VERSION_NAME = "0258"; //$NON-NLS-1$
6161
/** Set true if this a proper release rather than a numbered revision. */
6262

6363
/**

core/done.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
0257 (3.3)
2+
X return null for PApplet.trim(null)
3+
X StringDict(TableRow) constructor
4+
X allow lone double quotes in the midst of csv strings
5+
X make trim() work on column titles as well
6+
o add trimRows() and trimColumns()
7+
o would you ever use one w/o the other?
8+
X just make this part of trim()
9+
X also remove rows/columns from beginning
10+
X since that's what trim() on strings does
11+
X consume Unicode BOM (0xFEFF) in createReader() and Table parser
12+
o no prompt shows with selectInput() on 10.11 and 10.12
13+
X https://github.com/processing/processing/issues/4758
14+
X can't fix, seems embedded in the Java implementation
15+
X return null for getString(), getJSONObject(), and getJSONArray()
16+
X when key is not present, more in line w/ other p5 api
17+
18+
contrib
19+
X Fix a number of memory leaks (jdf)
20+
X https://github.com/processing/processing/pull/4862
21+
X https://github.com/jdf/processing.py/issues/233
22+
X https://github.com/processing/processing/pull/4873
23+
24+
125
0256 (3.2.4)
226
X write exec() documentation
327
X https://github.com/processing/processing/issues/4740

core/todo.txt

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,4 @@
1-
0257 (3.3)
2-
X return null for PApplet.trim(null)
3-
X StringDict(TableRow) constructor
4-
X allow lone double quotes in the midst of csv strings
5-
X make trim() work on column titles as well
6-
o add trimRows() and trimColumns()
7-
o would you ever use one w/o the other?
8-
X just make this part of trim()
9-
X also remove rows/columns from beginning
10-
X since that's what trim() on strings does
11-
X consume Unicode BOM (0xFEFF) in createReader() and Table parser
12-
o no prompt shows with selectInput() on 10.11 and 10.12
13-
X https://github.com/processing/processing/issues/4758
14-
X can't fix, seems embedded in the Java implementation
15-
X return null for getString(), getJSONObject(), and getJSONArray()
16-
X when key is not present, more in line w/ other p5 api
17-
18-
contrib
19-
X Fix a number of memory leaks (jdf)
20-
X https://github.com/processing/processing/pull/4862
21-
X https://github.com/jdf/processing.py/issues/233
22-
X https://github.com/processing/processing/pull/4873
1+
0258 (3.3.1)
232

243

254
high

done.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
0257 (3.3)
2+
X check for already-exported folders before trying to remove them
3+
X was spewing 'file not found' errors into the console
4+
X PDE and sketches are 2x smaller on high-res Windows machines
5+
X https://github.com/processing/processing/issues/2411
6+
o System.setProperty("sun.java2d.dpiaware", "false");
7+
X though that seems broken in Java 8: http://superuser.com/a/1007783
8+
X until we fix it..
9+
o call this from JNA? https://msdn.microsoft.com/en-us/library/windows/desktop/dn302122(v=vs.85).aspx
10+
o or modify the manifest/app? https://msdn.microsoft.com/en-us/library/windows/desktop/dn469266%28v=vs.85%29.aspx
11+
o hidpi scaling via font changes?
12+
o http://stackoverflow.com/a/34152675
13+
X hi-dpi support on Linux
14+
X https://github.com/processing/processing/issues/4183
15+
16+
cleaning
17+
X Contribution Manager does not show all libraries until filter cleared
18+
X https://github.com/processing/processing/issues/4840
19+
X fixed in 3.2.4
20+
21+
unconfirmed
22+
X visual artifacts on Windows 10 when using menus
23+
_ https://github.com/processing/processing/issues/4700
24+
X Broken characters in the Welcome Page and the Contribution Manager
25+
_ https://github.com/processing/processing/issues/4747
26+
X looks like a failure to load the Source Sans font
27+
X what happens if font loading fails?
28+
X are there conflicts between version in lib and OS?
29+
o are we still installing fonts into ext?
30+
o fixed by rolling back to 8u92, broken since 8u102 in 3.1.2
31+
X NVIDIA driver problems (and means to check)
32+
_ https://github.com/processing/processing/issues/4853
33+
X blank window on startup where the "Welcome" screen should be
34+
X this may be fixed (removed invokeLater() on startup), unconfirmed
35+
_ https://github.com/processing/processing/issues/3933
36+
37+
138
0256 (3.2.4)
239
X only require reference.zip (and internet connection) when building dist
340
X set text style properly for Contribution Manager error message

todo.txt

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,7 @@
1-
0257 (3.3)
2-
X check for already-exported folders before trying to remove them
3-
X was spewing 'file not found' errors into the console
4-
X PDE and sketches are 2x smaller on high-res Windows machines
5-
X https://github.com/processing/processing/issues/2411
6-
o System.setProperty("sun.java2d.dpiaware", "false");
7-
X though that seems broken in Java 8: http://superuser.com/a/1007783
8-
X until we fix it..
9-
o call this from JNA? https://msdn.microsoft.com/en-us/library/windows/desktop/dn302122(v=vs.85).aspx
10-
o or modify the manifest/app? https://msdn.microsoft.com/en-us/library/windows/desktop/dn469266%28v=vs.85%29.aspx
11-
o hidpi scaling via font changes?
12-
o http://stackoverflow.com/a/34152675
13-
X hi-dpi support on Linux
14-
X https://github.com/processing/processing/issues/4183
15-
16-
cleaning
17-
X Contribution Manager does not show all libraries until filter cleared
18-
X https://github.com/processing/processing/issues/4840
19-
X fixed in 3.2.4
20-
21-
unconfirmed
1+
0258 (3.3.1)
2+
3+
4+
awaiting confirmation (fixed in 3.3)
225
X visual artifacts on Windows 10 when using menus
236
_ https://github.com/processing/processing/issues/4700
247
X Broken characters in the Welcome Page and the Contribution Manager

0 commit comments

Comments
 (0)