mirror of
https://github.com/processing/processing4.git
synced 2026-01-29 03:11:08 +01:00
notes and updating to registerMethod()
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -797,7 +797,7 @@ public class Capture extends PImage implements PConstants {
|
||||
checkValidDevices(src);
|
||||
|
||||
// register methods
|
||||
parent.registerDispose(this);
|
||||
parent.registerMethod("dispose", this);
|
||||
|
||||
setEventHandlerObject(parent);
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
8
todo.txt
8
todo.txt
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user