diff --git a/app/Base.java b/app/Base.java index 5e53305b5..a624d3d9c 100644 --- a/app/Base.java +++ b/app/Base.java @@ -50,8 +50,8 @@ import processing.core.*; * files and images, etc) that comes from that. */ public class Base { - static final int VERSION = 122; - static final String VERSION_NAME = "0122 Beta"; + static final int VERSION = 123; + static final String VERSION_NAME = "0123 Beta"; /** * Path of filename opened on the command line, diff --git a/core/done.txt b/core/done.txt index 753d159e2..e4af048b8 100644 --- a/core/done.txt +++ b/core/done.txt @@ -1,3 +1,23 @@ +0122 core +X noiseSeed() only works once, before the arrays are created +X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1162856262 +X make lerpColor honor the current color mode +X lerpColor(c1, c2, amt, RGB/HSB/???) +o test this out for a bit +o though that's awkward b/c colors always RGB +X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1160096087 +X regression in P3D that prevents point() from drawing +X problem is with setup_vertex() not adding similar points +X http://dev.processing.org/bugs/show_bug.cgi?id=444 +X if doing openstream on url, says that "the file" is missing or invalid +X add notes about it being a url + +fixed earlier, bug cleaning +X gray background in pdf (using both gl and p3d) +X http://dev.processing.org/bugs/show_bug.cgi?id=324 +X verified as fixed in 0122 + + 0121 core X need to document changes to int() (no longer accepts boolean) X background(0, 0, 0, 0) is the way to really clear everything with zeroes diff --git a/core/todo.txt b/core/todo.txt index 22cded859..e1c151945 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -1,21 +1,4 @@ -0122 core -X noiseSeed() only works once, before the arrays are created -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1162856262 -X make lerpColor honor the current color mode -X lerpColor(c1, c2, amt, RGB/HSB/???) -o test this out for a bit -o though that's awkward b/c colors always RGB -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1160096087 -X regression in P3D that prevents point() from drawing -X problem is with setup_vertex() not adding similar points -X http://dev.processing.org/bugs/show_bug.cgi?id=444 -X if doing openstream on url, says that "the file" is missing or invalid -X add notes about it being a url - -fixed earlier, bug cleaning -X gray background in pdf (using both gl and p3d) -X http://dev.processing.org/bugs/show_bug.cgi?id=324 -X verified as fixed in 0122 +0123 core _ background not being set properly diff --git a/done.txt b/done.txt index 762e514fe..74c3305ff 100644 --- a/done.txt +++ b/done.txt @@ -1,3 +1,48 @@ +0122 pde +X improve editor listener to not add so many extraneous indents +X with text selected, hitting left or right arrow should move to beginning/end +X right now, it deselects the text and moves over one char +X http://dev.processing.org/bugs/show_bug.cgi?id=349 +X add alt-shift-arrow-down and command-shift-arrow-down +X select all from that point to beginning (or end) of doc +X ctrl-shift up/down has some weird issue, but oh well +X cmd-shift-left and cmd-shift right should select the entire line +X cmd-left and cmd-right move back and forth properly +o option for behavior of HOME and END +X right now goes to begin/end of line.. should be begin/end of file? +X change to begin/end of file, and use cmd or alt, based on platform +X cmd-{ and cmd-} no longer work after the menu is shown +X http://dev.processing.org/bugs/show_bug.cgi?id=402 +X clicking "cancel" on close still quitting the app +X http://dev.processing.org/bugs/show_bug.cgi?id=440 +X discourse format sucked, changed to format for discourse +X http://dev.processing.org/bugs/show_bug.cgi?id=447 +X changing macosx to allow Java 1.5 to be used +X updated to antlr 2.7.7 + +fixed earlier or wontfix +X double-click only selects part of underscored word +X http://dev.processing.org/bugs/show_bug.cgi?id=261 +X this is actually a feature + +svg completed +X actual linear gradients working properly +X add a table for all objects with their names, +X so they can be grabbed individually +X add accessor to get items from the table +X see if items can be named in illusfarter using the svg palette +X compound shapes (fonts) won't wind properly, so fill will be messed up +X added hack to allow for broken shapes +X rename draw() and its buddy +X a moveto *inside* a shape will be treated as a lineto +X had to fix this +X implement polyline +X some means of centering the entire drawing (is this included already?) +X or setting to one of the corners +o does the svg spec just do this? +X finish draw(x, y, c, d) + + 0121 pde X fix button fatness on osx X quaqua already takes care of this for us diff --git a/todo.txt b/todo.txt index 3bb177ff5..b2bea1098 100644 --- a/todo.txt +++ b/todo.txt @@ -1,46 +1,4 @@ -0122 pde -X improve editor listener to not add so many extraneous indents -X with text selected, hitting left or right arrow should move to beginning/end -X right now, it deselects the text and moves over one char -X http://dev.processing.org/bugs/show_bug.cgi?id=349 -X add alt-shift-arrow-down and command-shift-arrow-down -X select all from that point to beginning (or end) of doc -X ctrl-shift up/down has some weird issue, but oh well -X cmd-shift-left and cmd-shift right should select the entire line -X cmd-left and cmd-right move back and forth properly -o option for behavior of HOME and END -X right now goes to begin/end of line.. should be begin/end of file? -X change to begin/end of file, and use cmd or alt, based on platform -X cmd-{ and cmd-} no longer work after the menu is shown -X http://dev.processing.org/bugs/show_bug.cgi?id=402 -X clicking "cancel" on close still quitting the app -X http://dev.processing.org/bugs/show_bug.cgi?id=440 -X discourse format sucked, changed to format for discourse -X http://dev.processing.org/bugs/show_bug.cgi?id=447 -X changing macosx to allow Java 1.5 to be used -X updated to antlr 2.7.7 - -fixed earlier or wontfix -X double-click only selects part of underscored word -X http://dev.processing.org/bugs/show_bug.cgi?id=261 -X this is actually a feature - -svg completed -X actual linear gradients working properly -X add a table for all objects with their names, -X so they can be grabbed individually -X add accessor to get items from the table -X see if items can be named in illusfarter using the svg palette -X compound shapes (fonts) won't wind properly, so fill will be messed up -X added hack to allow for broken shapes -X rename draw() and its buddy -X a moveto *inside* a shape will be treated as a lineto -X had to fix this -X implement polyline -X some means of centering the entire drawing (is this included already?) -X or setting to one of the corners -o does the svg spec just do this? -X finish draw(x, y, c, d) +0123 pde _ temporarily added log4j and jalopy (for the autoformatter) _ need to decide where these go, or if they're included at all