mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 13:21:07 +01:00
wrapping up release 0187
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
0187 android
|
||||
X don't kill adb server each time that run is hit
|
||||
X move about.txt to the wiki
|
||||
|
||||
_ fix mouseX/Y mapping when using smaller screen sizes
|
||||
_ allow screenWidth/Height as parameters to size()
|
||||
_ right now would cause NumberFormatException
|
||||
_ add notes to the wiki about the size() method
|
||||
_ make sure sketchRenderer()/sketchWidth()/sketchHeight() are working on desktop
|
||||
_ see about getting them documented in the reference
|
||||
@@ -250,8 +254,8 @@ OPTIMIZE / ENHANCEMENTS
|
||||
_ don't re-calculate stroke() or fill() when it's the same value
|
||||
_ should path.reset() or path.rewind() be used for a path to be reused?
|
||||
|
||||
E2 _ implement size() and createGraphics() for arbitrary renderers
|
||||
E2 _ http://dev.processing.org/bugs/show_bug.cgi?id=1489
|
||||
EM _ implement size() and createGraphics() for arbitrary renderers
|
||||
EM _ http://code.google.com/p/processing/issues/detail?id=241
|
||||
|
||||
_ errors that cause a crash when setting sketchPath
|
||||
_ seems to be a filesystem that got too full
|
||||
|
||||
@@ -1,3 +1,50 @@
|
||||
PROCESSING REV 0187 - 12 July 2010
|
||||
|
||||
More bug fixes, and one new treat for OS X users.
|
||||
Hopefully we're about set to call this one 1.2. Please test!
|
||||
|
||||
[ additions ]
|
||||
|
||||
+ On Mac OS X, you're no longer required to have a sketch window open at
|
||||
all times. This will make the application feel more Mac-like--a little
|
||||
more elegant and trendy and smug with superiority.
|
||||
|
||||
+ Added a warning to the Linux version to tell users that they should be
|
||||
using the official version of Java from Sun if they're not.
|
||||
http://wiki.processing.org/w/Supported_Platforms#Linux
|
||||
There isn't a perfect way to detect whether Sun Java is in use,
|
||||
so please let us know how it works or if you have a better idea.
|
||||
|
||||
[ fixes ]
|
||||
|
||||
+ "Unexpected token" error when creating classes with recent pre-releases.
|
||||
http://code.google.com/p/processing/issues/detail?id=292
|
||||
|
||||
+ Prevent horizontal scroll offset from disappearing.
|
||||
Thanks to Christian Thiemann for the fix.
|
||||
http://code.google.com/p/processing/issues/detail?id=280
|
||||
http://code.google.com/p/processing/issues/detail?id=10
|
||||
|
||||
+ Fix NullPointerException when making a new sketch on non-English systems.
|
||||
http://code.google.com/p/processing/issues/detail?id=283
|
||||
|
||||
+ Fixed a problem when using command-line arguments with exported sketches
|
||||
on Windows. Thanks to davbol for the fix.
|
||||
http://code.google.com/p/processing/issues/detail?id=303
|
||||
|
||||
+ Added requestFocusInWindow() call to replace Apple's broken requestFocus(),
|
||||
which should return the previous behavior of sketches getting focus
|
||||
immediately when loaded in a web browser.
|
||||
http://code.google.com/p/processing/issues/detail?id=279
|
||||
|
||||
+ Add getDocumentBase() version of createInput() for Internet Explorer.
|
||||
Without this, sketches will crash when trying to find files on a web server
|
||||
that are not in the exported .jar file. This fix is only for IE. Yay IE!
|
||||
|
||||
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
|
||||
PROCESSING REV 0186 - 26 June 2010
|
||||
|
||||
Minor updates following up on 0185.
|
||||
|
||||
32
todo.txt
32
todo.txt
@@ -13,8 +13,19 @@ X http://code.google.com/p/processing/issues/detail?id=283
|
||||
X show warning message on linux if sun java is not in use
|
||||
X there isn't a perfect way to detect whether sun java is in use,
|
||||
X so please report false positives (or negatives, for that matter)
|
||||
X bad strlen() problem in windows launcher.cpp
|
||||
X http://code.google.com/p/processing/issues/detail?id=303
|
||||
X "Unexpected token" error when creating classes with pre-releases after 1.1
|
||||
X http://code.google.com/p/processing/issues/detail?id=292
|
||||
X 'public class' inside first tab crashing
|
||||
X 'final int a = 10' throws off mode detect
|
||||
|
||||
'public class' inside first tab (or 'final int a = 10') throws off mode detect
|
||||
|
||||
_ launch4j problem
|
||||
_ no crash when double-clicking a sketch and loading it
|
||||
_ http://code.google.com/p/processing/issues/detail?id=231
|
||||
|
||||
_ add note about oth
|
||||
|
||||
_ Ctrl-Z will undo, but not scroll to where the undo happens.
|
||||
_ is this now somehow fixed? (or only on os x?)
|
||||
@@ -22,8 +33,6 @@ _ so user thinks nothing is happening and overundo.
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=35
|
||||
_ http://code.google.com/p/processing/issues/detail?id=15
|
||||
|
||||
|
||||
|
||||
closing this bug, because we'll be replacing the current video library with another sometime later this summer. as such, i won't be doing any more bug fixes on the current video library. in the meantime, we recommend using gsvideo, opencv, or one of the other video libraries that are available.
|
||||
|
||||
_ add processing.js export tool from florian
|
||||
@@ -1222,23 +1231,6 @@ _ video library not working on export to web
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=1421
|
||||
|
||||
|
||||
LIBRARIES / XML
|
||||
|
||||
_ handle charset decoding in xml element parser?
|
||||
_ same with the other methods like loadStrings()
|
||||
_ could also be a way to handle gzip too?
|
||||
_ tho charset + gzip would be a problem
|
||||
_ need to handle how save() works inside xml lib
|
||||
_ need to handle <!ENTITY tags for svg documents
|
||||
_ vectors shouldn't be exposed, need to expose attr lists as arrays
|
||||
_ or also add a method for getting the vectors?
|
||||
2 _ XML attributes named "xmlns" always return NULL
|
||||
2 _ http://dev.processing.org/bugs/show_bug.cgi?id=1196
|
||||
_ save xml elements back out again
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=963
|
||||
_ or make the call that it's read-only, and remove the saving code
|
||||
|
||||
|
||||
LIBRARIES / Net
|
||||
|
||||
_ clientEvent() called even w/o data from server
|
||||
|
||||
Reference in New Issue
Block a user