Skip to content

Commit 4b43d96

Browse files
committed
starting revision 0249
1 parent 7f9b8d9 commit 4b43d96

File tree

5 files changed

+128
-122
lines changed

5 files changed

+128
-122
lines changed

app/src/processing/app/Base.java

+2-2
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 = 248;
58+
static private final int REVISION = 249;
5959
/** This might be replaced by main() if there's a lib/version.txt file. */
60-
static private String VERSION_NAME = "0248"; //$NON-NLS-1$
60+
static private String VERSION_NAME = "0249"; //$NON-NLS-1$
6161
/** Set true if this a proper release rather than a numbered revision. */
6262

6363
/** True if heavy debugging error/log messages are enabled */

core/done.txt

+46
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
0248 (3.0.2)
2+
X Fix another "Zero length string passed to TextLayout constructor" error
3+
X Ambiguity on where to call smooth()
4+
X https://github.com/processing/processing/issues/4211
5+
X add additional clarification for Eclipse users
6+
X Flipped Y-axis in JavaFX is now done (JDK bug)
7+
X https://github.com/processing/processing/issues/3795
8+
9+
jakub
10+
X Initialize sketch args before calling settings()
11+
X https://github.com/processing/processing/issues/4219
12+
X https://github.com/processing/processing/pull/4220
13+
14+
andres
15+
X Stop button in OpenGL exported applications does not use preference settings
16+
X https://github.com/processing/processing/issues/4064
17+
X Export without a stop button using P3D or P2D
18+
X https://github.com/processing/processing/issues/4056
19+
X glClearDepthf() not available on older hardware
20+
X https://github.com/processing/processing/issues/4106
21+
X Drawing a sphere with shape() first changes sphereDetail from default
22+
X https://github.com/processing/processing/issues/4192
23+
X PShape.scale() affects strokeWeight differently in P2D and P3D
24+
X https://github.com/processing/processing/issues/4231
25+
X createShape(GROUP) + textured child + non-textured child = P3D render problems
26+
X https://github.com/processing/processing/issues/4176
27+
X pixelDensity() and createGraphics() with P3D
28+
X https://github.com/processing/processing/issues/4039
29+
X Friendlier message when running drawing commands outside animation thread
30+
X https://github.com/processing/processing/issues/4196
31+
X strokeWeight() not working properly with point() in P2D and P3D
32+
X https://github.com/processing/processing/issues/4188
33+
X exit() is not called in P2D/P3D
34+
X https://github.com/processing/processing/issues/4156
35+
X attrib*() function does not work well with PShape
36+
X https://github.com/processing/processing/issues/4048
37+
38+
contribs
39+
X Fill out the Javadoc for PMatrix
40+
X https://github.com/processing/processing/pull/4155
41+
X Have PSurfaceFX pay attention to the setVisible argument
42+
X https://github.com/processing/processing/pull/4210
43+
X Use xdg-open in PApplet#launch(String)
44+
X https://github.com/processing/processing/pull/4171
45+
46+
147
0247 (3.0.1)
248
X curveVertex() does not work with FX2D renderer
349
X https://github.com/processing/processing/issues/3960

core/todo.txt

+1-44
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,4 @@
1-
0248 (3.0.2)
2-
X Fix another "Zero length string passed to TextLayout constructor" error
3-
X Ambiguity on where to call smooth()
4-
X https://github.com/processing/processing/issues/4211
5-
X add additional clarification for Eclipse users
6-
X Flipped Y-axis in JavaFX is now done (JDK bug)
7-
X https://github.com/processing/processing/issues/3795
8-
9-
jakub
10-
X Initialize sketch args before calling settings()
11-
X https://github.com/processing/processing/issues/4219
12-
X https://github.com/processing/processing/pull/4220
13-
14-
andres
15-
X Stop button in OpenGL exported applications does not use preference settings
16-
X https://github.com/processing/processing/issues/4064
17-
X Export without a stop button using P3D or P2D
18-
X https://github.com/processing/processing/issues/4056
19-
X glClearDepthf() not available on older hardware
20-
X https://github.com/processing/processing/issues/4106
21-
X Drawing a sphere with shape() first changes sphereDetail from default
22-
X https://github.com/processing/processing/issues/4192
23-
X PShape.scale() affects strokeWeight differently in P2D and P3D
24-
X https://github.com/processing/processing/issues/4231
25-
X createShape(GROUP) + textured child + non-textured child = P3D render problems
26-
X https://github.com/processing/processing/issues/4176
27-
X pixelDensity() and createGraphics() with P3D
28-
X https://github.com/processing/processing/issues/4039
29-
X Friendlier message when running drawing commands outside animation thread
30-
X https://github.com/processing/processing/issues/4196
31-
X strokeWeight() not working properly with point() in P2D and P3D
32-
X https://github.com/processing/processing/issues/4188
33-
X exit() is not called in P2D/P3D
34-
X https://github.com/processing/processing/issues/4156
35-
X attrib*() function does not work well with PShape
36-
X https://github.com/processing/processing/issues/4048
37-
38-
contribs
39-
X Fill out the Javadoc for PMatrix
40-
X https://github.com/processing/processing/pull/4155
41-
X Have PSurfaceFX pay attention to the setVisible argument
42-
X https://github.com/processing/processing/pull/4210
43-
X Use xdg-open in PApplet#launch(String)
44-
X https://github.com/processing/processing/pull/4171
1+
0249 (3.0.3)
452

463

474
_ textAlign(CENTER) and pixelDensity(2) aligning incorrectly with Java2D

done.txt

+78
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,81 @@
1+
0248 (3.0.2)
2+
X move to Java 8u74, also fixes JavaFX issue
3+
X actually require OS X 10.8.5 (was set to 10.7)
4+
X the Wiki said 10.8.3 required for 3.0, but has since been updated
5+
6+
contribs
7+
X add "full screen" option to the Editor on OS X
8+
X https://github.com/processing/processing/issues/3993
9+
X https://github.com/processing/processing/pull/4078
10+
X add install script for site for ARM
11+
X https://github.com/processing/processing/pull/4110
12+
X search/replace shouldn't include the string being replaced
13+
X https://github.com/processing/processing/issues/4270
14+
X https://github.com/processing/processing/pull/4271
15+
X 'Background Color when Presenting' not visible on Preferences window
16+
X https://github.com/processing/processing/issues/4272
17+
X https://github.com/processing/processing/pull/4278
18+
X Fix minor autoformatter bugs (enums not working)
19+
X https://github.com/processing/processing/issues/4185
20+
X https://github.com/processing/processing/pull/4200
21+
X Update Source Code Pro and Source Sans Pro fonts to the latest versions
22+
X https://github.com/processing/processing/pull/4150
23+
X https://github.com/processing/processing/issues/3836
24+
X Minor fixes for Java Mode
25+
X https://github.com/processing/processing/pull/4114
26+
X Add i18n support for the PopUp menu
27+
X https://github.com/processing/processing/pull/4060
28+
X Add Turkish to the list of languages
29+
X https://github.com/processing/processing/pull/4073
30+
X Make the error message for stack overflows clearer
31+
X https://github.com/processing/processing/pull/4152
32+
X get rid of dt_socket message, making command line run a little better
33+
X https://github.com/processing/processing/issues/4098
34+
X https://github.com/processing/processing/pull/4103
35+
X message when reference is find out on nothing selected
36+
X https://github.com/processing/processing/pull/4296
37+
X better handling of quotes in command line args
38+
X https://github.com/processing/processing/pull/4145
39+
X https://github.com/processing/processing/issues/3996
40+
X https://github.com/processing/processing/issues/4119
41+
X fix crashing bugs when user's name has non-ASCII characters
42+
X https://github.com/processing/processing/pull/4204
43+
X ARM updates to include GPIO numbers and images of wiring diagrams
44+
X https://github.com/processing/processing/pull/4297
45+
X https://github.com/processing/processing/pull/4298
46+
X Icon instead of an "X" for the "could not connect" message
47+
X https://github.com/processing/processing/issues/3706
48+
X https://github.com/processing/processing/pull/4096
49+
X https://github.com/processing/processing/pull/4055
50+
X Several fixes for Chinese/Japanese/Korean InputMethod support
51+
X https://github.com/processing/processing/pull/4293
52+
X https://github.com/processing/processing/issues/2968
53+
X https://github.com/processing/processing/issues/3475
54+
X https://github.com/processing/processing/issues/3860
55+
X Add download indicator to the Contribution Manager
56+
X https://github.com/processing/processing/pull/4154
57+
X https://github.com/processing/processing/issues/4105
58+
59+
jakub
60+
X Workaround for JRE bug freezing the PDE during code completion
61+
X https://github.com/processing/processing/pull/4079
62+
X Debugger fixes
63+
X prevent NPE because ui was not updated on AWT
64+
X https://github.com/processing/processing/pull/4117
65+
X fix NPE when stepping into static method
66+
X https://github.com/processing/processing/issues/3590
67+
X step button works correctly when SHIFT or ALT is pressed
68+
X https://github.com/processing/processing/issues/4116
69+
X More editor fixes
70+
X https://github.com/processing/processing/pull/4113
71+
X Tooltip over variable decl has wrong style and content
72+
X https://github.com/processing/processing/issues/3940
73+
X May have fixed? NullPointerException in initiateToolTip()
74+
X https://github.com/processing/processing/issues/3286
75+
X "String index out of range" error with bracket handling in the editor
76+
X https://github.com/processing/processing/issues/1940
77+
78+
179
0247 (3.0.1)
280
X NullPointerException in ContributionManager.deleteTemp()
381
X https://github.com/processing/processing/issues/4026

todo.txt

+1-76
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,4 @@
1-
0248 (3.0.2)
2-
X move to Java 8u74, also fixes JavaFX issue
3-
X actually require OS X 10.8.5 (was set to 10.7)
4-
X the Wiki said 10.8.3 required for 3.0, but has since been updated
5-
6-
contribs
7-
X add "full screen" option to the Editor on OS X
8-
X https://github.com/processing/processing/issues/3993
9-
X https://github.com/processing/processing/pull/4078
10-
X add install script for site for ARM
11-
X https://github.com/processing/processing/pull/4110
12-
X search/replace shouldn't include the string being replaced
13-
X https://github.com/processing/processing/issues/4270
14-
X https://github.com/processing/processing/pull/4271
15-
X 'Background Color when Presenting' not visible on Preferences window
16-
X https://github.com/processing/processing/issues/4272
17-
X https://github.com/processing/processing/pull/4278
18-
X Fix minor autoformatter bugs (enums not working)
19-
X https://github.com/processing/processing/issues/4185
20-
X https://github.com/processing/processing/pull/4200
21-
X Update Source Code Pro and Source Sans Pro fonts to the latest versions
22-
X https://github.com/processing/processing/pull/4150
23-
X https://github.com/processing/processing/issues/3836
24-
X Minor fixes for Java Mode
25-
X https://github.com/processing/processing/pull/4114
26-
X Add i18n support for the PopUp menu
27-
X https://github.com/processing/processing/pull/4060
28-
X Add Turkish to the list of languages
29-
X https://github.com/processing/processing/pull/4073
30-
X Make the error message for stack overflows clearer
31-
X https://github.com/processing/processing/pull/4152
32-
X get rid of dt_socket message, making command line run a little better
33-
X https://github.com/processing/processing/issues/4098
34-
X https://github.com/processing/processing/pull/4103
35-
X message when reference is find out on nothing selected
36-
X https://github.com/processing/processing/pull/4296
37-
X better handling of quotes in command line args
38-
X https://github.com/processing/processing/pull/4145
39-
X https://github.com/processing/processing/issues/3996
40-
X https://github.com/processing/processing/issues/4119
41-
X fix crashing bugs when user's name has non-ASCII characters
42-
X https://github.com/processing/processing/pull/4204
43-
X ARM updates to include GPIO numbers and images of wiring diagrams
44-
X https://github.com/processing/processing/pull/4297
45-
X https://github.com/processing/processing/pull/4298
46-
X Icon instead of an "X" for the "could not connect" message
47-
X https://github.com/processing/processing/issues/3706
48-
X https://github.com/processing/processing/pull/4096
49-
X https://github.com/processing/processing/pull/4055
50-
X Several fixes for Chinese/Japanese/Korean InputMethod support
51-
X https://github.com/processing/processing/pull/4293
52-
X https://github.com/processing/processing/issues/2968
53-
X https://github.com/processing/processing/issues/3475
54-
X https://github.com/processing/processing/issues/3860
55-
X Add download indicator to the Contribution Manager
56-
X https://github.com/processing/processing/pull/4154
57-
X https://github.com/processing/processing/issues/4105
58-
59-
jakub
60-
X Workaround for JRE bug freezing the PDE during code completion
61-
X https://github.com/processing/processing/pull/4079
62-
X Debugger fixes
63-
X prevent NPE because ui was not updated on AWT
64-
X https://github.com/processing/processing/pull/4117
65-
X fix NPE when stepping into static method
66-
X https://github.com/processing/processing/issues/3590
67-
X step button works correctly when SHIFT or ALT is pressed
68-
X https://github.com/processing/processing/issues/4116
69-
X More editor fixes
70-
X https://github.com/processing/processing/pull/4113
71-
X Tooltip over variable decl has wrong style and content
72-
X https://github.com/processing/processing/issues/3940
73-
X May have fixed? NullPointerException in initiateToolTip()
74-
X https://github.com/processing/processing/issues/3286
75-
X "String index out of range" error with bracket handling in the editor
76-
X https://github.com/processing/processing/issues/1940
1+
0249 (3.0.3)
772

783

794
_ tabs aren't working properly (several bugs?)

0 commit comments

Comments
 (0)