verifying a few more broken things

This commit is contained in:
Ben Fry
2021-06-14 18:18:04 -04:00
parent 554e4de132
commit 3eeb196a79
3 changed files with 15 additions and 11 deletions

View File

@@ -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

View File

@@ -514,7 +514,7 @@ public class JavaTextArea extends PdeTextArea {
*/
protected void showSuggestion(DefaultListModel<CompletionCandidate> 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) {

View File

@@ -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