mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
rolling over release to start 4.1.1
This commit is contained in:
@@ -54,9 +54,9 @@ import processing.data.StringList;
|
||||
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";
|
||||
|
||||
@@ -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
|
||||
|
||||
+1
-6
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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?
|
||||
|
||||
Reference in New Issue
Block a user