mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
starting revision 0249
This commit is contained in:
@@ -55,9 +55,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 = 248;
|
||||
static private final int REVISION = 249;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static private String VERSION_NAME = "0248"; //$NON-NLS-1$
|
||||
static private String VERSION_NAME = "0249"; //$NON-NLS-1$
|
||||
/** Set true if this a proper release rather than a numbered revision. */
|
||||
|
||||
/** True if heavy debugging error/log messages are enabled */
|
||||
|
||||
@@ -1,3 +1,49 @@
|
||||
0248 (3.0.2)
|
||||
X Fix another "Zero length string passed to TextLayout constructor" error
|
||||
X Ambiguity on where to call smooth()
|
||||
X https://github.com/processing/processing/issues/4211
|
||||
X add additional clarification for Eclipse users
|
||||
X Flipped Y-axis in JavaFX is now done (JDK bug)
|
||||
X https://github.com/processing/processing/issues/3795
|
||||
|
||||
jakub
|
||||
X Initialize sketch args before calling settings()
|
||||
X https://github.com/processing/processing/issues/4219
|
||||
X https://github.com/processing/processing/pull/4220
|
||||
|
||||
andres
|
||||
X Stop button in OpenGL exported applications does not use preference settings
|
||||
X https://github.com/processing/processing/issues/4064
|
||||
X Export without a stop button using P3D or P2D
|
||||
X https://github.com/processing/processing/issues/4056
|
||||
X glClearDepthf() not available on older hardware
|
||||
X https://github.com/processing/processing/issues/4106
|
||||
X Drawing a sphere with shape() first changes sphereDetail from default
|
||||
X https://github.com/processing/processing/issues/4192
|
||||
X PShape.scale() affects strokeWeight differently in P2D and P3D
|
||||
X https://github.com/processing/processing/issues/4231
|
||||
X createShape(GROUP) + textured child + non-textured child = P3D render problems
|
||||
X https://github.com/processing/processing/issues/4176
|
||||
X pixelDensity() and createGraphics() with P3D
|
||||
X https://github.com/processing/processing/issues/4039
|
||||
X Friendlier message when running drawing commands outside animation thread
|
||||
X https://github.com/processing/processing/issues/4196
|
||||
X strokeWeight() not working properly with point() in P2D and P3D
|
||||
X https://github.com/processing/processing/issues/4188
|
||||
X exit() is not called in P2D/P3D
|
||||
X https://github.com/processing/processing/issues/4156
|
||||
X attrib*() function does not work well with PShape
|
||||
X https://github.com/processing/processing/issues/4048
|
||||
|
||||
contribs
|
||||
X Fill out the Javadoc for PMatrix
|
||||
X https://github.com/processing/processing/pull/4155
|
||||
X Have PSurfaceFX pay attention to the setVisible argument
|
||||
X https://github.com/processing/processing/pull/4210
|
||||
X Use xdg-open in PApplet#launch(String)
|
||||
X https://github.com/processing/processing/pull/4171
|
||||
|
||||
|
||||
0247 (3.0.1)
|
||||
X curveVertex() does not work with FX2D renderer
|
||||
X https://github.com/processing/processing/issues/3960
|
||||
|
||||
+1
-44
@@ -1,47 +1,4 @@
|
||||
0248 (3.0.2)
|
||||
X Fix another "Zero length string passed to TextLayout constructor" error
|
||||
X Ambiguity on where to call smooth()
|
||||
X https://github.com/processing/processing/issues/4211
|
||||
X add additional clarification for Eclipse users
|
||||
X Flipped Y-axis in JavaFX is now done (JDK bug)
|
||||
X https://github.com/processing/processing/issues/3795
|
||||
|
||||
jakub
|
||||
X Initialize sketch args before calling settings()
|
||||
X https://github.com/processing/processing/issues/4219
|
||||
X https://github.com/processing/processing/pull/4220
|
||||
|
||||
andres
|
||||
X Stop button in OpenGL exported applications does not use preference settings
|
||||
X https://github.com/processing/processing/issues/4064
|
||||
X Export without a stop button using P3D or P2D
|
||||
X https://github.com/processing/processing/issues/4056
|
||||
X glClearDepthf() not available on older hardware
|
||||
X https://github.com/processing/processing/issues/4106
|
||||
X Drawing a sphere with shape() first changes sphereDetail from default
|
||||
X https://github.com/processing/processing/issues/4192
|
||||
X PShape.scale() affects strokeWeight differently in P2D and P3D
|
||||
X https://github.com/processing/processing/issues/4231
|
||||
X createShape(GROUP) + textured child + non-textured child = P3D render problems
|
||||
X https://github.com/processing/processing/issues/4176
|
||||
X pixelDensity() and createGraphics() with P3D
|
||||
X https://github.com/processing/processing/issues/4039
|
||||
X Friendlier message when running drawing commands outside animation thread
|
||||
X https://github.com/processing/processing/issues/4196
|
||||
X strokeWeight() not working properly with point() in P2D and P3D
|
||||
X https://github.com/processing/processing/issues/4188
|
||||
X exit() is not called in P2D/P3D
|
||||
X https://github.com/processing/processing/issues/4156
|
||||
X attrib*() function does not work well with PShape
|
||||
X https://github.com/processing/processing/issues/4048
|
||||
|
||||
contribs
|
||||
X Fill out the Javadoc for PMatrix
|
||||
X https://github.com/processing/processing/pull/4155
|
||||
X Have PSurfaceFX pay attention to the setVisible argument
|
||||
X https://github.com/processing/processing/pull/4210
|
||||
X Use xdg-open in PApplet#launch(String)
|
||||
X https://github.com/processing/processing/pull/4171
|
||||
0249 (3.0.3)
|
||||
|
||||
|
||||
_ textAlign(CENTER) and pixelDensity(2) aligning incorrectly with Java2D
|
||||
|
||||
@@ -1,3 +1,81 @@
|
||||
0248 (3.0.2)
|
||||
X move to Java 8u74, also fixes JavaFX issue
|
||||
X actually require OS X 10.8.5 (was set to 10.7)
|
||||
X the Wiki said 10.8.3 required for 3.0, but has since been updated
|
||||
|
||||
contribs
|
||||
X add "full screen" option to the Editor on OS X
|
||||
X https://github.com/processing/processing/issues/3993
|
||||
X https://github.com/processing/processing/pull/4078
|
||||
X add install script for site for ARM
|
||||
X https://github.com/processing/processing/pull/4110
|
||||
X search/replace shouldn't include the string being replaced
|
||||
X https://github.com/processing/processing/issues/4270
|
||||
X https://github.com/processing/processing/pull/4271
|
||||
X 'Background Color when Presenting' not visible on Preferences window
|
||||
X https://github.com/processing/processing/issues/4272
|
||||
X https://github.com/processing/processing/pull/4278
|
||||
X Fix minor autoformatter bugs (enums not working)
|
||||
X https://github.com/processing/processing/issues/4185
|
||||
X https://github.com/processing/processing/pull/4200
|
||||
X Update Source Code Pro and Source Sans Pro fonts to the latest versions
|
||||
X https://github.com/processing/processing/pull/4150
|
||||
X https://github.com/processing/processing/issues/3836
|
||||
X Minor fixes for Java Mode
|
||||
X https://github.com/processing/processing/pull/4114
|
||||
X Add i18n support for the PopUp menu
|
||||
X https://github.com/processing/processing/pull/4060
|
||||
X Add Turkish to the list of languages
|
||||
X https://github.com/processing/processing/pull/4073
|
||||
X Make the error message for stack overflows clearer
|
||||
X https://github.com/processing/processing/pull/4152
|
||||
X get rid of dt_socket message, making command line run a little better
|
||||
X https://github.com/processing/processing/issues/4098
|
||||
X https://github.com/processing/processing/pull/4103
|
||||
X message when reference is find out on nothing selected
|
||||
X https://github.com/processing/processing/pull/4296
|
||||
X better handling of quotes in command line args
|
||||
X https://github.com/processing/processing/pull/4145
|
||||
X https://github.com/processing/processing/issues/3996
|
||||
X https://github.com/processing/processing/issues/4119
|
||||
X fix crashing bugs when user's name has non-ASCII characters
|
||||
X https://github.com/processing/processing/pull/4204
|
||||
X ARM updates to include GPIO numbers and images of wiring diagrams
|
||||
X https://github.com/processing/processing/pull/4297
|
||||
X https://github.com/processing/processing/pull/4298
|
||||
X Icon instead of an "X" for the "could not connect" message
|
||||
X https://github.com/processing/processing/issues/3706
|
||||
X https://github.com/processing/processing/pull/4096
|
||||
X https://github.com/processing/processing/pull/4055
|
||||
X Several fixes for Chinese/Japanese/Korean InputMethod support
|
||||
X https://github.com/processing/processing/pull/4293
|
||||
X https://github.com/processing/processing/issues/2968
|
||||
X https://github.com/processing/processing/issues/3475
|
||||
X https://github.com/processing/processing/issues/3860
|
||||
X Add download indicator to the Contribution Manager
|
||||
X https://github.com/processing/processing/pull/4154
|
||||
X https://github.com/processing/processing/issues/4105
|
||||
|
||||
jakub
|
||||
X Workaround for JRE bug freezing the PDE during code completion
|
||||
X https://github.com/processing/processing/pull/4079
|
||||
X Debugger fixes
|
||||
X prevent NPE because ui was not updated on AWT
|
||||
X https://github.com/processing/processing/pull/4117
|
||||
X fix NPE when stepping into static method
|
||||
X https://github.com/processing/processing/issues/3590
|
||||
X step button works correctly when SHIFT or ALT is pressed
|
||||
X https://github.com/processing/processing/issues/4116
|
||||
X More editor fixes
|
||||
X https://github.com/processing/processing/pull/4113
|
||||
X Tooltip over variable decl has wrong style and content
|
||||
X https://github.com/processing/processing/issues/3940
|
||||
X May have fixed? NullPointerException in initiateToolTip()
|
||||
X https://github.com/processing/processing/issues/3286
|
||||
X "String index out of range" error with bracket handling in the editor
|
||||
X https://github.com/processing/processing/issues/1940
|
||||
|
||||
|
||||
0247 (3.0.1)
|
||||
X NullPointerException in ContributionManager.deleteTemp()
|
||||
X https://github.com/processing/processing/issues/4026
|
||||
|
||||
@@ -1,79 +1,4 @@
|
||||
0248 (3.0.2)
|
||||
X move to Java 8u74, also fixes JavaFX issue
|
||||
X actually require OS X 10.8.5 (was set to 10.7)
|
||||
X the Wiki said 10.8.3 required for 3.0, but has since been updated
|
||||
|
||||
contribs
|
||||
X add "full screen" option to the Editor on OS X
|
||||
X https://github.com/processing/processing/issues/3993
|
||||
X https://github.com/processing/processing/pull/4078
|
||||
X add install script for site for ARM
|
||||
X https://github.com/processing/processing/pull/4110
|
||||
X search/replace shouldn't include the string being replaced
|
||||
X https://github.com/processing/processing/issues/4270
|
||||
X https://github.com/processing/processing/pull/4271
|
||||
X 'Background Color when Presenting' not visible on Preferences window
|
||||
X https://github.com/processing/processing/issues/4272
|
||||
X https://github.com/processing/processing/pull/4278
|
||||
X Fix minor autoformatter bugs (enums not working)
|
||||
X https://github.com/processing/processing/issues/4185
|
||||
X https://github.com/processing/processing/pull/4200
|
||||
X Update Source Code Pro and Source Sans Pro fonts to the latest versions
|
||||
X https://github.com/processing/processing/pull/4150
|
||||
X https://github.com/processing/processing/issues/3836
|
||||
X Minor fixes for Java Mode
|
||||
X https://github.com/processing/processing/pull/4114
|
||||
X Add i18n support for the PopUp menu
|
||||
X https://github.com/processing/processing/pull/4060
|
||||
X Add Turkish to the list of languages
|
||||
X https://github.com/processing/processing/pull/4073
|
||||
X Make the error message for stack overflows clearer
|
||||
X https://github.com/processing/processing/pull/4152
|
||||
X get rid of dt_socket message, making command line run a little better
|
||||
X https://github.com/processing/processing/issues/4098
|
||||
X https://github.com/processing/processing/pull/4103
|
||||
X message when reference is find out on nothing selected
|
||||
X https://github.com/processing/processing/pull/4296
|
||||
X better handling of quotes in command line args
|
||||
X https://github.com/processing/processing/pull/4145
|
||||
X https://github.com/processing/processing/issues/3996
|
||||
X https://github.com/processing/processing/issues/4119
|
||||
X fix crashing bugs when user's name has non-ASCII characters
|
||||
X https://github.com/processing/processing/pull/4204
|
||||
X ARM updates to include GPIO numbers and images of wiring diagrams
|
||||
X https://github.com/processing/processing/pull/4297
|
||||
X https://github.com/processing/processing/pull/4298
|
||||
X Icon instead of an "X" for the "could not connect" message
|
||||
X https://github.com/processing/processing/issues/3706
|
||||
X https://github.com/processing/processing/pull/4096
|
||||
X https://github.com/processing/processing/pull/4055
|
||||
X Several fixes for Chinese/Japanese/Korean InputMethod support
|
||||
X https://github.com/processing/processing/pull/4293
|
||||
X https://github.com/processing/processing/issues/2968
|
||||
X https://github.com/processing/processing/issues/3475
|
||||
X https://github.com/processing/processing/issues/3860
|
||||
X Add download indicator to the Contribution Manager
|
||||
X https://github.com/processing/processing/pull/4154
|
||||
X https://github.com/processing/processing/issues/4105
|
||||
|
||||
jakub
|
||||
X Workaround for JRE bug freezing the PDE during code completion
|
||||
X https://github.com/processing/processing/pull/4079
|
||||
X Debugger fixes
|
||||
X prevent NPE because ui was not updated on AWT
|
||||
X https://github.com/processing/processing/pull/4117
|
||||
X fix NPE when stepping into static method
|
||||
X https://github.com/processing/processing/issues/3590
|
||||
X step button works correctly when SHIFT or ALT is pressed
|
||||
X https://github.com/processing/processing/issues/4116
|
||||
X More editor fixes
|
||||
X https://github.com/processing/processing/pull/4113
|
||||
X Tooltip over variable decl has wrong style and content
|
||||
X https://github.com/processing/processing/issues/3940
|
||||
X May have fixed? NullPointerException in initiateToolTip()
|
||||
X https://github.com/processing/processing/issues/3286
|
||||
X "String index out of range" error with bracket handling in the editor
|
||||
X https://github.com/processing/processing/issues/1940
|
||||
0249 (3.0.3)
|
||||
|
||||
|
||||
_ tabs aren't working properly (several bugs?)
|
||||
|
||||
Reference in New Issue
Block a user