Skip to content

Commit 8b8c53d

Browse files
committed
rolling over for the next release (4.2.1)
1 parent adad1a1 commit 8b8c53d

File tree

5 files changed

+51
-45
lines changed

5 files changed

+51
-45
lines changed

app/src/processing/app/Base.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
public class Base {
5555
// Added accessors for 0218 because the UpdateCheck class was not properly
5656
// updating the values, due to javac inlining the static final values.
57-
static private final int REVISION = 1292;
57+
static private final int REVISION = 1293;
5858
/** This might be replaced by main() if there's a lib/version.txt file. */
59-
static private String VERSION_NAME = "1292"; //$NON-NLS-1$
59+
static private String VERSION_NAME = "1293"; //$NON-NLS-1$
6060

6161
static final public String SKETCH_BUNDLE_EXT = ".pdez";
6262
static final public String CONTRIB_BUNDLE_EXT = ".pdex";

core/done.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
1292 (4.2)
2+
X has been resized from 100?100 to 116?100 by the window manager
3+
X fullScreen(P2D) from an executable does not work properly
4+
X partially fixed, but now need to sort out hidpi issues
5+
X https://github.com/processing/processing4/issues/514
6+
X Table.getString() raises stackOverflowError on double value encounter
7+
X https://github.com/processing/processing4/issues/671
8+
9+
contribs
10+
X Support chained decimals during SVG Parsing
11+
X https://github.com/processing/processing4/pull/659
12+
X https://github.com/processing/processing4/issues/515
13+
14+
115
1291 (4.1.3)
216
X no changes to core for this release
317

core/todo.txt

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
1292 (4.2)
2-
X has been resized from 100?100 to 116?100 by the window manager
3-
X fullScreen(P2D) from an executable does not work properly
4-
X partially fixed, but now need to sort out hidpi issues
5-
X https://github.com/processing/processing4/issues/514
6-
X Table.getString() raises stackOverflowError on double value encounter
7-
X https://github.com/processing/processing4/issues/671
8-
9-
contribs
10-
X Support chained decimals during SVG Parsing
11-
X https://github.com/processing/processing4/pull/659
12-
X https://github.com/processing/processing4/issues/515
1+
1293 (4.2.1)
132

143

154
JNA version of getting resolution https://stackoverflow.com/a/32588375

done.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
1292 (4.2)
2+
X application exported to the wrong folder
3+
X https://github.com/processing/processing4/issues/601
4+
X more /tmp folder problems with Linux (may be the subdirectories?)
5+
X https://github.com/processing/processing4/issues/666
6+
X add a protocol handler for pdex and pdez
7+
X https://github.com/processing/processing4/issues/559
8+
X implemented for macOS
9+
X implemented for Windows
10+
X Windows implementation https://git.eclipse.org/c/platform/eclipse.platform.ui.git/commit/?id=94914f2852f0c32e60361648ec82da153b8d70ae
11+
X https://web.archive.org/web/20210601082308/https://support.shotgunsoftware.com/hc/en-us/articles/219031308-How-to-launch-external-applications-using-custom-protocols-rock-instead-of-http-?mobile_site=true
12+
X presumably from https://github.com/pboucher ?
13+
X check on Linux implementation
14+
X implement icon files on Windows
15+
X pdez (and presumably pdex) files have the wrong icons on Windows
16+
X implement document icons for pdez etc on Windows
17+
X icons/earlier
18+
X need .pde document icons
19+
X need .psk file icon
20+
21+
python (api changes mean this is 4.2)
22+
X move ExportDialog to processing.app.ui (out of Java Mode) so it can be used by Jython
23+
X move isXcodeInstalled() methods from JavaBuild into MacPlatform
24+
X add activateIgnoringOtherApps() to ThinkDifferent
25+
26+
export
27+
X Exported project to Windows cannot find Java
28+
X https://github.com/processing/processing4/issues/667
29+
X when exporting, the "exporting application" message doesn't seem to clear
30+
X was a regression caused by ExportPrompt changes
31+
X after exporting application, open the sketch folder
32+
33+
134
1291 (4.1.3)
235
X preferences.txt is not saved when closing Processing under certain circumstances
336
X https://github.com/processing/processing4/issues/608

todo.txt

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,4 @@
1-
1292 (4.2)
2-
X application exported to the wrong folder
3-
X https://github.com/processing/processing4/issues/601
4-
X more /tmp folder problems with Linux (may be the subdirectories?)
5-
X https://github.com/processing/processing4/issues/666
6-
X add a protocol handler for pdex and pdez
7-
X https://github.com/processing/processing4/issues/559
8-
X implemented for macOS
9-
X implemented for Windows
10-
X Windows implementation https://git.eclipse.org/c/platform/eclipse.platform.ui.git/commit/?id=94914f2852f0c32e60361648ec82da153b8d70ae
11-
X https://web.archive.org/web/20210601082308/https://support.shotgunsoftware.com/hc/en-us/articles/219031308-How-to-launch-external-applications-using-custom-protocols-rock-instead-of-http-?mobile_site=true
12-
X presumably from https://github.com/pboucher ?
13-
X check on Linux implementation
14-
X implement icon files on Windows
15-
X pdez (and presumably pdex) files have the wrong icons on Windows
16-
X implement document icons for pdez etc on Windows
17-
X icons/earlier
18-
X need .pde document icons
19-
X need .psk file icon
20-
21-
python (api changes mean this is 4.2)
22-
X move ExportDialog to processing.app.ui (out of Java Mode) so it can be used by Jython
23-
X move isXcodeInstalled() methods from JavaBuild into MacPlatform
24-
X add activateIgnoringOtherApps() to ThinkDifferent
25-
26-
export
27-
X Exported project to Windows cannot find Java
28-
X https://github.com/processing/processing4/issues/667
29-
X when exporting, the "exporting application" message doesn't seem to clear
30-
X was a regression caused by ExportPrompt changes
31-
X after exporting application, open the sketch folder
1+
1293 (4.2.1)
322

333

344
_ change the welcome screen to be wide instead of vertical

0 commit comments

Comments
 (0)