Skip to content

Commit 481550e

Browse files
committed
rolling over release to start 4.1.1
1 parent 9375c95 commit 481550e

File tree

5 files changed

+59
-53
lines changed

5 files changed

+59
-53
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 = 1288;
57+
static private final int REVISION = 1289;
5858
/** This might be replaced by main() if there's a lib/version.txt file. */
59-
static private String VERSION_NAME = "1288"; //$NON-NLS-1$
59+
static private String VERSION_NAME = "1289"; //$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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1288 (4.1)
2+
X updates and clarifications for the size() reference
3+
4+
contribs
5+
X fix the JavaDoc for mousePressed variable
6+
X https://github.com/processing/processing4/pull/605
7+
8+
19
1287 (4.0.2)
210
X Updating PApplet to use Java 17 (switch statements, etc)
311
X XxxList bug with random() if there are zero elements in the array

core/todo.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
1288 (4.1?)
2-
X updates and clarifications for the size() reference
3-
4-
contribs
5-
X fix the JavaDoc for mousePressed variable
6-
X https://github.com/processing/processing4/pull/605
1+
1289 (4.1.1)
72

83

94
_ args passed to main() aren't working

done.txt

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
1288 (4.1)
2+
X bump Java version to 17.0.5
3+
X theme is not being kept after Processing restart on Windows
4+
X unable to reproduce so just hoping this works
5+
X https://github.com/processing/processing4/issues/565
6+
X update languages to work with more specific locales
7+
X expanded language codes to support traditional Chinese translation
8+
X https://github.com/processing/processing4/issues/600
9+
X update wiki
10+
X https://github.com/processing/processing4/wiki/Translations
11+
X https://www.oracle.com/java/technologies/javase/jdk17-suported-locales.html
12+
X Offline reference has been removed for 4.x, build a new version
13+
X implement offline reference download
14+
X https://github.com/processing/processing-website/releases/download/2022-10-05-1459/reference.zip
15+
X add a note about the file size to the progress window
16+
X document on wiki
17+
X https://github.com/processing/processing4/wiki/Offline-Reference
18+
X https://github.com/processing/processing4/issues/524
19+
X https://github.com/processing/processing4/issues/589
20+
X offline documentation source?
21+
o https://github.com/processing/processing-website/releases
22+
o json: https://api.github.com/repos/processing/processing-website/releases
23+
o has an array of objects, and there's an object key for 'zipball_url' we can use:
24+
o https://api.github.com/repos/processing/processing-website/zipball/2022-11-14-1615
25+
X look into LSP code contribution
26+
X https://github.com/processing/processing4/pull/564
27+
X https://github.com/processing/processing4/issues/117
28+
X App was merged into processing.mode.java.lsp.PdeLanguageServer
29+
X "Show Sketch Folder" for library examples need to treat the sketch as Untitled
30+
o and with that, switch to another directory
31+
X https://github.com/processing/processing4/issues/548
32+
X was working as intended
33+
o remove target.path from build/build.xml
34+
o maybe simpler way to write version? sheesh
35+
X not sure what this was about, but confirmed that things are set up as they should be
36+
37+
contrib
38+
X size(863,863/2) not working as first line of setup() function in a simple sketch
39+
X https://github.com/processing/processing4/issues/602
40+
X preproc inserting weird number of spaces
41+
X https://github.com/processing/processing4/issues/607
42+
X before 'public' in functions, it's an extra single space
43+
o not indenting the rest of the code at all
44+
X many blank lines at the beginning
45+
o 'exported at' text at the top is awkward
46+
47+
148
1287 (4.0.2)
249
X using Java 17 in more syntax
350
X fix potential casting problem with Platform and DefaultPlatform

todo.txt

Lines changed: 1 addition & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,4 @@
1-
1288 (4.1?)
2-
X bump Java version to 17.0.5
3-
X theme is not being kept after Processing restart on Windows
4-
X unable to reproduce so just hoping this works
5-
X https://github.com/processing/processing4/issues/565
6-
X update languages to work with more specific locales
7-
X expanded language codes to support traditional Chinese translation
8-
X https://github.com/processing/processing4/issues/600
9-
X update wiki
10-
X https://github.com/processing/processing4/wiki/Translations
11-
X https://www.oracle.com/java/technologies/javase/jdk17-suported-locales.html
12-
X Offline reference has been removed for 4.x, build a new version
13-
X implement offline reference download
14-
X https://github.com/processing/processing-website/releases/download/2022-10-05-1459/reference.zip
15-
X add a note about the file size to the progress window
16-
X document on wiki
17-
X https://github.com/processing/processing4/wiki/Offline-Reference
18-
X https://github.com/processing/processing4/issues/524
19-
X https://github.com/processing/processing4/issues/589
20-
X offline documentation source?
21-
o https://github.com/processing/processing-website/releases
22-
o json: https://api.github.com/repos/processing/processing-website/releases
23-
o has an array of objects, and there's an object key for 'zipball_url' we can use:
24-
o https://api.github.com/repos/processing/processing-website/zipball/2022-11-14-1615
25-
X look into LSP code contribution
26-
X https://github.com/processing/processing4/pull/564
27-
X https://github.com/processing/processing4/issues/117
28-
X App was merged into processing.mode.java.lsp.PdeLanguageServer
29-
X "Show Sketch Folder" for library examples need to treat the sketch as Untitled
30-
o and with that, switch to another directory
31-
X https://github.com/processing/processing4/issues/548
32-
X was working as intended
33-
o remove target.path from build/build.xml
34-
o maybe simpler way to write version? sheesh
35-
X not sure what this was about, but confirmed that things are set up as they should be
36-
37-
contrib
38-
X size(863,863/2) not working as first line of setup() function in a simple sketch
39-
X https://github.com/processing/processing4/issues/602
40-
X preproc inserting weird number of spaces
41-
X https://github.com/processing/processing4/issues/607
42-
X before 'public' in functions, it's an extra single space
43-
o not indenting the rest of the code at all
44-
X many blank lines at the beginning
45-
o 'exported at' text at the top is awkward
1+
1289 (4.1.1)
462

473

484
_ export to IntelliJ? how tricky?

0 commit comments

Comments
 (0)