Skip to content

Commit 3eeb196

Browse files
committed
verifying a few more broken things
1 parent 554e4de commit 3eeb196

3 files changed

Lines changed: 15 additions & 11 deletions

File tree

core/todo.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,19 @@ X https://github.com/processing/processing4/issues/165
1313
X https://github.com/processing/processing4/pull/166
1414

1515

16+
regressions
1617
_ cursor(PImage) broken everywhere because PImage.getNative() returns null
1718
_ https://github.com/processing/processing4/issues/180
1819
_ PImage.resize() not working
1920
_ https://github.com/processing/processing4/issues/200
2021
_ two simple examples added to the issue that can be used for tests
21-
2222
_ mouseButton not set correctly on mouseReleased() with Java2D
2323
_ https://github.com/processing/processing4/issues/181
2424
_ https://github.com/processing/processing4/pull/188
2525

2626

2727
_ setting surface size needs to happen outside draw()
28+
_ surface.setSize() sadness etc
2829
_ https://github.com/processing/processing4/issues/162
2930
_ https://github.com/processing/processing4/issues/186
3031

@@ -75,6 +76,14 @@ _ https://github.com/processing/processing/issues/4894
7576
_ https://github.com/processing/processing/issues/4895
7677
_ https://github.com/processing/processing/issues/4897
7778

79+
from Casey
80+
_ Math for BLEND incorrect in the reference?
81+
_ https://github.com/processing/processing-docs/issues/762
82+
_ .setAngle() for PVector?
83+
_ https://github.com/processing/processing-docs/issues/744
84+
_ How much of the attrib*() functions should be documented?
85+
_ https://github.com/processing/processing-docs/issues/172
86+
7887

7988
api changes
8089
_ static versions of selectInput/selectOutput/selectFolder removed from PApplet
@@ -186,15 +195,6 @@ _ Friendly Names for new Sketches (includes UI for switching it back)
186195
_ https://github.com/processing/processing/pull/6048
187196

188197

189-
from Casey
190-
_ Math for BLEND incorrect in the reference?
191-
_ https://github.com/processing/processing-docs/issues/762
192-
_ .setAngle() for PVector?
193-
_ https://github.com/processing/processing-docs/issues/744
194-
_ How much of the attrib*() functions should be documented?
195-
_ https://github.com/processing/processing-docs/issues/172
196-
197-
198198
misc
199199
_ should we drop the 'default' prefix from the ex handler so it's not static?
200200
_ http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Thread.html

java/src/processing/mode/java/JavaTextArea.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ protected static String parsePhrase(final String lineText) {
514514
*/
515515
protected void showSuggestion(DefaultListModel<CompletionCandidate> listModel, String subWord) {
516516
// TODO can this be ListModel instead? why is size() in DefaultListModel
517-
// different from getSize() in ListModel (or are they, really?)
517+
// different from getSize() in ListModel (or are they, really?)
518518
hideSuggestion();
519519

520520
if (listModel.size() != 0) {

todo.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ X tweak the number of updates based on Akarshit's attempt
4040
X https://github.com/processing/processing4/issues/201
4141
X https://github.com/processing/processing/pull/4097
4242

43+
regressions
44+
_ Code completion not working
45+
_ https://github.com/processing/processing4/issues/177
46+
4347
_ when exporting an app, run xattr on it to handle "app is damaged" errors?
4448
_ https://osxdaily.com/2019/02/13/fix-app-damaged-cant-be-opened-trash-error-mac/
4549
_ https://github.com/processing/processing/issues/4214

0 commit comments

Comments
 (0)