Skip to content

Commit c0c745c

Browse files
committed
more cleanups and notes
1 parent 7ad9804 commit c0c745c

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

core/todo.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ _ draw(s) doesn't work on the returned PShape
212212

213213

214214
retina/hidpi
215+
_ save() and saveFrame() with 2X renderers fails
216+
_ https://github.com/processing/processing/issues/3255
215217
_ the 2X thing on the renderer name is unnecessary
216218
_ just do pixelFactor() (and pull it during compilation)?
217219
_ add sketchPixelFactor() to handle the scenario?

java/src/processing/mode/java/pdex/JavaTextAreaPainter.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ protected void paintLeftGutter(Graphics gfx, int line, int x) {
251251
// if no special text for a breakpoint, just show the line number
252252
if (text == null) {
253253
text = String.valueOf(line + 1);
254+
//text = makeOSF(String.valueOf(line + 1));
254255
}
255256
char[] txt = text.toCharArray();
256257

@@ -268,6 +269,16 @@ protected void paintLeftGutter(Graphics gfx, int line, int x) {
268269
}
269270

270271

272+
// Failed attempt to switch line numbers to old-style figures
273+
String makeOSF(String what) {
274+
char[] c = what.toCharArray();
275+
for (int i = 0; i < c.length; i++) {
276+
c[i] += (char) (c[i] - '0' + 0x362);
277+
}
278+
return new String(c);
279+
}
280+
281+
271282
// /**
272283
// * Paint the gutter background (solid color).
273284
// *

todo.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ X https://github.com/processing/processing/issues/3225
44
X Unable to install "processing-java"
55
X https://github.com/processing/processing/issues/3224
66
X also update the Windows and Linux versions
7+
8+
79
_ "one file added to sketch" when actually 2
10+
_ Cmd-click behavior on function/variable is firing when cmd-click not pressed
11+
_ https://github.com/processing/processing/issues/3242
12+
813

914
contribs
1015
X Window size not passing into Tweak Mode
@@ -13,6 +18,17 @@ X https://github.com/processing/processing/pull/3227
1318
X preferences window fixes for Linux
1419
X https://github.com/processing/processing/pull/3232
1520
X https://github.com/processing/processing/issues/3231
21+
X Clear error message in Contribution Manager after retrying
22+
X https://github.com/processing/processing/pull/3240
23+
X https://github.com/processing/processing/issues/3239
24+
X keep tab menu at the right-hand side
25+
X https://github.com/processing/processing/pull/3236
26+
X add SOCKS proxy support to the PDE
27+
X https://github.com/processing/processing/issues/2643
28+
X https://github.com/processing/processing/pull/3260
29+
X Use system proxy by default
30+
X https://github.com/processing/processing/issues/1476
31+
X https://github.com/processing/processing/pull/3251
1632

1733

1834
_ we've lost arrow keys to expand items in the examples window
@@ -710,6 +726,7 @@ _ but changing the size breaks the vertical centering
710726
_ highlight color seems to be incorrect?
711727
_ after installing, the item in the manager list doesn't change color
712728
_ scrolls to bottom of window after updating the list
729+
_ https://github.com/processing/processing/issues/3248
713730
_ wheel mouse is super jumpy
714731
_ something about unit increment in ContributionListPanel
715732
_ arrow keys up/down move scroll bar, not selection

0 commit comments

Comments
 (0)