starting revision 0181

This commit is contained in:
benfry
2010-03-16 06:07:09 +00:00
parent e4cbfa0d26
commit a6136c8dc6
7 changed files with 76 additions and 66 deletions

View File

@@ -1,4 +1,10 @@
0179
0180 android (pre-release)
X change sdk to use revision 6 (2.0.1) as the version
X change instructions on site
X add support for a default font
0179 (1.1, but no android tools)
X screenWidth/Height instead of screenW/H
X errors that happen inside events (e.g. keys) not highlighting lines
X useful stack trace information not coming through.. why?

View File

@@ -1,7 +1,4 @@
0180 android
X change sdk to use revision 6 (2.0.1) as the version
_ change instructions on site
X add support for a default font
0181 android
_ make size() work to place the component at the center of the screen

View File

@@ -40,9 +40,9 @@ import processing.core.*;
* files and images, etc) that comes from that.
*/
public class Base {
static final int REVISION = 180;
static final int REVISION = 181;
/** This might be replaced by main() if there's a lib/version.txt file. */
static public String VERSION_NAME = "0180";
static public String VERSION_NAME = "0181";
/** Set true if this a proper release rather than a numbered revision. */
static public boolean RELEASE = false;

View File

@@ -1,3 +1,10 @@
0180 core (pre-release)
X add implicit path commands to svg loader, thanks to Ben S
X http://dev.processing.org/bugs/show_bug.cgi?id=1503
X don't allow sketch windows to open with the title bar off screen
X http://dev.processing.org/bugs/show_bug.cgi?id=1508
0179 core (1.1)
X screenWidth/Height instead of screenW/H
X open up the pdf library more (philho)

View File

@@ -1,8 +1,4 @@
0180 core
X add implicit path commands to svg loader, thanks to Ben S
X http://dev.processing.org/bugs/show_bug.cgi?id=1503
X don't allow sketch windows to open with the title bar off screen
X http://dev.processing.org/bugs/show_bug.cgi?id=1508
0181 core
big ones

View File

@@ -1,3 +1,60 @@
0180 pde (pre-release)
preprocessor
J Update ANTLR grammar to support 1.5 syntax
J http://dev.processing.org/bugs/show_bug.cgi?id=598
J non-void functions confuse preprocessor
J http://dev.processing.org/bugs/show_bug.cgi?id=1442
J casting problems in the parser
J straighten out int() -> toInt() conversions
J float u = float(x)/width; works.
J float u = (float(x)/width); doesn't work: "unexpected token: float".
J float u = (x/float(width)); works!
J http://dev.processing.org/bugs/show_bug.cgi?id=4
J return (int(5.5)) causes an error
J preprocessor error if last line of code is a comment with no CR after it,
J an OutOfMemoryError wants to happen,
J but right now there's a hack to add a CR in PdePreprocessor
J http://dev.processing.org/bugs/show_bug.cgi?id=5
J preproc can't handle labels to break/continue nested loops
J http://dev.processing.org/bugs/show_bug.cgi?id=631
J toInt() needs to go away in time for the book.. fix parser bugs
J add local variables to PdeRecognizer
J remove static methods in PdePreprocessor, instead pull things from recog
J random, single slash in the code doesn't throw an error
J (just gets removed by the preprocessor)
J http://processing.org/bugs/show_bug.cgi?id=6
J unspecified return type creates compile error
J or maybe not? followup said maybe not
J http://dev.processing.org/bugs/show_bug.cgi?id=379
J (already marked invalid -- jdf)
J Blah.class will confuse the preproc
J http://dev.processing.org/bugs/show_bug.cgi?id=481
J non-matching curly brackets sometimes don't cause an error
J http://dev.processing.org/bugs/show_bug.cgi?id=507
J (duplicate of #6)
J NullPointerException on unterminated comment at end of code
J and OutOfMemoryError and weird lockup
J http://dev.processing.org/bugs/show_bug.cgi?id=16
J "missing a /* from the end of a comment" message
J http://dev.processing.org/bugs/show_bug.cgi?id=1512
J "multipart/*" produces the error
J even though things are inside a quoted txt block
J NullPointerException on unterminated comment at end of code
J and OutOfMemoryError and weird lockup
J http://dev.processing.org/bugs/show_bug.cgi?id=16
J also OutOfMemoryError if a quote is not terminated
J http://dev.processing.org/bugs/show_bug.cgi?id=763
J Error compiling when 'new' is first word in an 'else' block
J http://dev.processing.org/bugs/show_bug.cgi?id=1362
J Parsing error when using char literals
J http://dev.processing.org/bugs/show_bug.cgi?id=281
J support for assertions
J http://dev.processing.org/bugs/show_bug.cgi?id=1188
J syntax highlighting error with // and /*
J http://dev.processing.org/bugs/show_bug.cgi?id=609
0179 pde (1.1)
X another fix for CDATA section in applet.html for exported applets
X updated about.jpg

View File

@@ -1,58 +1,5 @@
0180 pde
0181 pde
preprocessor
J Update ANTLR grammar to support 1.5 syntax
J http://dev.processing.org/bugs/show_bug.cgi?id=598
J non-void functions confuse preprocessor
J http://dev.processing.org/bugs/show_bug.cgi?id=1442
J casting problems in the parser
J straighten out int() -> toInt() conversions
J float u = float(x)/width; works.
J float u = (float(x)/width); doesn't work: "unexpected token: float".
J float u = (x/float(width)); works!
J http://dev.processing.org/bugs/show_bug.cgi?id=4
J return (int(5.5)) causes an error
J preprocessor error if last line of code is a comment with no CR after it,
J an OutOfMemoryError wants to happen,
J but right now there's a hack to add a CR in PdePreprocessor
J http://dev.processing.org/bugs/show_bug.cgi?id=5
J preproc can't handle labels to break/continue nested loops
J http://dev.processing.org/bugs/show_bug.cgi?id=631
J toInt() needs to go away in time for the book.. fix parser bugs
J add local variables to PdeRecognizer
J remove static methods in PdePreprocessor, instead pull things from recog
J random, single slash in the code doesn't throw an error
J (just gets removed by the preprocessor)
J http://processing.org/bugs/show_bug.cgi?id=6
J unspecified return type creates compile error
J or maybe not? followup said maybe not
J http://dev.processing.org/bugs/show_bug.cgi?id=379
J (already marked invalid -- jdf)
J Blah.class will confuse the preproc
J http://dev.processing.org/bugs/show_bug.cgi?id=481
J non-matching curly brackets sometimes don't cause an error
J http://dev.processing.org/bugs/show_bug.cgi?id=507
J (duplicate of #6)
J NullPointerException on unterminated comment at end of code
J and OutOfMemoryError and weird lockup
J http://dev.processing.org/bugs/show_bug.cgi?id=16
J "missing a /* from the end of a comment" message
J http://dev.processing.org/bugs/show_bug.cgi?id=1512
J "multipart/*" produces the error
J even though things are inside a quoted txt block
J NullPointerException on unterminated comment at end of code
J and OutOfMemoryError and weird lockup
J http://dev.processing.org/bugs/show_bug.cgi?id=16
J also OutOfMemoryError if a quote is not terminated
J http://dev.processing.org/bugs/show_bug.cgi?id=763
J Error compiling when 'new' is first word in an 'else' block
J http://dev.processing.org/bugs/show_bug.cgi?id=1362
J Parsing error when using char literals
J http://dev.processing.org/bugs/show_bug.cgi?id=281
J support for assertions
J http://dev.processing.org/bugs/show_bug.cgi?id=1188
J syntax highlighting error with // and /*
J http://dev.processing.org/bugs/show_bug.cgi?id=609
need examples
_ Improve detection and handling of missing semicolons