Skip to content

Commit 877b334

Browse files
committed
staring 0265
1 parent 3fb7cfd commit 877b334

5 files changed

Lines changed: 102 additions & 95 deletions

File tree

app/src/processing/app/Base.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
Part of the Processing project - http://processing.org
55
6-
Copyright (c) 2012-17 The Processing Foundation
6+
Copyright (c) 2012-18 The Processing Foundation
77
Copyright (c) 2004-12 Ben Fry and Casey Reas
88
Copyright (c) 2001-04 Massachusetts Institute of Technology
99
@@ -56,9 +56,9 @@
5656
public class Base {
5757
// Added accessors for 0218 because the UpdateCheck class was not properly
5858
// updating the values, due to javac inlining the static final values.
59-
static private final int REVISION = 264;
59+
static private final int REVISION = 265;
6060
/** This might be replaced by main() if there's a lib/version.txt file. */
61-
static private String VERSION_NAME = "0264"; //$NON-NLS-1$
61+
static private String VERSION_NAME = "0265"; //$NON-NLS-1$
6262
/** Set true if this a proper release rather than a numbered revision. */
6363

6464
/**

core/done.txt

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,52 @@
1+
0264 (3.3.7)
2+
X fix exception due to version parsing in Java 9
3+
X https://github.com/processing/processing/issues/5275
4+
X remove useless deprecation on PImage.mask(int[])
5+
X set colorModeDefault to true by default
6+
X blendMode() with PDF isn't showing the warning about it not being available
7+
X add blendMode() to nope() calls in PGraphicsPDF
8+
X https://github.com/processing/processing/issues/5105
9+
X Table.insertRow() causes ArrayIndexOutOfBoundsException (with fix)
10+
X https://github.com/processing/processing/issues/5406
11+
12+
data
13+
X added setIndex() method to IntDict, FloatDict, StringDict
14+
X added resize() to IntDict, FloatDict, StringDict
15+
X fix entries() Iterator in IntDict, FloatDict, StringDict
16+
17+
contrib
18+
X minor bezierPoint() rewrite for performance
19+
X https://github.com/processing/processing/pull/5251
20+
X void cursor() don't work after void noCursor() in P2D and P3D
21+
X https://github.com/processing/processing/issues/5330
22+
X https://github.com/processing/processing/pull/5340
23+
X NullPointerException on close button with P3D and noLoop
24+
X https://github.com/processing/processing/issues/5214
25+
X https://github.com/processing/processing/pull/5384
26+
27+
andres
28+
X textureWrap() not updating when changed during draw()
29+
X https://github.com/processing/processing/issues/5322
30+
X cap frameRate() to 1000 in OpenGL
31+
X https://github.com/processing/processing/issues/5404
32+
33+
gohai
34+
X ARM tweaks for shaders on the RPi
35+
X https://github.com/processing/processing/pull/5297
36+
X Fix 3D on contemporary versions of Linux
37+
X https://github.com/processing/processing/pull/5428
38+
X https://github.com/processing/processing/issues/5308
39+
40+
jakub
41+
X fix line joins on triangles
42+
X https://github.com/processing/processing/issues/5353
43+
X https://github.com/processing/processing/pull/5354
44+
X Make un/registering methods in PApplet thread-saf
45+
X https://github.com/processing/processing/pull/5379
46+
47+
148
0263 (3.3.6)
49+
X lots of contribs!
250

351
gohai
452
X shell discussion with gohai

core/todo.txt

Lines changed: 1 addition & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,4 @@
1-
0264 (3.3.7 or 3.4)
2-
X fix exception due to version parsing in Java 9
3-
X https://github.com/processing/processing/issues/5275
4-
X remove useless deprecation on PImage.mask(int[])
5-
X set colorModeDefault to true by default
6-
X blendMode() with PDF isn't showing the warning about it not being available
7-
X add blendMode() to nope() calls in PGraphicsPDF
8-
X https://github.com/processing/processing/issues/5105
9-
X Table.insertRow() causes ArrayIndexOutOfBoundsException (with fix)
10-
X https://github.com/processing/processing/issues/5406
11-
12-
data
13-
X added setIndex() method to IntDict, FloatDict, StringDict
14-
X added resize() to IntDict, FloatDict, StringDict
15-
X fix entries() Iterator in IntDict, FloatDict, StringDict
16-
17-
contrib
18-
X minor bezierPoint() rewrite for performance
19-
X https://github.com/processing/processing/pull/5251
20-
X void cursor() don't work after void noCursor() in P2D and P3D
21-
X https://github.com/processing/processing/issues/5330
22-
X https://github.com/processing/processing/pull/5340
23-
X NullPointerException on close button with P3D and noLoop
24-
X https://github.com/processing/processing/issues/5214
25-
X https://github.com/processing/processing/pull/5384
26-
27-
andres
28-
X textureWrap() not updating when changed during draw()
29-
X https://github.com/processing/processing/issues/5322
30-
X cap frameRate() to 1000 in OpenGL
31-
X https://github.com/processing/processing/issues/5404
32-
33-
gohai
34-
X ARM tweaks for shaders on the RPi
35-
X https://github.com/processing/processing/pull/5297
36-
X Fix 3D on contemporary versions of Linux
37-
X https://github.com/processing/processing/pull/5428
38-
X https://github.com/processing/processing/issues/5308
39-
40-
jakub
41-
X fix line joins on triangles
42-
X https://github.com/processing/processing/issues/5353
43-
X https://github.com/processing/processing/pull/5354
44-
X Make un/registering methods in PApplet thread-saf
45-
X https://github.com/processing/processing/pull/5379
1+
0265 (3.3.8 or 3.4)
462

473

484
3.4

done.txt

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
0264 (3.3.7)
2+
X downloading the jre broken again
3+
X https://github.com/processing/processing/issues/5284
4+
X the old 144 link must have been removed
5+
X NullPointerException in ContributionManager.deleteFlagged()
6+
X https://github.com/processing/processing/issues/5342
7+
X move to Java 8u162
8+
X menu bars broken in High Sierra
9+
X https://github.com/processing/processing/issues/5272
10+
X no more responses, had to close
11+
X include newlines at end of files (i.e. when saving .pde files)
12+
X https://github.com/processing/processing/issues/5327
13+
X explanation: https://stackoverflow.com/a/729795
14+
X http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
15+
X Rename dialog is unusable on high density screen
16+
X https://github.com/processing/processing/issues/5368
17+
X windows defender blocks processing 3.3.6
18+
X https://github.com/processing/processing/issues/5329
19+
X this should be fixed, simply by a new release
20+
21+
jakub
22+
X Fix scrub comments for empty block comment /**/
23+
X https://github.com/processing/processing/pull/5265
24+
X https://github.com/processing/processing/issues/5219
25+
X Fix error checker crash when className contains [ or ]
26+
X https://github.com/processing/processing/pull/5304
27+
X major fixes for the net library
28+
X https://github.com/processing/processing/pull/5378
29+
X https://github.com/processing/processing/issues/4419
30+
X https://github.com/processing/processing/issues/5360
31+
X https://github.com/processing/processing/issues/3970
32+
X https://github.com/processing/processing/pull/5389
33+
X Output java files in UTF-8 and force compiler to use UTF-8
34+
X https://github.com/processing/processing/pull/5436
35+
X PdePreprocessor change is breaking current source
36+
X https://github.com/processing/processing/issues/5413
37+
38+
contrib
39+
X detect errors from curved quotation marks
40+
X https://github.com/processing/processing/issues/5133
41+
X https://github.com/processing/processing/pull/5152
42+
X Refactor to use a few Java 8 features
43+
X https://github.com/processing/processing/pull/5134
44+
X Remove "Pipe Organ" from exec javadoc
45+
X https://github.com/processing/processing/pull/5282
46+
X typo in Italian translation
47+
X https://github.com/processing/processing/issues/5365
48+
49+
150
0263 (3.3.6)
251
X update to Java 8u144
352
X fix issue with call to remove value instead of key in mode contrib hash

todo.txt

Lines changed: 1 addition & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,4 @@
1-
0264 (3.3.7 or 3.4)
2-
X downloading the jre broken again
3-
X https://github.com/processing/processing/issues/5284
4-
X the old 144 link must have been removed
5-
X NullPointerException in ContributionManager.deleteFlagged()
6-
X https://github.com/processing/processing/issues/5342
7-
X move to Java 8u162
8-
X menu bars broken in High Sierra
9-
X https://github.com/processing/processing/issues/5272
10-
X no more responses, had to close
11-
X include newlines at end of files (i.e. when saving .pde files)
12-
X https://github.com/processing/processing/issues/5327
13-
X explanation: https://stackoverflow.com/a/729795
14-
X http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
15-
X Rename dialog is unusable on high density screen
16-
X https://github.com/processing/processing/issues/5368
17-
_ windows defender blocks processing 3.3.6
18-
_ https://github.com/processing/processing/issues/5329
19-
X this should be fixed, simply by a new release
20-
21-
jakub
22-
X Fix scrub comments for empty block comment /**/
23-
X https://github.com/processing/processing/pull/5265
24-
X https://github.com/processing/processing/issues/5219
25-
X Fix error checker crash when className contains [ or ]
26-
X https://github.com/processing/processing/pull/5304
27-
X major fixes for the net library
28-
X https://github.com/processing/processing/pull/5378
29-
X https://github.com/processing/processing/issues/4419
30-
X https://github.com/processing/processing/issues/5360
31-
X https://github.com/processing/processing/issues/3970
32-
X https://github.com/processing/processing/pull/5389
33-
X Output java files in UTF-8 and force compiler to use UTF-8
34-
X https://github.com/processing/processing/pull/5436
35-
X PdePreprocessor change is breaking current source
36-
X https://github.com/processing/processing/issues/5413
37-
38-
contrib
39-
X detect errors from curved quotation marks
40-
X https://github.com/processing/processing/issues/5133
41-
X https://github.com/processing/processing/pull/5152
42-
X Refactor to use a few Java 8 features
43-
X https://github.com/processing/processing/pull/5134
44-
X Remove "Pipe Organ" from exec javadoc
45-
X https://github.com/processing/processing/pull/5282
46-
X typo in Italian translation
47-
X https://github.com/processing/processing/issues/5365
1+
0265 (3.3.7 or 3.4)
482

493

504
welcome

0 commit comments

Comments
 (0)