rolling over for beta 7

This commit is contained in:
Ben Fry
2022-02-13 14:09:05 -05:00
parent 1775ba43c5
commit 5d7dd7ab83
5 changed files with 93 additions and 87 deletions
+2 -2
View File
@@ -52,9 +52,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 = 1281;
static private final int REVISION = 1282;
/** This might be replaced by main() if there's a lib/version.txt file. */
static private String VERSION_NAME = "1281"; //$NON-NLS-1$
static private String VERSION_NAME = "1282"; //$NON-NLS-1$
static final public String SKETCH_BUNDLE_EXT = ".pdez";
static final public String CONTRIB_BUNDLE_EXT = ".pdex";
+39
View File
@@ -1,3 +1,42 @@
1281 (4.0b6)
X fix up "Display N does not exist, using the default display instead"
X if more than one display, shows list of available displays (size and index)
X properly set names for windowMove() and windowResize()
X PDF export not working with Processing 4.0 beta 5
X https://github.com/processing/processing4/issues/395
X RGB image created with “createImage()" has alpha channel
X https://github.com/processing/processing4/issues/388
X finalize the solution for frame/surface methods
X https://github.com/processing/processing4/issues/53
X need to update windowX/Y on first open
X finalize naming/behavior
X make a note that these are actually working now
pixel density, et al
X Windows scaling at 125% is stretching things to look gross
X https://github.com/processing/processing4/issues/378
X pixelDensity() not working in exported Windows applications?
X https://github.com/processing/processing/issues/5414#issuecomment-841088518
X should be fixed in 4.0 beta 3, and if not, beta 4
o notes from jetbrains
o https://intellij-support.jetbrains.com/hc/en-us/articles/360007994999-HiDPI-configuration
X implement sketch scaling into PApplet
X https://github.com/processing/processing/issues/4897
X Sketches on Windows don't take UI sizing into account
X https://github.com/processing/processing/issues/4894
contribs
X CODED is inconsistent between the default renderer and P2D/P3D
X https://github.com/processing/processing4/issues/376
earlier
X Window freezes on resize in Windows 10 (Default & P2D renderers)
X https://github.com/processing/processing/issues/5579
X https://github.com/processing/processing4/pull/298
X fullScreen() not working on a second display with P2D or P3D
X https://github.com/processing/processing4/issues/352
1280 (4.0b5)
X replace japplemenubar with something that's more likely to work in the future
X https://github.com/processing/processing4/issues/221
+1 -37
View File
@@ -1,40 +1,4 @@
1281 (4.0b6)
X fix up "Display N does not exist, using the default display instead"
X if more than one display, shows list of available displays (size and index)
X properly set names for windowMove() and windowResize()
X PDF export not working with Processing 4.0 beta 5
X https://github.com/processing/processing4/issues/395
X RGB image created with “createImage()" has alpha channel
X https://github.com/processing/processing4/issues/388
X finalize the solution for frame/surface methods
X https://github.com/processing/processing4/issues/53
X need to update windowX/Y on first open
X finalize naming/behavior
X make a note that these are actually working now
pixel density, et al
X Windows scaling at 125% is stretching things to look gross
X https://github.com/processing/processing4/issues/378
X pixelDensity() not working in exported Windows applications?
X https://github.com/processing/processing/issues/5414#issuecomment-841088518
X should be fixed in 4.0 beta 3, and if not, beta 4
o notes from jetbrains
o https://intellij-support.jetbrains.com/hc/en-us/articles/360007994999-HiDPI-configuration
X implement sketch scaling into PApplet
X https://github.com/processing/processing/issues/4897
X Sketches on Windows don't take UI sizing into account
X https://github.com/processing/processing/issues/4894
contribs
X CODED is inconsistent between the default renderer and P2D/P3D
X https://github.com/processing/processing4/issues/376
earlier
X Window freezes on resize in Windows 10 (Default & P2D renderers)
X https://github.com/processing/processing/issues/5579
X https://github.com/processing/processing4/pull/298
X fullScreen() not working on a second display with P2D or P3D
X https://github.com/processing/processing4/issues/352
1282 (4.0b7)
_ rename jAppleMenuBar, make part of build process
+50
View File
@@ -1,3 +1,53 @@
1281 (4.0b6)
X update to Java 17.0.2+8
X move "Add Examples" to bottom of the Examples window
X remove anachronistic Preferences.save() that happens after opening a sketch
X change cmd-click in window title to point to sketch folder
X prevent NullPointerException on first use of Export to Application
X only showed up if no checkboxes were clicked
X when doing Save As, don't included exported applications
change detector
X text in second line of custom dialogs was showing too large
X change detector had large text for the "either way" part of the message
X remove nonsense removeCode() error text
X errors when files removed during "git checkout <branch>"
X the tab has already disappeared, so complains it can't find the SketchCode
X cleaned this up a bit
modes and properties
X major rewrite of handleOpen() et al
X fix bug when changing the Mode between Java and Android
X appears that it would have been broken for a long time
X add option to disable keeping sketch folder and main tab in sync
o sketch.properties not being written if initial mode is p5.js?
X lots of fixes for this, should be in better shape
X when creating a sketch within non-Java mode, should write the settings file
X so that it re-loads in the proper environment
X remove sketch.properties when moving back to the default?
X or can we not do this, because it's used to set the 'next' mode
X done in this release
fixes
X multi-line strings not terminating properly
X https://github.com/processing/processing4/issues/398
X https://github.com/processing/processing4/pull/400
cleaning/earlier
X Interface problems when moving to a monitor with Windows scaling to 125%
X https://github.com/processing/processing4/issues/296
X update JavaFX to use the supported platforms
X run button not deactivating after window closes
X https://github.com/processing/processing/issues/5786
X confirmed to be working in beta 6
o teacher wants user input on the console
o https://github.com/processing/processing/issues/5779
X wrote back to clarify it should be a Mode or Tool
X clean out the repo
X https://github.com/processing/processing/issues/1898
X resolved by moving to the new repo
1280 (4.0b5)
o more reports of code completion not working on macOS
o "working in a6 but not b2"
+1 -48
View File
@@ -1,51 +1,4 @@
1281 (4.0b6)
X update to Java 17.0.2+8
X move "Add Examples" to bottom of the Examples window
X remove anachronistic Preferences.save() that happens after opening a sketch
X change cmd-click in window title to point to sketch folder
X prevent NullPointerException on first use of Export to Application
X only showed up if no checkboxes were clicked
X when doing Save As, don't included exported applications
change detector
X text in second line of custom dialogs was showing too large
X change detector had large text for the "either way" part of the message
X remove nonsense removeCode() error text
X errors when files removed during "git checkout <branch>"
X the tab has already disappeared, so complains it can't find the SketchCode
X cleaned this up a bit
modes and properties
X major rewrite of handleOpen() et al
X fix bug when changing the Mode between Java and Android
X appears that it would have been broken for a long time
X add option to disable keeping sketch folder and main tab in sync
o sketch.properties not being written if initial mode is p5.js?
X lots of fixes for this, should be in better shape
X when creating a sketch within non-Java mode, should write the settings file
X so that it re-loads in the proper environment
X remove sketch.properties when moving back to the default?
X or can we not do this, because it's used to set the 'next' mode
X done in this release
fixes
X multi-line strings not terminating properly
X https://github.com/processing/processing4/issues/398
X https://github.com/processing/processing4/pull/400
cleaning/earlier
X Interface problems when moving to a monitor with Windows scaling to 125%
X https://github.com/processing/processing4/issues/296
X update JavaFX to use the supported platforms
X run button not deactivating after window closes
X https://github.com/processing/processing/issues/5786
X confirmed to be working in beta 6
o teacher wants user input on the console
o https://github.com/processing/processing/issues/5779
X wrote back to clarify it should be a Mode or Tool
X clean out the repo
X https://github.com/processing/processing/issues/1898
X resolved by moving to the new repo
1282 (4.0b7)
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .