File tree Expand file tree Collapse file tree
java/src/processing/mode/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ X https://github.com/processing/processing/pull/3656
1919X FX - Proper sketch sizing
2020X https://github.com/processing/processing/pull/3658
2121X implement frameRate()
22+ X FX - Fix key typed
23+ X https://github.com/processing/processing/pull/3672
2224
2325
2426known issues
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ X https://github.com/processing/processing/issues/3497
44o probably have to add the script/Processing.app location to user's path
55X line selected for errors is off by one or two
66X 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
810contribs
911X Undo does not move to the correct location in the editor window
@@ -24,6 +26,12 @@ X https://github.com/processing/processing/pull/3636
2426X CM: Category dropdown alignment
2527X 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
2836cleaning
2937X modify build to insert these after antlr run:
You can’t perform that action at this time.
0 commit comments