Skip to content

Commit 2cf6bd7

Browse files
committed
starting the next release
1 parent 370d4c7 commit 2cf6bd7

File tree

5 files changed

+43
-39
lines changed

5 files changed

+43
-39
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 = 255;
58+
static private final int REVISION = 256;
5959
/** This might be replaced by main() if there's a lib/version.txt file. */
60-
static private String VERSION_NAME = "0255"; //$NON-NLS-1$
60+
static private String VERSION_NAME = "0256"; //$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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0255 (3.2.3)
2+
3+
andres
4+
X automatic detection of POINT and LINE shaders fails
5+
X https://github.com/processing/processing/issues/4725
6+
X show warning when frameRate() less than 1 is called with P2D and P3D
7+
X https://github.com/processing/processing/issues/4716
8+
9+
110
0254 (3.2.2)
211
X fix quoting problem in IntDict.toJSON()
312
X add getRenderer() to SurfaceInfo

core/todo.txt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
0255 (3.2.3 or 3.3)
2-
3-
andres
4-
X automatic detection of POINT and LINE shaders fails
5-
X https://github.com/processing/processing/issues/4725
6-
X show warning when frameRate() less than 1 is called with P2D and P3D
7-
X https://github.com/processing/processing/issues/4716
1+
0256 (3.2.4 or 3.3)
82

93

104
_ add StringDict.Entry class for iterating

done.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
0255 (3.2.3)
2+
X ensure that update.id is set before checking for contrib updates
3+
X if prettyVersion is blank (or null?), just use version (Firmata)
4+
X clicking "Update" button in contrib manager shows non-retina version of icon
5+
X https://github.com/processing/processing/issues/4715
6+
o problem is because AquaButtonUI is calling getImage() (not getIcon())
7+
o can be debugging from inside the getIconX() code in Toolkit
8+
X just needed to use setPressedIcon(), setDisabledIcon()
9+
X also found some other issues around the icon handling
10+
X fix the library reporting scripts on the server
11+
X missing version number putting 'null' in the ui
12+
X https://github.com/processing/processing-docs/issues/478
13+
X https://github.com/processing/processing/issues/4696
14+
X https://github.com/processing/processing/pull/4712
15+
o replace appbundler with the Java 8 packager
16+
o appbundler is no longer being developed by Oracle, switch to "packager"
17+
X https://github.com/processing/processing/issues/3071
18+
X major clean-ups to the Contribution Manager code
19+
X warn user to restart browser when it hangs on macOS
20+
X https://github.com/fathominfo/processing-p5js-mode/issues/4
21+
22+
contribs
23+
X Up-to-date status disappears after filter is removed
24+
X https://github.com/processing/processing/issues/4084
25+
X Updates tab blank after adding, removing, updating a contribution
26+
X https://github.com/processing/processing/issues/4082
27+
X https://github.com/processing/processing/issues/4704
28+
X Fixes the removal of redundant contribution and update related issues
29+
X https://github.com/processing/processing/pull/4086
30+
31+
132
0254 (3.2.2)
233
X Find in reference for size() opens StringList.size()
334
X https://github.com/processing/processing/issues/4224

todo.txt

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,3 @@
1-
0255 (3.2.3)
2-
X ensure that update.id is set before checking for contrib updates
3-
X if prettyVersion is blank (or null?), just use version (Firmata)
4-
X clicking "Update" button in contrib manager shows non-retina version of icon
5-
X https://github.com/processing/processing/issues/4715
6-
o problem is because AquaButtonUI is calling getImage() (not getIcon())
7-
o can be debugging from inside the getIconX() code in Toolkit
8-
X just needed to use setPressedIcon(), setDisabledIcon()
9-
X also found some other issues around the icon handling
10-
X fix the library reporting scripts on the server
11-
X missing version number putting 'null' in the ui
12-
X https://github.com/processing/processing-docs/issues/478
13-
X https://github.com/processing/processing/issues/4696
14-
X https://github.com/processing/processing/pull/4712
15-
o replace appbundler with the Java 8 packager
16-
o appbundler is no longer being developed by Oracle, switch to "packager"
17-
X https://github.com/processing/processing/issues/3071
18-
X major clean-ups to the Contribution Manager code
19-
X warn user to restart browser when it hangs on macOS
20-
X https://github.com/fathominfo/processing-p5js-mode/issues/4
21-
22-
contribs
23-
X Up-to-date status disappears after filter is removed
24-
X https://github.com/processing/processing/issues/4084
25-
X Updates tab blank after adding, removing, updating a contribution
26-
X https://github.com/processing/processing/issues/4082
27-
X https://github.com/processing/processing/issues/4704
28-
X Fixes the removal of redundant contribution and update related issues
29-
X https://github.com/processing/processing/pull/4086
30-
311
0256 (3.2.4 or 3.3)
322

333

0 commit comments

Comments
 (0)