Skip to content

Commit f97a031

Browse files
committed
working on 3.3.5 release
1 parent 3babb54 commit f97a031

File tree

3 files changed

+61
-8
lines changed

3 files changed

+61
-8
lines changed

build/shared/revisions.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
PROCESSING 3.3.5 (REV 0262) - 23 June 2017
2+
3+
Fixes for a couple problems introduced in the last release.
4+
5+
6+
[ everything that went bad ]
7+
8+
+ Console window was only remembering two lines of text
9+
because of a name collision in the preferences handling.
10+
https://github.com/processing/processing/issues/5110
11+
12+
+ Something went wrong with the 64-bit Linux release:
13+
"libjli.so: cannot open shared object file: No such file or directory"
14+
https://github.com/processing/processing/issues/5111
15+
16+
+ "Could not parse -1 for --display" message on some Windows machines
17+
https://github.com/processing/processing/issues/5118
18+
https://github.com/processing/processing/pull/5141
19+
20+
21+
[ some new things hopefully going good ]
22+
23+
+ Fix a NullPointerException that showed up with textWidth() and OpenGL
24+
https://github.com/processing/processing/issues/5137
25+
https://github.com/processing/processing/pull/5138
26+
27+
+ Per request, use native file choosers by default on Linux. I'm told
28+
that the default Linux file choosers have grown up in the last decade.
29+
I'm trusting the person who is making that claim and making them default.
30+
https://github.com/processing/processing/issues/5122
31+
To get the old behavior in the Editor, change preferences.txt to say:
32+
chooser.files.native = false
33+
Or in your code, add this line:
34+
useNativeSelect = false;
35+
36+
37+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
38+
39+
140
PROCESSING 3.3.4 (REV 0261) - 3 June 2017
241

342
Several useful bug fixes and improvements. Some big, many small.

core/todo.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
0262 (3.3.5 or 3.4)
22
X default to using native select on all platforms
33

4+
contrib
5+
X Add defaultFontOrDeath to OpenGL textWidth
6+
X https://github.com/processing/processing/issues/5137
7+
X https://github.com/processing/processing/pull/5138
8+
49

510
_ shell discussion with gohai
611
_ https://github.com/processing/processing/pull/5082

todo.txt

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,30 @@
11
0262 (3.3.5 or 3.4)
22
X use native Linux file choosers by default
33
X https://github.com/processing/processing/issues/5122
4-
5-
_ Console window losing text
6-
_ https://github.com/processing/processing/issues/5110
7-
_ console.lines was set to 2?
4+
X Console window losing text
5+
X https://github.com/processing/processing/issues/5110
86
_ Linux 64-bit issues
97
_ https://github.com/processing/processing/issues/5111
10-
_ display=-1 regression? ("could not parse" message)
11-
_ https://github.com/processing/processing/issues/5118
128

13-
_ detect errors from curved quotation marks
14-
_ https://github.com/processing/processing/issues/5133
9+
contrib
10+
X display=-1 regression ("could not parse" message)
11+
X https://github.com/processing/processing/issues/5118
12+
X https://github.com/processing/processing/pull/5141
13+
1514

1615
contrib
1716
_ console hiding button?
1817
_ https://github.com/processing/processing/pull/5115
18+
_ make "loadXML(String)" handle "file not found"
19+
_ https://github.com/processing/processing/pull/5144
20+
21+
_ make setting the window icon automatic, based on files in local dirs
22+
_ https://github.com/processing/processing/issues/5123
23+
_ need to make this work behind the scenes instead
24+
_ create icon.png or have an 'icons' folder with multiple sizes
25+
26+
_ detect errors from curved quotation marks
27+
_ https://github.com/processing/processing/issues/5133
1928

2029
_ sketch.properties not being written if initial mode is p5.js?
2130
_ when creating a sketch within non-Java mode, should write the settings file

0 commit comments

Comments
 (0)