starting revision 0175

This commit is contained in:
benfry
2009-12-06 19:24:11 +00:00
parent d9499ce009
commit b4f433c82b
7 changed files with 32 additions and 22 deletions

11
android/done.txt Normal file
View File

@@ -0,0 +1,11 @@
0174 (private)
X not handling key characters correctly (space bar, tab, others)
X http://dev.processing.org/bugs/show_bug.cgi?id=1405
X why aren't mouse drag events coming through?
X http://dev.processing.org/bugs/show_bug.cgi?id=1382
X "taskdef class com.android.ant.SetupTask cannot be found" on Linux
X http://dev.processing.org/bugs/show_bug.cgi?id=1407
X update to r4 of android sdk
X this release will not run on r3 or earlier
X download core.zip from local files

View File

@@ -1,13 +1,5 @@
0174 (private)
X not handling key characters correctly (space bar, tab, others)
X http://dev.processing.org/bugs/show_bug.cgi?id=1405
X why aren't mouse drag events coming through?
X http://dev.processing.org/bugs/show_bug.cgi?id=1382
X "taskdef class com.android.ant.SetupTask cannot be found" on Linux
X http://dev.processing.org/bugs/show_bug.cgi?id=1407
X update to r4 of android sdk
X this release will not run on r3 or earlier
X download core.zip from local files
0175 (private)
P1 this is embarrassing, need to fix ASAP
P2 need to fix before beta release

View File

@@ -40,8 +40,8 @@ import processing.core.*;
* files and images, etc) that comes from that.
*/
public class Base {
static final int REVISION = 174;
static String VERSION_NAME = "0174";
static final int REVISION = 175;
static String VERSION_NAME = "0175";
static HashMap<Integer, String> platformNames = new HashMap<Integer, String>();
static {

View File

@@ -1,3 +1,8 @@
0174 core (private)
X svg paths that use 'e' (exponent) not handled properly
X http://dev.processing.org/bugs/show_bug.cgi?id=1408
0173 core (private)
X Re-enabled hack for temporary clipping.
X Clipping still needs to be implemented properly, however. Please help!

View File

@@ -1,6 +1,5 @@
0174 core (private)
X svg paths that use 'e' (exponent) not handled properly
X http://dev.processing.org/bugs/show_bug.cgi?id=1408
0175 core (private)
_ consider bringing back text/image using cache/names
_ fonts might not be as bad

View File

@@ -1,3 +1,12 @@
0174 pde (private)
X fix ant.jar/ant-launcher.jar error in the windows/linux build scripts
X http://dev.processing.org/bugs/show_bug.cgi?id=1403
X replace com.apple.eawt.Application invocation to deal with deprecation
X this may cause problems with older releases (or on 10.4 or 10.5), not sure
X application = new com.apple.eawt.Application();
X application = com.apple.eawt.Application.getApplication();
0173 pde (private)
X change build scripts to use UTF-8 for encoding with javac
X http://dev.processing.org/bugs/show_bug.cgi?id=1394

View File

@@ -1,10 +1,4 @@
0174 pde (private)
X fix ant.jar/ant-launcher.jar error in the windows/linux build scripts
X http://dev.processing.org/bugs/show_bug.cgi?id=1403
X replace com.apple.eawt.Application invocation to deal with deprecation
X this may cause problems with older releases (or on 10.4 or 10.5), not sure
X application = new com.apple.eawt.Application();
X application = com.apple.eawt.Application.getApplication();
0175 pde (private)
_ move build scripts to something better like ant