notes and updating to registerMethod()

This commit is contained in:
benfry
2012-10-26 18:12:51 +00:00
parent 868b552e1a
commit 0f776dfd24
6 changed files with 16 additions and 17 deletions

View File

@@ -1,19 +1,14 @@
0214 core
X Patch for /trunk/processing/core/src/processing/opengl/PGraphicsOpenGL.java
X http://code.google.com/p/processing/issues/detail?id=1306
_ remove java.awt.* imports from sketches
_ go through examples to make sure they're not being used
_ lots of improvements to Table class?
_ findRows() is broken
_ should it return an iterator instead?
//println(dict.getRowCount());
languages = new Language[langTotal];
for (int h = 0; h < langTotal; h++) {
String num = str(h + 1);
//int[] rows = dict.findRows(num, "#LNUM");
int[] rows = findRowsReally(dict, num, "#LNUM");
println(rows);
}
need option to save table
join tables together (static is kinda gross)
lastRowIndex() (to avoid getRowCount() - 1)
_ Default Renderer slow on retina displays
_ http://code.google.com/p/processing/issues/detail?id=1262

View File

@@ -81,7 +81,7 @@ public class Client implements Runnable {
thread = new Thread(this);
thread.start();
parent.registerDispose(this);
parent.registerMethod("dispose", this);
// reflection to check whether host applet has a call for
// public void clientEvent(processing.net.Client)

View File

@@ -76,7 +76,7 @@ public class Server implements Runnable {
thread = new Thread(this);
thread.start();
parent.registerDispose(this);
parent.registerMethod("dispose", this);
// reflection to check whether host applet has a call for
// public void serverEvent(Server s, Client c);

View File

@@ -797,7 +797,7 @@ public class Capture extends PImage implements PConstants {
checkValidDevices(src);
// register methods
parent.registerDispose(this);
parent.registerMethod("dispose", this);
setEventHandlerObject(parent);

View File

@@ -611,7 +611,7 @@ public class Movie extends PImage implements PConstants {
this.filename = filename; // for error messages
// register methods
parent.registerDispose(this);
parent.registerMethod("dispose", this);
setEventHandlerObject(parent);

View File

@@ -19,10 +19,14 @@ X editor.caret.block = false
X see if commander is still headless
X check to see if sketchbook is getting picked up for cmd line
X don't use --request on OS X 10.6, it's not available
X processing-java ClassNotFoundException: BatchCompiler (Linux)
X http://code.google.com/p/processing/issues/detail?id=1334
_ renaming RGB (.pde) to Rgb.java says "a file named RGB.pde already exists"
_ processing-java ClassNotFoundException: BatchCompiler (Linux)
_ http://code.google.com/p/processing/issues/detail?id=1334
_ change cmd line for OS X to use symlink?
_ otherwise updates are going to require reinstall..
_ or that it's gonna need to parse and say "update command line?"
2.0 FINAL / library/tool/mode manager cleanup