Skip to content

Commit 2583c7c

Browse files
committed
who keeps letting this person check in code when they're tired?
1 parent 9740c85 commit 2583c7c

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

core/todo.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ X https://github.com/processing/processing/pull/3656
1919
X FX - Proper sketch sizing
2020
X https://github.com/processing/processing/pull/3658
2121
X implement frameRate()
22+
X FX - Fix key typed
23+
X https://github.com/processing/processing/pull/3672
2224

2325

2426
known issues

java/src/processing/mode/java/JavaBuild.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class JavaBuild {
6868
private String javaLibraryPath;
6969

7070
/** List of library folders, as figured out during preprocessing. */
71-
private ArrayList<Library> importedLibraries;
71+
private List<Library> importedLibraries;
7272

7373

7474
public JavaBuild(Sketch sketch) {
@@ -270,7 +270,6 @@ public String preprocess(File srcFolder,
270270
int index = bigCode.indexOf(stmt);
271271
if (index != -1) {
272272
bigCode.delete(index, index + stmt.length());
273-
System.out.println("code now " + bigCode);
274273
} else {
275274
// TODO remove once we hit final; but prevent an exception like in
276275
// https://github.com/processing/processing/issues/3531
@@ -645,7 +644,7 @@ public boolean getFoundMain() {
645644
* Get the list of imported libraries. Used by external tools like Android mode.
646645
* @return list of library folders connected to this sketch.
647646
*/
648-
public ArrayList<Library> getImportedLibraries() {
647+
public List<Library> getImportedLibraries() {
649648
return importedLibraries;
650649
}
651650

todo.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ X https://github.com/processing/processing/issues/3497
44
o probably have to add the script/Processing.app location to user's path
55
X line selected for errors is off by one or two
66
X https://github.com/processing/processing/issues/3654
7+
X PDE window leaks undisposed Timer objects even when closed
8+
X https://github.com/processing/processing/issues/3655
79

810
contribs
911
X Undo does not move to the correct location in the editor window
@@ -24,6 +26,12 @@ X https://github.com/processing/processing/pull/3636
2426
X CM: Category dropdown alignment
2527
X https://github.com/processing/processing/pull/3666
2628
_ https://github.com/processing/processing/issues/3644
29+
X CM column widths change with selection
30+
X https://github.com/processing/processing/issues/3609
31+
X https://github.com/processing/processing/pull/3675
32+
X remove category dropdown from CM except when viewing libraries
33+
X https://github.com/processing/processing/issues/3668
34+
X https://github.com/processing/processing/pull/3676
2735

2836
cleaning
2937
X modify build to insert these after antlr run:

0 commit comments

Comments
 (0)