mirror of
https://github.com/processing/processing4.git
synced 2026-05-04 01:45:40 +02:00
starting release 0185
This commit is contained in:
@@ -1,3 +1,20 @@
|
||||
0184 android (pre)
|
||||
o when running a sketch, need to unlock the device
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1500
|
||||
X add Pattern caching to match() to speed things up
|
||||
X make saveStream() return a boolean to indicate success
|
||||
X implement 'export' to create a local android folder
|
||||
X 'stop' is now a no-op for the android tools
|
||||
X partially fixed but hangs after pressing stop
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1386
|
||||
X path problems finding javac.exe on vista
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1528
|
||||
|
||||
earlier
|
||||
J figure out how to set ANDROID_SDK for the build scripts
|
||||
J right now, just setting the env value is required
|
||||
|
||||
|
||||
0183 android (pre-release)
|
||||
X mention in the notes
|
||||
o emulator doesn't always start the sketch the first time
|
||||
|
||||
@@ -1,18 +1,4 @@
|
||||
0184 android
|
||||
o when running a sketch, need to unlock the device
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1500
|
||||
X add Pattern caching to match() to speed things up
|
||||
X make saveStream() return a boolean to indicate success
|
||||
X implement 'export' to create a local android folder
|
||||
X 'stop' is now a no-op for the android tools
|
||||
X partially fixed but hangs after pressing stop
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1386
|
||||
X path problems finding javac.exe on vista
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1528
|
||||
|
||||
earlier
|
||||
J figure out how to set ANDROID_SDK for the build scripts
|
||||
J right now, just setting the env value is required
|
||||
0185 android
|
||||
|
||||
|
||||
_ "Unable to resolve target 'Google...'" when APIs aren't installed
|
||||
|
||||
@@ -40,9 +40,9 @@ import processing.core.*;
|
||||
* files and images, etc) that comes from that.
|
||||
*/
|
||||
public class Base {
|
||||
static final int REVISION = 184;
|
||||
static final int REVISION = 185;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static public String VERSION_NAME = "0184";
|
||||
static public String VERSION_NAME = "0185";
|
||||
/** Set true if this a proper release rather than a numbered revision. */
|
||||
static public boolean RELEASE = false;
|
||||
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
0184 core (pre)
|
||||
X copy and blend scale when unnecessary
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1482
|
||||
X add Pattern caching to match() to speed things up
|
||||
X make saveStream() return a boolean to indicate success
|
||||
|
||||
|
||||
0183 core (pre-release)
|
||||
X no changes to core in 0183
|
||||
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
0184 core
|
||||
X copy and blend scale when unnecessary
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1482
|
||||
X add Pattern caching to match() to speed things up
|
||||
X make saveStream() return a boolean to indicate success
|
||||
0185 core
|
||||
|
||||
|
||||
_ change skewX/Y to shearX/Y
|
||||
|
||||
31
done.txt
31
done.txt
@@ -1,3 +1,34 @@
|
||||
0184 pde (pre)
|
||||
X other libraries that use opengl weren't using the jnlp launcher
|
||||
X fix OpenGL detection in sketches so that proper version of
|
||||
X export template is used
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1530
|
||||
X single-line html comments not handled properly on export
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1419
|
||||
X antlr grammar should not need to re-build unless changed
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1541
|
||||
X many syntax errors now report "you're mixing active and static modes"
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1539
|
||||
|
||||
jdf stuff
|
||||
J unterminated string constant with '\"'
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=1534
|
||||
J "expecting LPAREN, found '='" with syntax errors
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=1532
|
||||
J Bracket idenfication {} is not aware of comments //
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=1450
|
||||
J inconsistent bracket highlighting with comments
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=43
|
||||
J "unexpected token void" -> "You're mixing dynamic and static mode"
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=14
|
||||
|
||||
can't reproduce
|
||||
o shortcuts not working after rename? (osx and windows confirmed)
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=505
|
||||
o undo has become sluggish
|
||||
o http://processing.org/bugs/show_bug.cgi?id=36
|
||||
|
||||
|
||||
0183 pde (pre-release)
|
||||
X additional updates to autoformat, jdf adding tests
|
||||
|
||||
|
||||
30
todo.txt
30
todo.txt
@@ -1,32 +1,4 @@
|
||||
0184 pde
|
||||
X other libraries that use opengl weren't using the jnlp launcher
|
||||
X fix OpenGL detection in sketches so that proper version of
|
||||
X export template is used
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1530
|
||||
X single-line html comments not handled properly on export
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1419
|
||||
X antlr grammar should not need to re-build unless changed
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1541
|
||||
X many syntax errors now report "you're mixing active and static modes"
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1539
|
||||
|
||||
jdf stuff
|
||||
J unterminated string constant with '\"'
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=1534
|
||||
J "expecting LPAREN, found '='" with syntax errors
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=1532
|
||||
J Bracket idenfication {} is not aware of comments //
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=1450
|
||||
J inconsistent bracket highlighting with comments
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=43
|
||||
J "unexpected token void" -> "You're mixing dynamic and static mode"
|
||||
J http://dev.processing.org/bugs/show_bug.cgi?id=14
|
||||
|
||||
can't reproduce
|
||||
o shortcuts not working after rename? (osx and windows confirmed)
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=505
|
||||
o undo has become sluggish
|
||||
o http://processing.org/bugs/show_bug.cgi?id=36
|
||||
0185 pde
|
||||
|
||||
|
||||
_ create default tools folder (just like libraries)
|
||||
|
||||
Reference in New Issue
Block a user