Skip to content

Commit a6660ac

Browse files
committed
notes and updating to registerMethod()
1 parent bcf4a86 commit a6660ac

File tree

6 files changed

+16
-17
lines changed

6 files changed

+16
-17
lines changed

core/todo.txt

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
0214 core
2-
2+
X Patch for /trunk/processing/core/src/processing/opengl/PGraphicsOpenGL.java
3+
X http://code.google.com/p/processing/issues/detail?id=1306
34

45
_ remove java.awt.* imports from sketches
6+
_ go through examples to make sure they're not being used
57

68
_ lots of improvements to Table class?
7-
_ findRows() is broken
8-
_ should it return an iterator instead?
9-
//println(dict.getRowCount());
10-
languages = new Language[langTotal];
11-
for (int h = 0; h < langTotal; h++) {
12-
String num = str(h + 1);
13-
//int[] rows = dict.findRows(num, "#LNUM");
14-
int[] rows = findRowsReally(dict, num, "#LNUM");
15-
println(rows);
16-
}
9+
need option to save table
10+
join tables together (static is kinda gross)
11+
lastRowIndex() (to avoid getRowCount() - 1)
1712

1813
_ Default Renderer slow on retina displays
1914
_ http://code.google.com/p/processing/issues/detail?id=1262

java/libraries/net/src/processing/net/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public Client(PApplet parent, String host, int port) {
8181
thread = new Thread(this);
8282
thread.start();
8383

84-
parent.registerDispose(this);
84+
parent.registerMethod("dispose", this);
8585

8686
// reflection to check whether host applet has a call for
8787
// public void clientEvent(processing.net.Client)

java/libraries/net/src/processing/net/Server.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public Server(PApplet parent, int port) {
7676
thread = new Thread(this);
7777
thread.start();
7878

79-
parent.registerDispose(this);
79+
parent.registerMethod("dispose", this);
8080

8181
// reflection to check whether host applet has a call for
8282
// public void serverEvent(Server s, Client c);

java/libraries/video/src/processing/video/Capture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ protected void initGStreamer(PApplet parent, int rw, int rh, String src,
797797
checkValidDevices(src);
798798

799799
// register methods
800-
parent.registerDispose(this);
800+
parent.registerMethod("dispose", this);
801801

802802
setEventHandlerObject(parent);
803803

java/libraries/video/src/processing/video/Movie.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ protected void initGStreamer(PApplet parent, String filename) {
611611
this.filename = filename; // for error messages
612612

613613
// register methods
614-
parent.registerDispose(this);
614+
parent.registerMethod("dispose", this);
615615

616616
setEventHandlerObject(parent);
617617

todo.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,14 @@ X editor.caret.block = false
1919
X see if commander is still headless
2020
X check to see if sketchbook is getting picked up for cmd line
2121
X don't use --request on OS X 10.6, it's not available
22+
X processing-java ClassNotFoundException: BatchCompiler (Linux)
23+
X http://code.google.com/p/processing/issues/detail?id=1334
2224

25+
_ renaming RGB (.pde) to Rgb.java says "a file named RGB.pde already exists"
2326

24-
_ processing-java ClassNotFoundException: BatchCompiler (Linux)
25-
_ http://code.google.com/p/processing/issues/detail?id=1334
27+
_ change cmd line for OS X to use symlink?
28+
_ otherwise updates are going to require reinstall..
29+
_ or that it's gonna need to parse and say "update command line?"
2630

2731

2832
2.0 FINAL / library/tool/mode manager cleanup

0 commit comments

Comments
 (0)