From ca38ec699546480ea1c1db81ef3afffb65bcedff Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Sat, 26 Jul 2014 12:12:21 -0400 Subject: [PATCH] starting next release --- app/src/processing/app/Base.java | 4 +-- core/done.txt | 38 ++++++++++++++++++++++++++ core/todo.txt | 37 +------------------------ done.txt | 46 ++++++++++++++++++++++++++++++++ todo.txt | 45 ++----------------------------- 5 files changed, 89 insertions(+), 81 deletions(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 493f10a49..a24ee9a93 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -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; diff --git a/core/done.txt b/core/done.txt index 694933b4b..007c32e8b 100644 --- a/core/done.txt +++ b/core/done.txt @@ -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 diff --git a/core/todo.txt b/core/todo.txt index 218aaaabf..cc824f42f 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -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 diff --git a/done.txt b/done.txt index 225f3aa3a..6273246fd 100644 --- a/done.txt +++ b/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 diff --git a/todo.txt b/todo.txt index faa9cd79c..cc5100af0 100644 --- a/todo.txt +++ b/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