Skip to content

Commit

Permalink
rolling over release to start 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benfry committed Nov 28, 2022
1 parent 9375c95 commit 481550e
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 53 deletions.
4 changes: 2 additions & 2 deletions app/src/processing/app/Base.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
public class Base {
// Added accessors for 0218 because the UpdateCheck class was not properly
// updating the values, due to javac inlining the static final values.
static private final int REVISION = 1288;
static private final int REVISION = 1289;
/** This might be replaced by main() if there's a lib/version.txt file. */
static private String VERSION_NAME = "1288"; //$NON-NLS-1$
static private String VERSION_NAME = "1289"; //$NON-NLS-1$

static final public String SKETCH_BUNDLE_EXT = ".pdez";
static final public String CONTRIB_BUNDLE_EXT = ".pdex";
Expand Down
8 changes: 8 additions & 0 deletions core/done.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1288 (4.1)
X updates and clarifications for the size() reference

contribs
X fix the JavaDoc for mousePressed variable
X https://github.com/processing/processing4/pull/605


1287 (4.0.2)
X Updating PApplet to use Java 17 (switch statements, etc)
X XxxList bug with random() if there are zero elements in the array
Expand Down
7 changes: 1 addition & 6 deletions core/todo.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
1288 (4.1?)
X updates and clarifications for the size() reference

contribs
X fix the JavaDoc for mousePressed variable
X https://github.com/processing/processing4/pull/605
1289 (4.1.1)


_ args passed to main() aren't working
Expand Down
47 changes: 47 additions & 0 deletions done.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
1288 (4.1)
X bump Java version to 17.0.5
X theme is not being kept after Processing restart on Windows
X unable to reproduce so just hoping this works
X https://github.com/processing/processing4/issues/565
X update languages to work with more specific locales
X expanded language codes to support traditional Chinese translation
X https://github.com/processing/processing4/issues/600
X update wiki
X https://github.com/processing/processing4/wiki/Translations
X https://www.oracle.com/java/technologies/javase/jdk17-suported-locales.html
X Offline reference has been removed for 4.x, build a new version
X implement offline reference download
X https://github.com/processing/processing-website/releases/download/2022-10-05-1459/reference.zip
X add a note about the file size to the progress window
X document on wiki
X https://github.com/processing/processing4/wiki/Offline-Reference
X https://github.com/processing/processing4/issues/524
X https://github.com/processing/processing4/issues/589
X offline documentation source?
o https://github.com/processing/processing-website/releases
o json: https://api.github.com/repos/processing/processing-website/releases
o has an array of objects, and there's an object key for 'zipball_url' we can use:
o https://api.github.com/repos/processing/processing-website/zipball/2022-11-14-1615
X look into LSP code contribution
X https://github.com/processing/processing4/pull/564
X https://github.com/processing/processing4/issues/117
X App was merged into processing.mode.java.lsp.PdeLanguageServer
X "Show Sketch Folder" for library examples need to treat the sketch as Untitled
o and with that, switch to another directory
X https://github.com/processing/processing4/issues/548
X was working as intended
o remove target.path from build/build.xml
o maybe simpler way to write version? sheesh
X not sure what this was about, but confirmed that things are set up as they should be

contrib
X size(863,863/2) not working as first line of setup() function in a simple sketch
X https://github.com/processing/processing4/issues/602
X preproc inserting weird number of spaces
X https://github.com/processing/processing4/issues/607
X before 'public' in functions, it's an extra single space
o not indenting the rest of the code at all
X many blank lines at the beginning
o 'exported at' text at the top is awkward


1287 (4.0.2)
X using Java 17 in more syntax
X fix potential casting problem with Platform and DefaultPlatform
Expand Down
46 changes: 1 addition & 45 deletions todo.txt
Original file line number Diff line number Diff line change
@@ -1,48 +1,4 @@
1288 (4.1?)
X bump Java version to 17.0.5
X theme is not being kept after Processing restart on Windows
X unable to reproduce so just hoping this works
X https://github.com/processing/processing4/issues/565
X update languages to work with more specific locales
X expanded language codes to support traditional Chinese translation
X https://github.com/processing/processing4/issues/600
X update wiki
X https://github.com/processing/processing4/wiki/Translations
X https://www.oracle.com/java/technologies/javase/jdk17-suported-locales.html
X Offline reference has been removed for 4.x, build a new version
X implement offline reference download
X https://github.com/processing/processing-website/releases/download/2022-10-05-1459/reference.zip
X add a note about the file size to the progress window
X document on wiki
X https://github.com/processing/processing4/wiki/Offline-Reference
X https://github.com/processing/processing4/issues/524
X https://github.com/processing/processing4/issues/589
X offline documentation source?
o https://github.com/processing/processing-website/releases
o json: https://api.github.com/repos/processing/processing-website/releases
o has an array of objects, and there's an object key for 'zipball_url' we can use:
o https://api.github.com/repos/processing/processing-website/zipball/2022-11-14-1615
X look into LSP code contribution
X https://github.com/processing/processing4/pull/564
X https://github.com/processing/processing4/issues/117
X App was merged into processing.mode.java.lsp.PdeLanguageServer
X "Show Sketch Folder" for library examples need to treat the sketch as Untitled
o and with that, switch to another directory
X https://github.com/processing/processing4/issues/548
X was working as intended
o remove target.path from build/build.xml
o maybe simpler way to write version? sheesh
X not sure what this was about, but confirmed that things are set up as they should be

contrib
X size(863,863/2) not working as first line of setup() function in a simple sketch
X https://github.com/processing/processing4/issues/602
X preproc inserting weird number of spaces
X https://github.com/processing/processing4/issues/607
X before 'public' in functions, it's an extra single space
o not indenting the rest of the code at all
X many blank lines at the beginning
o 'exported at' text at the top is awkward
1289 (4.1.1)


_ export to IntelliJ? how tricky?
Expand Down

0 comments on commit 481550e

Please sign in to comment.