mirror of
https://github.com/processing/processing4.git
synced 2026-06-08 16:40:46 +02:00
starting revision 0197
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
0196 android (1.5)
|
||||
X workaround for loadImage(url) bug in Google's Android source (via psoden)
|
||||
X http://code.google.com/p/processing/issues/detail?id=629
|
||||
|
||||
earlier
|
||||
X Build an interface for control of permissions on Android
|
||||
X http://code.google.com/p/processing/issues/detail?id=275
|
||||
X Implement createGraphics()
|
||||
X http://code.google.com/p/processing/issues/detail?id=240
|
||||
X Android 0192 sketch in static mode crashes on exit
|
||||
X http://code.google.com/p/processing/issues/detail?id=518
|
||||
|
||||
|
||||
0195 android (pre)
|
||||
X point() doesn't render in A3D
|
||||
X http://code.google.com/p/processing/issues/detail?id=592
|
||||
|
||||
+1
-11
@@ -1,14 +1,4 @@
|
||||
0196 android
|
||||
X workaround for loadImage(url) bug in Google's Android source (via psoden)
|
||||
X http://code.google.com/p/processing/issues/detail?id=629
|
||||
|
||||
earlier
|
||||
X Build an interface for control of permissions on Android
|
||||
X http://code.google.com/p/processing/issues/detail?id=275
|
||||
X Implement createGraphics()
|
||||
X http://code.google.com/p/processing/issues/detail?id=240
|
||||
X Android 0192 sketch in static mode crashes on exit
|
||||
X http://code.google.com/p/processing/issues/detail?id=518
|
||||
0197 android
|
||||
|
||||
|
||||
_ go through all basics/topics examples
|
||||
|
||||
@@ -44,9 +44,9 @@ import processing.mode.java.*;
|
||||
* files and images, etc) that comes from that.
|
||||
*/
|
||||
public class Base {
|
||||
static public final int REVISION = 196;
|
||||
static public final int REVISION = 197;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static public String VERSION_NAME = "0196";
|
||||
static public String VERSION_NAME = "0197";
|
||||
/** Set true if this a proper release rather than a numbered revision. */
|
||||
static public boolean RELEASE = false;
|
||||
/** True if heavy debugging error/log messages are enabled */
|
||||
|
||||
+1
-1
@@ -102,7 +102,7 @@
|
||||
<exclude name="reference.zip" />
|
||||
<exclude name="**/._*" />
|
||||
<!-- disable for the 1.5 release -->
|
||||
<exclude name="libraries/opengl2/**" />
|
||||
<!-- <exclude name="libraries/opengl2/**" />-->
|
||||
|
||||
<exclude name="examples/**/applet/**" />
|
||||
</fileset>
|
||||
|
||||
@@ -1,3 +1,22 @@
|
||||
0196 core (1.5)
|
||||
o textAlign(RIGHT) is shutting off native fonts
|
||||
o makes salaryper super ugly
|
||||
X i think this must have been fixed?
|
||||
X fix minor native fonts issue
|
||||
o updatePixels() is slow to create a BufferedImage
|
||||
o therefore the incomplete rendering
|
||||
o could this be an issue fixed by a MediaTracker?
|
||||
o first line of applets is missing on java 1.4+ on the mac
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=283
|
||||
o make the PFont index lookup use numbers up to 256?
|
||||
X change JAVA2D surface to be RGB instead of ARGB
|
||||
X seeing some strange behavior, hopefully this won't be a regression
|
||||
o filter() doesn't need a loadPixels
|
||||
o but if you want to filter *and* mess w/ pixels (avoid double load)
|
||||
o then do loadPixels() /before/ filter, and updatePixels after messing
|
||||
o same will go for blend()
|
||||
|
||||
|
||||
0195 core (pre)
|
||||
X deal with bad screen updates for sketches running < 60 fps in JAVA2D
|
||||
X had to add an additional offscreen buffer, which is more memory
|
||||
|
||||
+1
-17
@@ -1,20 +1,4 @@
|
||||
0196 core
|
||||
o textAlign(RIGHT) is shutting off native fonts
|
||||
o makes salaryper super ugly
|
||||
X i think this must have been fixed?
|
||||
X fix minor native fonts issue
|
||||
o updatePixels() is slow to create a BufferedImage
|
||||
o therefore the incomplete rendering
|
||||
o could this be an issue fixed by a MediaTracker?
|
||||
o first line of applets is missing on java 1.4+ on the mac
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=283
|
||||
o make the PFont index lookup use numbers up to 256?
|
||||
X change JAVA2D surface to be RGB instead of ARGB
|
||||
X seeing some strange behavior, hopefully this won't be a regression
|
||||
o filter() doesn't need a loadPixels
|
||||
o but if you want to filter *and* mess w/ pixels (avoid double load)
|
||||
o then do loadPixels() /before/ filter, and updatePixels after messing
|
||||
o same will go for blend()
|
||||
0197
|
||||
|
||||
|
||||
for 2.0
|
||||
|
||||
@@ -1,3 +1,70 @@
|
||||
0196 pde (1.5)
|
||||
X upgrade to Quaqua 7.3.4 on OS X
|
||||
X fixes checkbox in mode menu smashing into things
|
||||
C build a new version of the reference
|
||||
X automatically add version numbers to Info.plist
|
||||
X would help with beta releases, and not having to edit by hand
|
||||
X add another fix for text focus handling
|
||||
X http://code.google.com/p/processing/issues/detail?id=627
|
||||
X file-save stops running sketch
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=810
|
||||
X http://code.google.com/p/processing/issues/detail?id=100
|
||||
X fix bug in loadfile2 example
|
||||
X http://code.google.com/p/processing/issues/detail?id=522
|
||||
o when running with external editor, hide the editor text area
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=20
|
||||
X http://code.google.com/p/processing/issues/detail?id=9
|
||||
X shift-indent without selection increases indention
|
||||
X http://code.google.com/p/processing/issues/detail?id=458
|
||||
X Running a sketch destroys other running PApplets
|
||||
X http://code.google.com/p/processing/issues/detail?id=567
|
||||
X allow more than one sketch to run at a time
|
||||
X fix caret bug leading to slow degredation of the PDE
|
||||
X fix color selector to be more efficient
|
||||
X help casey re-export all applets for the site
|
||||
X remove .java files, use one central loading.gif and core.jar?
|
||||
X use a custom applet.html template for the export
|
||||
X the tool could copy this into the folder just before exporting
|
||||
X remove all the 'applet' folders from svn
|
||||
X run the javadoc for 1.5
|
||||
X remove opengl2 for 1.5 and examples for the final 1.5
|
||||
X need to get a new stable release out there, the docs/ref are out of sync
|
||||
|
||||
from peter n lewis
|
||||
X Use Selection For Find
|
||||
X http://code.google.com/p/processing/issues/detail?id=571
|
||||
X double-clicking whitespace selects adjacent chars
|
||||
X clicking i-- ) between -- and ) will select "-- )"
|
||||
X in eclipse, it looks to see which is closest and selects that
|
||||
X need to check behavior for word and bbedit
|
||||
X http://code.google.com/p/processing/issues/detail?id=59
|
||||
X http://code.google.com/p/processing/issues/detail?id=576
|
||||
X find/replace all around very ugly, fix it up
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=67
|
||||
X http://code.google.com/p/processing/issues/detail?id=23
|
||||
X http://code.google.com/p/processing/issues/detail?id=580
|
||||
X several tweaks
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=68
|
||||
o only enable "find next" in menu after a find has happened
|
||||
X http://code.google.com/p/processing/issues/detail?id=24
|
||||
|
||||
several changes to the undo setup
|
||||
X sketch marked as modified too aggressively
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=328
|
||||
X http://code.google.com/p/processing/issues/detail?id=57
|
||||
X "save" clears undo information
|
||||
X http://code.google.com/p/processing/issues/detail?id=411
|
||||
X PDE change indicator partially broken
|
||||
X http://code.google.com/p/processing/issues/detail?id=620
|
||||
|
||||
fixed in 0195
|
||||
X rename/saveas doesn't properly have its focus set
|
||||
X under windows, immediately typing after rename doesn't select
|
||||
X the whole thing is selected, but not directly editable
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=31
|
||||
X http://code.google.com/p/processing/issues/detail?id=13
|
||||
|
||||
|
||||
0195 (pre)
|
||||
X Sketch restarts automatically after pressing stop button on PDE
|
||||
X problem with window focus issues
|
||||
|
||||
@@ -1,68 +1,4 @@
|
||||
0196
|
||||
X upgrade to Quaqua 7.3.4 on OS X
|
||||
X fixes checkbox in mode menu smashing into things
|
||||
C build a new version of the reference
|
||||
X automatically add version numbers to Info.plist
|
||||
X would help with beta releases, and not having to edit by hand
|
||||
X add another fix for text focus handling
|
||||
X http://code.google.com/p/processing/issues/detail?id=627
|
||||
X file-save stops running sketch
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=810
|
||||
X http://code.google.com/p/processing/issues/detail?id=100
|
||||
X fix bug in loadfile2 example
|
||||
X http://code.google.com/p/processing/issues/detail?id=522
|
||||
o when running with external editor, hide the editor text area
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=20
|
||||
X http://code.google.com/p/processing/issues/detail?id=9
|
||||
X shift-indent without selection increases indention
|
||||
X http://code.google.com/p/processing/issues/detail?id=458
|
||||
X Running a sketch destroys other running PApplets
|
||||
X http://code.google.com/p/processing/issues/detail?id=567
|
||||
X allow more than one sketch to run at a time
|
||||
X fix caret bug leading to slow degredation of the PDE
|
||||
X fix color selector to be more efficient
|
||||
X help casey re-export all applets for the site
|
||||
X remove .java files, use one central loading.gif and core.jar?
|
||||
X use a custom applet.html template for the export
|
||||
X the tool could copy this into the folder just before exporting
|
||||
X remove all the 'applet' folders from svn
|
||||
X run the javadoc for 1.5
|
||||
X remove opengl2 for 1.5 and examples for the final 1.5
|
||||
X need to get a new stable release out there, the docs/ref are out of sync
|
||||
|
||||
from peter n lewis
|
||||
X Use Selection For Find
|
||||
X http://code.google.com/p/processing/issues/detail?id=571
|
||||
X double-clicking whitespace selects adjacent chars
|
||||
X clicking i-- ) between -- and ) will select "-- )"
|
||||
X in eclipse, it looks to see which is closest and selects that
|
||||
X need to check behavior for word and bbedit
|
||||
X http://code.google.com/p/processing/issues/detail?id=59
|
||||
X http://code.google.com/p/processing/issues/detail?id=576
|
||||
X find/replace all around very ugly, fix it up
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=67
|
||||
X http://code.google.com/p/processing/issues/detail?id=23
|
||||
X http://code.google.com/p/processing/issues/detail?id=580
|
||||
X several tweaks
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=68
|
||||
o only enable "find next" in menu after a find has happened
|
||||
X http://code.google.com/p/processing/issues/detail?id=24
|
||||
|
||||
several changes to the undo setup
|
||||
X sketch marked as modified too aggressively
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=328
|
||||
X http://code.google.com/p/processing/issues/detail?id=57
|
||||
X "save" clears undo information
|
||||
X http://code.google.com/p/processing/issues/detail?id=411
|
||||
X PDE change indicator partially broken
|
||||
X http://code.google.com/p/processing/issues/detail?id=620
|
||||
|
||||
fixed in 0195
|
||||
X rename/saveas doesn't properly have its focus set
|
||||
X under windows, immediately typing after rename doesn't select
|
||||
X the whole thing is selected, but not directly editable
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=31
|
||||
X http://code.google.com/p/processing/issues/detail?id=13
|
||||
0197 pde
|
||||
|
||||
|
||||
2.0
|
||||
|
||||
Reference in New Issue
Block a user