mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 14:19:19 +01:00
starting next release
This commit is contained in:
@@ -46,9 +46,9 @@ import processing.mode.java.JavaMode;
|
||||
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 = 228;
|
||||
static private final int REVISION = 229;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static private String VERSION_NAME = "0228"; //$NON-NLS-1$
|
||||
static private String VERSION_NAME = "0229"; //$NON-NLS-1$
|
||||
/** Set true if this a proper release rather than a numbered revision. */
|
||||
// static private boolean RELEASE = false;
|
||||
|
||||
|
||||
@@ -1,3 +1,41 @@
|
||||
0228 core (3.0a1)
|
||||
X add copy() method to PVector
|
||||
X modify PVector to include better methods for chaining operations
|
||||
X http://code.google.com/p/processing/issues/detail?id=218
|
||||
X https://github.com/processing/processing/issues/257
|
||||
X PVector discussion with Dan
|
||||
o Jer and Dan will look at their code, plus toxiclibs
|
||||
X blendMode() broken with default renderer
|
||||
X fix from Jakub Valtar
|
||||
X https://github.com/processing/processing/issues/2012
|
||||
X may have been introduced between 2.0b7 and 2.0b8
|
||||
X https://github.com/processing/processing/issues/2275
|
||||
X https://github.com/processing/processing/issues/2276
|
||||
X https://github.com/processing/processing/issues/2483
|
||||
X if all data is NaN in a FloatDict, return NaN for maxValue() and minValue()
|
||||
X formerly as AIOOBE -1 because -1 means "not found"
|
||||
X but that was indexing directly into the data array
|
||||
|
||||
pulls
|
||||
X filter() not applying to images produced by saveframe() consistently
|
||||
X https://github.com/processing/processing/issues/2619
|
||||
X drawLatch in PJOGL can be null after requesting frame rendering
|
||||
X https://github.com/processing/processing/issues/2630
|
||||
|
||||
table
|
||||
X major performance improvements to 'newlines' parsing
|
||||
X last row was being skipped on tables with the 'newlines' option set
|
||||
X debug table parsing with header rows
|
||||
X bug fix for setting data types
|
||||
X add getColumnTitle(int) and getColumnTitles() to TableRow interface
|
||||
X fixes for new Table(Iterable)
|
||||
X category data types were not importing their dictionary
|
||||
X column titles weren't set on the new table
|
||||
X drastic performance improvements for addRow()
|
||||
X when using setColumnType(), replace nulls with missingInt, missingFloat, etc
|
||||
X formerly, was throwing a NullPointerException
|
||||
|
||||
|
||||
0227 core (2.2.1)
|
||||
X Permit mouse PRESS to set mouseX/mouseY
|
||||
X https://github.com/processing/processing/pull/2509
|
||||
|
||||
@@ -1,39 +1,4 @@
|
||||
0228 core (3.0a1)
|
||||
X add copy() method to PVector
|
||||
X modify PVector to include better methods for chaining operations
|
||||
X http://code.google.com/p/processing/issues/detail?id=218
|
||||
X https://github.com/processing/processing/issues/257
|
||||
X PVector discussion with Dan
|
||||
o Jer and Dan will look at their code, plus toxiclibs
|
||||
X blendMode() broken with default renderer
|
||||
X fix from Jakub Valtar
|
||||
X https://github.com/processing/processing/issues/2012
|
||||
X may have been introduced between 2.0b7 and 2.0b8
|
||||
X https://github.com/processing/processing/issues/2275
|
||||
X https://github.com/processing/processing/issues/2276
|
||||
X https://github.com/processing/processing/issues/2483
|
||||
X if all data is NaN in a FloatDict, return NaN for maxValue() and minValue()
|
||||
X formerly as AIOOBE -1 because -1 means "not found"
|
||||
X but that was indexing directly into the data array
|
||||
|
||||
pulls
|
||||
X filter() not applying to images produced by saveframe() consistently
|
||||
X https://github.com/processing/processing/issues/2619
|
||||
X drawLatch in PJOGL can be null after requesting frame rendering
|
||||
X https://github.com/processing/processing/issues/2630
|
||||
|
||||
table
|
||||
X major performance improvements to 'newlines' parsing
|
||||
X last row was being skipped on tables with the 'newlines' option set
|
||||
X debug table parsing with header rows
|
||||
X bug fix for setting data types
|
||||
X add getColumnTitle(int) and getColumnTitles() to TableRow interface
|
||||
X fixes for new Table(Iterable)
|
||||
X category data types were not importing their dictionary
|
||||
X column titles weren't set on the new table
|
||||
X drastic performance improvements for addRow()
|
||||
X when using setColumnType(), replace nulls with missingInt, missingFloat, etc
|
||||
X formerly, was throwing a NullPointerException
|
||||
0229 core (3.0a2)
|
||||
|
||||
|
||||
applet removal
|
||||
|
||||
46
done.txt
46
done.txt
@@ -1,3 +1,49 @@
|
||||
0228 pde (3.0a1)
|
||||
X increase heap size to 256m (-Xmx256) per Manindra request
|
||||
X use a ButtonGroup so that the current Mode cannot be de-selected
|
||||
X https://github.com/processing/processing/issues/2545
|
||||
|
||||
earlier
|
||||
X cpu usage when nothing happening (unmarked duplicate)
|
||||
X https://github.com/processing/processing/issues/1074
|
||||
|
||||
gsoc
|
||||
X Line coloring incorrect for filtered contribution listings
|
||||
X https://github.com/processing/processing/issues/2583
|
||||
X https://github.com/processing/processing/pull/2598
|
||||
X Added Present's background color as an option to the Preferences window
|
||||
X https://github.com/processing/processing/pull/2568
|
||||
X check for updates with contribs
|
||||
X https://github.com/processing/processing/pull/2636
|
||||
X shows update manager on startup
|
||||
X contrib properties files ignored in favor of contributions.txt from p5.org
|
||||
X https://github.com/processing/processing/issues/2572
|
||||
X tweak mode integrated
|
||||
X https://github.com/processing/processing/pull/2624
|
||||
X wrong mode selected if sketch is modified (checkbox changes)
|
||||
X https://github.com/processing/processing/issues/2615
|
||||
X Add date and time stamps to the Contribution Manager
|
||||
X https://github.com/processing/processing/pull/2651
|
||||
|
||||
pulls
|
||||
X Implementation of a list of open sketches in the Sketch menu
|
||||
X https://github.com/processing/processing/pull/2551
|
||||
X color selector for the pref (not reading it properly)
|
||||
X https://github.com/processing/processing/pull/2568
|
||||
X lighting issues with non-planar triangle strips or quad strips
|
||||
X https://github.com/processing/processing/issues/2014
|
||||
X https://github.com/processing/processing/issues/2018
|
||||
X https://github.com/processing/processing/pull/2644
|
||||
X set application name on Linux
|
||||
X https://github.com/processing/processing/issues/2534
|
||||
X https://github.com/processing/processing/pull/2584
|
||||
X serial not working on export
|
||||
X https://github.com/processing/processing/issues/2559
|
||||
X build error on Windows
|
||||
X https://github.com/processing/processing/issues/2603
|
||||
X https://github.com/processing/processing/pull/2610
|
||||
|
||||
|
||||
0227 pde (2.2.1)
|
||||
X use mouseReleased() instead of mousePressed() in color selector
|
||||
X otherwise it registers the release as a click in the color window
|
||||
|
||||
45
todo.txt
45
todo.txt
@@ -1,48 +1,7 @@
|
||||
0228 pde (3.0a1)
|
||||
X increase heap size to 256m (-Xmx256) per Manindra request
|
||||
X use a ButtonGroup so that the current Mode cannot be de-selected
|
||||
X https://github.com/processing/processing/issues/2545
|
||||
0229 pde (3.0a2)
|
||||
|
||||
earlier
|
||||
X cpu usage when nothing happening (unmarked duplicate)
|
||||
X https://github.com/processing/processing/issues/1074
|
||||
|
||||
gsoc
|
||||
X Line coloring incorrect for filtered contribution listings
|
||||
X https://github.com/processing/processing/issues/2583
|
||||
X https://github.com/processing/processing/pull/2598
|
||||
X Added Present's background color as an option to the Preferences window
|
||||
X https://github.com/processing/processing/pull/2568
|
||||
X check for updates with contribs
|
||||
X https://github.com/processing/processing/pull/2636
|
||||
X shows update manager on startup
|
||||
X contrib properties files ignored in favor of contributions.txt from p5.org
|
||||
X https://github.com/processing/processing/issues/2572
|
||||
X tweak mode integrated
|
||||
X https://github.com/processing/processing/pull/2624
|
||||
X wrong mode selected if sketch is modified (checkbox changes)
|
||||
X https://github.com/processing/processing/issues/2615
|
||||
X Add date and time stamps to the Contribution Manager
|
||||
X https://github.com/processing/processing/pull/2651
|
||||
|
||||
pulls
|
||||
X Implementation of a list of open sketches in the Sketch menu
|
||||
X https://github.com/processing/processing/pull/2551
|
||||
X color selector for the pref (not reading it properly)
|
||||
X https://github.com/processing/processing/pull/2568
|
||||
X lighting issues with non-planar triangle strips or quad strips
|
||||
X https://github.com/processing/processing/issues/2014
|
||||
X https://github.com/processing/processing/issues/2018
|
||||
X https://github.com/processing/processing/pull/2644
|
||||
X set application name on Linux
|
||||
X https://github.com/processing/processing/issues/2534
|
||||
X https://github.com/processing/processing/pull/2584
|
||||
X serial not working on export
|
||||
X https://github.com/processing/processing/issues/2559
|
||||
X build error on Windows
|
||||
X https://github.com/processing/processing/issues/2603
|
||||
X https://github.com/processing/processing/pull/2610
|
||||
|
||||
_ "Platform is ${platform}" message during 'ant clean'
|
||||
|
||||
_ add a new pref for the 3.0 sketchbook location
|
||||
_ remove minim
|
||||
|
||||
Reference in New Issue
Block a user