From 3eeb196a7989484c16a4c9bfdfd99e55da1204c2 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 14 Jun 2021 18:18:04 -0400 Subject: [PATCH] verifying a few more broken things --- core/todo.txt | 20 +++++++++---------- .../processing/mode/java/JavaTextArea.java | 2 +- todo.txt | 4 ++++ 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/core/todo.txt b/core/todo.txt index 7e460838a..1f586c513 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -13,18 +13,19 @@ X https://github.com/processing/processing4/issues/165 X https://github.com/processing/processing4/pull/166 +regressions _ cursor(PImage) broken everywhere because PImage.getNative() returns null _ https://github.com/processing/processing4/issues/180 _ PImage.resize() not working _ https://github.com/processing/processing4/issues/200 _ two simple examples added to the issue that can be used for tests - _ mouseButton not set correctly on mouseReleased() with Java2D _ https://github.com/processing/processing4/issues/181 _ https://github.com/processing/processing4/pull/188 _ setting surface size needs to happen outside draw() +_ surface.setSize() sadness etc _ https://github.com/processing/processing4/issues/162 _ https://github.com/processing/processing4/issues/186 @@ -75,6 +76,14 @@ _ https://github.com/processing/processing/issues/4894 _ https://github.com/processing/processing/issues/4895 _ https://github.com/processing/processing/issues/4897 +from Casey +_ Math for BLEND incorrect in the reference? +_ https://github.com/processing/processing-docs/issues/762 +_ .setAngle() for PVector? +_ https://github.com/processing/processing-docs/issues/744 +_ How much of the attrib*() functions should be documented? +_ https://github.com/processing/processing-docs/issues/172 + api changes _ static versions of selectInput/selectOutput/selectFolder removed from PApplet @@ -186,15 +195,6 @@ _ Friendly Names for new Sketches (includes UI for switching it back) _ https://github.com/processing/processing/pull/6048 -from Casey -_ Math for BLEND incorrect in the reference? -_ https://github.com/processing/processing-docs/issues/762 -_ .setAngle() for PVector? -_ https://github.com/processing/processing-docs/issues/744 -_ How much of the attrib*() functions should be documented? -_ https://github.com/processing/processing-docs/issues/172 - - misc _ should we drop the 'default' prefix from the ex handler so it's not static? _ http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Thread.html diff --git a/java/src/processing/mode/java/JavaTextArea.java b/java/src/processing/mode/java/JavaTextArea.java index c922ddebd..cd5b78be6 100644 --- a/java/src/processing/mode/java/JavaTextArea.java +++ b/java/src/processing/mode/java/JavaTextArea.java @@ -514,7 +514,7 @@ public class JavaTextArea extends PdeTextArea { */ protected void showSuggestion(DefaultListModel listModel, String subWord) { // TODO can this be ListModel instead? why is size() in DefaultListModel - // different from getSize() in ListModel (or are they, really?) + // different from getSize() in ListModel (or are they, really?) hideSuggestion(); if (listModel.size() != 0) { diff --git a/todo.txt b/todo.txt index c1258d160..0a2290356 100755 --- a/todo.txt +++ b/todo.txt @@ -40,6 +40,10 @@ X tweak the number of updates based on Akarshit's attempt X https://github.com/processing/processing4/issues/201 X https://github.com/processing/processing/pull/4097 +regressions +_ Code completion not working +_ https://github.com/processing/processing4/issues/177 + _ when exporting an app, run xattr on it to handle "app is damaged" errors? _ https://osxdaily.com/2019/02/13/fix-app-damaged-cant-be-opened-trash-error-mac/ _ https://github.com/processing/processing/issues/4214