forked from processing/processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdone.txt
More file actions
6618 lines (6015 loc) · 301 KB
/
done.txt
File metadata and controls
6618 lines (6015 loc) · 301 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0257 (3.3)
X return null for PApplet.trim(null)
X StringDict(TableRow) constructor
X allow lone double quotes in the midst of csv strings
X make trim() work on column titles as well
o add trimRows() and trimColumns()
o would you ever use one w/o the other?
X just make this part of trim()
X also remove rows/columns from beginning
X since that's what trim() on strings does
X consume Unicode BOM (0xFEFF) in createReader() and Table parser
o no prompt shows with selectInput() on 10.11 and 10.12
X https://github.com/processing/processing/issues/4758
X can't fix, seems embedded in the Java implementation
X return null for getString(), getJSONObject(), and getJSONArray()
X when key is not present, more in line w/ other p5 api
contrib
X Fix a number of memory leaks (jdf)
X https://github.com/processing/processing/pull/4862
X https://github.com/jdf/processing.py/issues/233
X https://github.com/processing/processing/pull/4873
0256 (3.2.4)
X write exec() documentation
X https://github.com/processing/processing/issues/4740
X add xmlns to elements procured from getChild()
X make sure newline is added after XML header when formatting
api additions
X add listPaths(), listFiles()
X https://github.com/processing/processing/issues/4622
X add increment() method that takes IntDict to merge another dictionary
X Calling this increment() since it doesn't make sense in practice for
X the other dictionary types, even though it's technically an add()
X add Entry class for iterating StringDict, IntDict, FloatDict
X add XML.print() method (prints with indent of 2)
contribs
X Adding missing docs and keywords for TableRow
X https://github.com/processing/processing/pull/4333
X PShape in Java2D wasn't respecting 'kind'
X https://github.com/processing/processing/issues/4826
X https://github.com/processing/processing/pull/4834
cleaning
o probably should also check to make sure PApplet running JVM 8
X or compile against 1.8 and force it?
andres
X PShape array index out of bounds when using P3D
X https://github.com/processing/processing/issues/4773
X modelX/Y/Z() should be disabled in P2D
X https://github.com/processing/processing/issues/4813
jakub
X FX: Prevent matrix stack overflow
X https://github.com/processing/processing/pull/4799
X https://github.com/processing/processing/issues/4206
X FX: Reset transform to identity before drawing background
X https://github.com/processing/processing/pull/4795
X FX: Implement mouse wheel event
X https://github.com/processing/processing/issues/4169
X https://github.com/processing/processing/pull/4796
X FX: Fix curveVertex drawing all curves together as one long curve
X https://github.com/processing/processing/pull/4800
X https://github.com/processing/processing/issues/4382
X FX: Add exception handler which reports exceptions from user code
X https://github.com/processing/processing/pull/4798
X https://github.com/processing/processing/issues/4339
X Unify mouse pressed/released events across renderers
X https://github.com/processing/processing/issues/4361
X https://github.com/processing/processing/pull/4797
X Fix typo in GLSL preprocessor
X https://github.com/processing/processing/issues/4810
X https://github.com/processing/processing/pull/4816
X Keep Windows timer resolution high for OpenGL sketches
X prevents frame rate in OpenGL hovering around 30 instead of 60
X https://github.com/processing/processing/pull/4847
X https://github.com/processing/processing/issues/4846
X Sketches still running in the background after closing
X https://github.com/processing/processing/issues/4831
X (needed to allow JAVA2D to terminate when animation thread dies)
X https://github.com/processing/processing/pull/4839
0255 (3.2.3)
andres
X automatic detection of POINT and LINE shaders fails
X https://github.com/processing/processing/issues/4725
X show warning when frameRate() less than 1 is called with P2D and P3D
X https://github.com/processing/processing/issues/4716
0254 (3.2.2)
X fix quoting problem in IntDict.toJSON()
X add getRenderer() to SurfaceInfo
X https://github.com/processing/processing/issues/4441
X Exceptions thrown in OpenGL apps when hitting window close box
X https://github.com/processing/processing/issues/4690
X add getRowMap() function
o do we want rows() to not be transient?
X write docs for getRowMap()
o Add options to saveJSONArray documentation (enhancement)
o https://github.com/processing/processing/issues/4683
X made note in the docs repo
X go back to textMode(MODEL) is native font not available for textMode(SHAPE)
X https://github.com/processing/processing/issues/4680
X NPE thrown when using textMode(SHAPE) with a .vlw font
X https://github.com/processing/processing/issues/4680
X add toJSON() method to IntDict
X had to use JSONObject.quote() to wrap the text
X do the same for the other data classes
o note the difference between this and toJSONObject() or toJSONArray()
o or is that the better way to handle it? hm
X we can add JSONObject and JSONArray later perhaps
X keep toJSONObject() for turning XxxxList into a numbered lookup
contrib
X Call glGetProgramiv to retrieve program log length
X https://github.com/processing/processing/issues/4659
X https://github.com/processing/processing/pull/4660
X JSONObject get() method is private
X https://github.com/processing/processing/issues/4334
X https://github.com/processing/processing/pull/4336
andres
X Automatic handling of screen FBOs breaks readPixels() for user-provided FBO
X https://github.com/processing/processing/issues/4643
X PGraphicsOpenGL: camera info not updated
X https://github.com/processing/processing/issues/4609
X Fix PShape, updateTessellation, matrix transformations
X https://github.com/processing/processing/issues/4662
X QUAD_STRIP as child shape draws extra lines
X https://github.com/processing/processing/issues/4656
X remove extra glClear() calls
X https://github.com/processing/processing/issues/4694
X PShapes do not show up in PDF with P2D renderer
X https://github.com/processing/processing/issues/4647
X Some semi-transparent edges of sphere() meshes rendered in higher density
X https://github.com/processing/processing/issues/4720
X P2D and P3D not stopping with empty draw() blocks
X https://github.com/processing/processing/issues/4722
0253 (3.2.1)
X implement defaultUncaughtExceptionHandler
X helps avoid needing to double-quit OS X applications
0252 (3.2)
X some Table cleanup based on other CSV parsing work
X use StandardCharsets.UTF_8 instead of getting encoding by name
X PApplet.main(Blah.class) now works
o add push() and pop() methods to mirror js?
X Can't render PGraphics object using image() within a PDF
X https://github.com/processing/processing/issues/4473
jakub
X Fix resizing targets for async save
X https://github.com/processing/processing/pull/4607
X https://github.com/processing/processing/issues/4578
contrib
X Make loadStrings() and loadJSONObject/loadJSONArray() error msgs consistent
X https://github.com/processing/processing/issues/4265
X https://github.com/processing/processing/pull/4268
0251 (3.1.2)
X rewrite csv handling
X fix parsing bugs, remove newlines option, improve performance
X prevent random(low, high) from returning 'high'
X https://github.com/processing/processing/issues/4551
X disable async saveFrame() by default
X https://github.com/processing/processing/issues/4578
gohai
X Fix GLExceptions on Raspberry Pi when using offscreen PGraphics
X https://github.com/processing/processing/pull/4524
leslie
X fixed iterator remove() methods so they dont skip container elements
X https://github.com/processing/processing/pull/4519
X added a check for length 0 arrays in expand()
X https://github.com/processing/processing/pull/4520
jakub
X Prevent NPE in loadImage() when called before setup()
X https://github.com/processing/processing/pull/4505
andres
X fix crash when calling getUniformLoc() called in PShader.set()
X https://github.com/processing/processing/issues/4542
earlier
X see if 8u65 or 8u66 fix the JavaFX problem
X if not, need to add them to the block list
0250 (3.1.1)
X implement support for encoding= option in loadTable()
jakub
X Block loadImage and requestImage while images still being saved
X https://github.com/processing/processing/issues/4218
X https://github.com/processing/processing/pull/4465
andres
X PShapeOBJ error String for missing MTL texture file
X https://github.com/processing/processing/issues/3990
X https://github.com/processing/processing/commit/49a4c815557214fc1bf92e381ffaa398f262361a
X Shape (OBJ) import texture data is 0.0
X https://github.com/processing/processing/issues/3156
X https://github.com/processing/processing/commit/9f1d2988dc80ca7d5ee861b944cb59020ff771c5
0249 (3.1)
X Float/IntDict changes
X minIndex() and maxIndex() return -1 when count is zero (rather than ex)
X bug fix to reverse sorts
X 2x performance increase for sorting
X added optional "stable" parameter for sorting by values
X set to false for higher performance
X call crop() in keyArray() and valueArray() functions
X they're duplicates, their length is an implementation detail
X normalize features and error handling between all of them
X add print() and write(PrintWriter) methods to Table/TableRow
X https://github.com/processing/processing/issues/4396
jakub
X several JavaFX fixes
X https://github.com/processing/processing/pull/4411
X cursor() and noCursor() not working on FX2D
X https://github.com/processing/processing/issues/4405
X Make sure PImage.parent is set in loadImage()
X https://github.com/processing/processing/pull/4412
andres
X Change convention for directional lights in OpenGL-Binding for GLSL
X https://github.com/processing/processing/issues/4275
X internal texture copy does not update immediately
X https://github.com/processing/processing/issues/4404
X Font corruption issue in OpenGL
X https://github.com/processing/processing/issues/4392
X setStroke() does not work with imported OBJ Pshapes
X https://github.com/processing/processing/issues/4377
contribs
X blendMode() resetting with getGraphics()
X https://github.com/processing/processing/issues/4019
X https://github.com/processing/processing/pull/4341
X https://github.com/processing/processing/issues/4376
0248 (3.0.2)
X Fix another "Zero length string passed to TextLayout constructor" error
X Ambiguity on where to call smooth()
X https://github.com/processing/processing/issues/4211
X add additional clarification for Eclipse users
X Flipped Y-axis in JavaFX is now done (JDK bug)
X https://github.com/processing/processing/issues/3795
jakub
X Initialize sketch args before calling settings()
X https://github.com/processing/processing/issues/4219
X https://github.com/processing/processing/pull/4220
andres
X Stop button in OpenGL exported applications does not use preference settings
X https://github.com/processing/processing/issues/4064
X Export without a stop button using P3D or P2D
X https://github.com/processing/processing/issues/4056
X glClearDepthf() not available on older hardware
X https://github.com/processing/processing/issues/4106
X Drawing a sphere with shape() first changes sphereDetail from default
X https://github.com/processing/processing/issues/4192
X PShape.scale() affects strokeWeight differently in P2D and P3D
X https://github.com/processing/processing/issues/4231
X createShape(GROUP) + textured child + non-textured child = P3D render problems
X https://github.com/processing/processing/issues/4176
X pixelDensity() and createGraphics() with P3D
X https://github.com/processing/processing/issues/4039
X Friendlier message when running drawing commands outside animation thread
X https://github.com/processing/processing/issues/4196
X strokeWeight() not working properly with point() in P2D and P3D
X https://github.com/processing/processing/issues/4188
X exit() is not called in P2D/P3D
X https://github.com/processing/processing/issues/4156
X attrib*() function does not work well with PShape
X https://github.com/processing/processing/issues/4048
contribs
X Fill out the Javadoc for PMatrix
X https://github.com/processing/processing/pull/4155
X Have PSurfaceFX pay attention to the setVisible argument
X https://github.com/processing/processing/pull/4210
X Use xdg-open in PApplet#launch(String)
X https://github.com/processing/processing/pull/4171
0247 (3.0.1)
X curveVertex() does not work with FX2D renderer
X https://github.com/processing/processing/issues/3960
X hide menu bar on OS X when FX2D is running full screen
X add quotes to the necessary parameters in the size() error messages
X Editor menu is outside the visible screen with 800x480 display
X https://github.com/processing/processing/issues/3913
X https://github.com/processing/processing/pull/3999
X https://github.com/processing/processing/pull/3992
X add a patch for FX2D menubar not hiding, root cause not sorted out
jakub
X Fix depth sorter ordering when two triangles in a plane share vertices
X https://github.com/processing/processing/pull/4010
X Turn off fixed rate scheduling in OpenGL
X https://github.com/processing/processing/pull/4004
X Fix GLSL preprocessing issues with variable name mangling
X https://github.com/processing/processing/pull/4052
X https://github.com/processing/processing/issues/3961
X https://github.com/processing/processing/issues/3968
andres
X cursor() fails to work as expected with P2D/P3D
X https://github.com/processing/processing/issues/3955
X Topics/Shader/Convay broken
X https://github.com/processing/processing/issues/3947
X https://github.com/processing/processing/issues/3973
X Regressions wrt GLES2 support between b4 and b7
X https://github.com/processing/processing/issues/3976
X stroke glitches in P3D
X https://github.com/processing/processing/issues/4007
X https://github.com/processing/processing/issues/4027
X https://github.com/processing/processing/issues/4012
X line loops incorrectly closed in P3D
X https://github.com/processing/processing/issues/4031
X pixelDensity() and createGraphics()
X https://github.com/processing/processing/issues/4039
X https://github.com/processing/processing/commit/1d163197c970947bf5be17049bddbe8e444f759d
X GL related crashes when closing the display window on Ubuntu (Intel)
X https://github.com/processing/processing/issues/4041
X GL related crashes when closing window on MacBook Air (Intel) running 10.9.5
X https://github.com/processing/processing/issues/3977
jogl
X Update to JogAmp JOGL 2.3.2
X https://github.com/processing/processing/issues/3979
X Output window cannot be set as non-resizable with the P2D or P3D renderers
X https://jogamp.org/bugzilla/show_bug.cgi?id=1188
X https://github.com/processing/processing/issues/3952
X setAlwaysOnTop does not work in P2D and P3D on Mac
X https://github.com/processing/processing/issues/3793
X P2D and P3D windows behave strangely when larger than the screen size
X https://github.com/processing/processing/issues/3401
X Remove Gluegen & JOGL sources
X https://github.com/processing/processing/pull/3982
0246 the papal visit (3.0)
X implement high-performance/async image saving
X Use PBOs for async texture copy
X https://github.com/processing/processing/issues/3569
X https://github.com/processing/processing/pull/3863
X https://github.com/processing/processing/pull/3869
X Textures disappearing in beta 7 (might be WeakReference regression)
X https://github.com/processing/processing/issues/3858
X https://github.com/processing/processing/pull/3874
X https://github.com/processing/processing/pull/3875
X Convert all documented hacky keys in OpenGL
X https://github.com/processing/processing/pull/3888
X Frame size displays incorrectly if surface.setResizable(true)
X https://github.com/processing/processing/issues/3868
X https://github.com/processing/processing/pull/3880
X displayWidth, displayHeight, full screen, display number
X https://github.com/processing/processing/pull/3893
X https://github.com/processing/processing/issues/3865
X OpenGL with fullScreen() always opens on default display
X https://github.com/processing/processing/issues/3889
X https://github.com/processing/processing/issues/3797
X https://github.com/processing/processing/pull/3892
cleaning
o move AWT image loading into PImageAWT
o look into how GL and FX will handle from there
o run only the necessary pieces on the EDT
o in part because FX doesn't even use the EDT
o re-check the Linux frame visibility stuff
X cleaned most of this as far as we can go
o Ubuntu Unity prevents full screen from working properly
X https://github.com/processing/processing/issues/3158
X can't fix; upstream problem, added to the wiki
0245 core (3.0b7)
X surface.setLocation(x,y) not working with the default renderer
X https://github.com/processing/processing/issues/3821
X FX2D display is inverted in 3.0b6
X https://github.com/processing/processing/issues/3795
jakub
X Make the PApplet regex cache LRU
X https://github.com/processing/processing/pull/3815
X Minor OpenGL improvements
X https://github.com/processing/processing/pull/3849
andres
X Cannot re-enable stroke or fill of a PShape with P2D
X https://github.com/processing/processing/issues/3808
X setResizable broke with oscilating behavior in 3.0b6
X https://github.com/processing/processing/issues/3825
X https://github.com/processing/processing/commit/42c0150da0f400637de916db1f94a687a7bc4288
X surface.setLocation() causing a freeze on Windows
X https://github.com/processing/processing/commit/4c0f9234c0a48f62363233cafc9c9951ee351d3e
X selectInput/Output() is behind the drawing window (Windows)
X https://github.com/processing/processing/issues/3775
X MouseWheel count wrong (backwards?) in P2D and P3D
X https://github.com/processing/processing/issues/3840
0244 core (3.0b6)
X Incomplete text rendering of strings with consecutive line breaks
X https://github.com/processing/processing/issues/3736
X https://github.com/processing/processing/pull/3737
X https://github.com/processing/processing/issues/3761
X add the Contents/Java folder to java.library.path on OS X
X allows exported applications to use the Sound library
o don't grab pixels of java2d images unless asked
o this is the difference between a lot of loadPixels() and not
o so important to have it in before beta if that's the change
o https://github.com/processing/processing/issues/99
X won't fix for now, requires too much reworking on the image system
X add surface.setAlwaysOnTop(boolean)
X https://github.com/processing/processing/issues/3718
X Implement standard cursor types in OpenGL
X https://github.com/processing/processing/issues/3554
X Change value of constants PRIMITIVE, PATH, and GEOMETRY constants in PShape
X This avoids a collision with entries in PConstants which causes
X confusing errors or no errors to be thrown at all
X https://github.com/processing/processing/issues/3776
X Fix flickering cursor regression with Java2D on Windows introduced by #3472
andres
X P2D: error calling surface.setTitle()
X https://github.com/processing/processing/issues/3721
X https://github.com/processing/processing/commit/a384cbf0890a49dbf6e0fdd80e048de80e5d78d2
X Error message with noLoop() and P2D renderer
X https://github.com/processing/processing/issues/3558
X Concurrency issues in OpenGL renderer prevent proper garbage collection
X https://github.com/processing/processing/issues/3384
X In P2D/P3D the background is cleared to black on each frame
X https://github.com/processing/processing/issues/3559
X cursor() command with PImage stopped working in 3.0 with P2D
X https://github.com/processing/processing/issues/3769
X Demos/Graphics/Wiggling regressed from 17 fps to 8.3 fps between a11 and b1
X https://github.com/processing/processing/issues/3561
X "Library not installed properly" message inconsistent in P2D/P3D vs. JAVA2D
X https://github.com/processing/processing/issues/3453
X PShape 3D: strange extra lines (another fix)
X https://github.com/processing/processing/issues/3006
X line direction vectors are incorrectly transformed
X https://github.com/processing/processing/issues/3779
X Strokes in 3D PShapes are not properly connected
X https://github.com/processing/processing/issues/3756
X setting surface properties hangs OpenGL sketches
X https://github.com/processing/processing/issues/3789
jakub
X FX - fix transformation stack NPE
X https://github.com/processing/processing/pull/3710
X FX - fix rad-deg conversion in rotate()
X https://github.com/processing/processing/pull/3711
X FX - basic pixel operations (get, set, load, update)
X https://github.com/processing/processing/pull/3709
X FX - align to pixel grid when drawing 1 px strokes
X https://github.com/processing/processing/pull/3712
X keyChar and keyCode are super wonky and unlike AWT
X https://github.com/processing/processing/issues/3290
X what's the way to do this after the deprecation?
X if this is going to be the default renderer, has to be ironed out
X FX - arc - infamous deg-rad conversion strikes again
X https://github.com/processing/processing/pull/3713
X FX - paths, contours, curves
X https://github.com/processing/processing/pull/3715
X FX - fix AIOOBE when pressing ESC on Mac
X https://github.com/processing/processing/pull/3719
X FX - framerate fix
X https://github.com/processing/processing/pull/3724
X FX - loadPixels, updatePixels, get and set optimizations
X https://github.com/processing/processing/pull/3725
X FX - keep track of whether pixels are up to date
X https://github.com/processing/processing/pull/3716
X FX - improve key events
X https://github.com/processing/processing/pull/3729
X FX - add FX2D keyword, remove JFX keyword
X https://github.com/processing/processing/pull/3731
X JOGL - normalize enter key
X https://github.com/processing/processing/pull/3735
X FX - normalize enter key
X https://github.com/processing/processing/pull/3730
X Render text starting with space properly
X https://github.com/processing/processing/pull/3746
X FX - smooth for the main surface
X https://github.com/processing/processing/pull/3749
X OpenGL - clean up loaded and modified for pixels
X https://github.com/processing/processing/pull/3768
X FX - text stuff, move createFont() into PGraphics
X https://github.com/processing/processing/pull/3766
X FX - fix bug where fonts would share a tint cache
X https://github.com/processing/processing/pull/3771
X textFont() and textSize() are each calling one another
X move createFont() to PGraphics
X Fix PShape creation in P3D
X https://github.com/processing/processing/pull/3781
X keyTyped() not firing with P2D and P3D
X https://github.com/processing/processing/issues/3582
X https://github.com/processing/processing/pull/3652
X Implement a way to disable automatic key repeat
X implemented for OpenGL, where key repeat is now disabled by default
X hint(ENABLE_KEY_REPEAT) will turn it back on
X https://github.com/processing/processing/issues/1622
X non-standard cursor images used for OpenGL
X https://github.com/processing/processing/issues/3791
X closed as cannot fix, but notes made in Wiki and in the repo
X fix late-breaking NPE in PGL
X https://github.com/processing/processing/pull/3792
0243 core (3.0b5)
X NullPointerException in selectFolder() on OS X
X https://github.com/processing/processing/issues/3661
X Wrong positioning of circles in SVG shapes (regression from 2)
X https://github.com/processing/processing/issues/3685
X setFill() on PShape in Java2D throws ArrayIndexOutOfBoundsException
X https://github.com/processing/processing/issues/3677
X saveJSONObject() doesn't close the file
X https://github.com/processing/processing/issues/3705
jakub
X keyTyped() not firing with P2D and P3D
X https://github.com/processing/processing/issues/3582
X https://github.com/processing/processing/pull/3652
X rect() sizing in JavaFX
X https://github.com/processing/processing/pull/3656
X FX - Proper sketch sizing
X https://github.com/processing/processing/pull/3658
X implement frameRate()
X FX - Fix key typed
X https://github.com/processing/processing/pull/3672
X FX - Make key events little bit more sane
X https://github.com/processing/processing/pull/3686
X added note about AIOOBE seen earlier
X Update LowLevelGL to use VBOs
X https://github.com/processing/processing-docs/pull/289
X Remove legacy GL functions from PGL
X https://github.com/processing/processing/issues/3674
X https://github.com/processing/processing/pull/3691
X https://github.com/processing/processing/issues/3671
X https://github.com/processing/processing/issues/3621
X "Internal graphics not initialized yet"
X https://github.com/processing/processing/issues/3690
X https://github.com/processing/processing/pull/3692
X Remove support for fixed-function pipeline
X https://github.com/processing/processing/issues/3505
X NullPointerException in Demos > Graphics > Planets
X https://github.com/processing/processing/issues/3551
X turns out to be a problem with capitalization
cleaning
X How do images behave when pixelDensity(2) is set?
X https://github.com/processing/processing/issues/3364
X retina sketches slow to start
X https://github.com/processing/processing/issues/2357
X zero alpha values still a problem with retina renderer
X https://github.com/processing/processing/issues/2030
X fullScreen(SPAN) reported not working (cannot reproduce)
X probably need to re-query for displays each time opening prefs
X what happens when a screen is added after p5 has started?
X https://github.com/processing/processing/issues/3381
X fixed in beta 1
0242 core (3.0b4)
X dataPath() not working when app is not run from app dir on Linux
X https://github.com/processing/processing/issues/2195
X Zero length string passed to TextLayout constructor
X https://github.com/processing/processing/issues/3487
X improve speed of text(x, y, w, h) when using large strings with no spaces
X https://github.com/processing/processing/issues/211
X implement add(x, y) and sub(x, y) in PVector
X https://github.com/processing/processing/issues/3593
earlier
X are we clear on sketchPath() for OS X?
X working dir (user.dir?) returns home dir, not app dir in Oracle Java
X could add -Dapp.root=$APP_ROOT and get via System.getProperty("app.root")
X https://github.com/processing/processing/issues/2181
X textWidth() incorrect with default (JAVA2D) renderer and default font
X https://github.com/processing/processing/issues/2175
X Error on size() when using FX2D due to stage inset issues
X https://github.com/processing/processing/issues/3412
X probably fixes w/ size() removal change
jakub
X Remove alpha filler (hopefully no regression here)
X https://github.com/processing/processing/pull/3523
X accuracy problems make alpha channel go to FE with image.copy()
X https://github.com/processing/processing/issues/258
X fix blue-channel bias on blend()
X https://github.com/processing/processing/issues/514
X improve blend() accuracy when using ADD
X https://github.com/processing/processing/issues/172
X includes code for a slow but more accurate mode
X huge Java2D blending patch
X https://github.com/processing/processing/pull/3592
X Remove support for fixed-function pipeline
X https://github.com/processing/processing/issues/3505
X https://github.com/processing/processing/pull/3604
X https://github.com/processing/processing/pull/3605
X https://github.com/processing/processing/pull/3606
X https://github.com/processing/processing/pull/3628
X Improve OpenGL extensions checks
X https://github.com/processing/processing/pull/3646
X P2D/P3D broken after recent profile changes
X https://github.com/processing/processing/issues/3617
opengl
X filter(PShader) broken in HDPI mode
X https://github.com/processing/processing/issues/3577
0241 core (3.0b3)
X `focused` variable always false in P2D/P3D
X https://github.com/processing/processing/issues/3564
X implement a nf(float) function to support the changes in map()
X show a warning when map() prints a bad value
X https://github.com/processing/processing/issues/3314
opengl
X IndexOutOfBoundsException with pixelDensity(2) and P2D
X https://github.com/processing/processing/issues/3568
X Shaders output to bottom left corner rather than full window in 3.0b2
X https://github.com/processing/processing/issues/3572
0240 core (3.0b2)
X make size(displayWidth, displayHeight) still run in a window
X prevents "fullScreen() cannot be used here" message on startup
X https://github.com/processing/processing/issues/3545
X throw an error when using methods that require sketchPath outside setup()
X https://github.com/processing/processing/issues/3433
X cursor(CROSS) breaks when using surface.setTitle()
X https://github.com/processing/processing/issues/3472
X Fix null pointer exception in setVertex
X https://github.com/processing/processing/pull/3553
X https://github.com/processing/processing/issues/3550
andres/jakub
X toggling between noLights and PointLight in draw() behaving strangely
X https://github.com/processing/processing/issues/3546
X NPE in Planets demo
X https://github.com/processing/processing/issues/3551
fixed earlier
X blend() and copy() are not pixel accurate for copy/scale
X https://github.com/processing/processing/issues/324
X Jakub: fixed somewhere between 0179 and 0184
cleaning/fixed earlier
X splice() throws ClassCastException when used with objects like PVector
X http://code.google.com/p/processing/issues/detail?id=1407
X https://github.com/processing/processing/issues/1445
o Semitransparent rect drawn over image not rendered correctly
o http://code.google.com/p/processing/issues/detail?id=182
X https://github.com/processing/processing/issues/221
X text() wraps words differently depending on whether space seen or not
X http://code.google.com/p/processing/issues/detail?id=439
X https://github.com/processing/processing/issues/478
o make sure rendering is happening on the EDT
o (hopefully fixes flicker issues)
o change PApplet.java javadoc to reflect the change
o Update http://wiki.processing.org/w/Troubleshooting#Flicker
X http://code.google.com/p/processing/issues/detail?id=775
X look into using BufferStrategy again to improve performance
X there are more improvements to be made ala issue #729
o thread() causes weird flickering
X http://code.google.com/p/processing/issues/detail?id=742
o stop() not getting called
o http://code.google.com/p/processing/issues/detail?id=43
o major problem for libraries
o and start() is supposedly called by the applet viewer
o http://java.sun.com/j2se/1.4.2/docs/api/java/applet/Applet.html#start()
o need to track this stuff down a bit
X closed with work from Lonnen, but still some issues around this
X createShape() not yet implemented for Java2D
X http://code.google.com/p/processing/issues/detail?id=1400
X https://github.com/processing/processing/issues/1438
o load PShape from a string object
X http://code.google.com/p/processing/issues/detail?id=277
X ortho() issues
X http://code.google.com/p/processing/issues/detail?id=1240
X https://github.com/processing/processing/issues/1278
X hint(DISABLE_PERSPECTIVE_CORRECTED_STROKE)
X implement textMode(SHAPE) with OPENGL
X https://github.com/processing/processing/issues/777
X http://code.google.com/p/processing/issues/detail?id=738
X implement setImpl() instead of set() inside PGraphicsOpenGL
X http://code.google.com/p/processing/issues/detail?id=121
X https://github.com/processing/processing/issues/160
X first few frames of OpenGL sketches on Windows run slowly
X http://code.google.com/p/processing/issues/detail?id=107
X https://github.com/processing/processing/issues/146
X Signature issue on contributed libraries affects unrelated opengl sketches
X http://code.google.com/p/processing/issues/detail?id=261
X OpenGL noSmooth() problems
X http://code.google.com/p/processing/issues/detail?id=328
o OS X slow with FSEM enabled
X http://code.google.com/p/processing/issues/detail?id=737
X get() with OPENGL is grabbing the wrong coords
X http://code.google.com/p/processing/issues/detail?id=191
X deal with issue of single pixel seam at the edge of textures
X should vertexTexture() divide by width/height or width-1/height-1?
X http://code.google.com/p/processing/issues/detail?id=76
X https://github.com/processing/processing/issues/115
X lousy graphics cards cause background to flicker if background() not used
X http://code.google.com/p/processing/issues/detail?id=146
X https://github.com/processing/processing/issues/185
X OPENGL sketches flicker w/ Vista when background() not used inside draw()
X Disabling Aero scheme sometimes prevents the problem
X Updating graphics drivers may prevent the problem
X ellipse scaling method isn't great
X http://code.google.com/p/processing/issues/detail?id=87
X Stroking a rect() leaves off the upper right pixel
X http://code.google.com/p/processing/issues/detail?id=67
X https://github.com/processing/processing/issues/106
X opengl applet problems with tabs - needs to handle stop() and start()
X http://code.google.com/p/processing/issues/detail?id=196
X stop() called between tabs/pages, start() may be called again
X http://java.sun.com/docs/books/tutorial/deployment/applet/lifeCycle.html
X really, stop() should just call noLoop() (and start re-enable if done)
X and on android, start/stop can be used to save state information
X need to fix opengl applets so that we can safely kill P3D
X Signature issue on contributed libraries affects unrelated opengl sketches
X http://code.google.com/p/processing/issues/detail?id=261
0239 core (3.0b1)
X add getSurface() method ('surface' is protected in PApplet)
X tweak implementation of PVector.heading()
X https://github.com/processing/processing/issues/3511
X make PFont.size protected again
X https://github.com/processing/processing/issues/3519
X fix problem with JAR loading inside createInputRaw()
o https://github.com/processing/processing/pull/3514
X remove 'contrib updates available' dialog box for now
X new version coming soon in the UI
X make notes about Java2D and JavaFX packages in the README
fixed earlier
X Cannot use this version of rotate() on a PMatrix2D with PShape.rotateX()
X https://github.com/processing/processing/issues/1342
opengl
X Remove size() from setup() when copying to settings()
X https://github.com/processing/processing/pull/3517
X Remove mode parameters from createShape(), fixes parameter collision issues
X https://github.com/processing/processing/pull/3516
X radius for rect not working on PShape
X https://github.com/processing/processing/issues/2646
X bug in arc with createShape
X https://github.com/processing/processing/issues/3018
X OpenGL sketch flickers when draw() is missing or empty
X https://github.com/processing/processing/issues/3473
X https://github.com/processing/processing/pull/3521
X size() errors
X https://github.com/processing/processing/issues/3483
X improve hint(ENABLE_DEPTH_SORT) to use proper painter's algo
X https://github.com/processing/processing/issues/90
X also for begin/endRaw:
X https://github.com/processing/processing/issues/2235
X polygon z-order depth sorting with alpha in opengl
X complete the implementation of hint() with proper implementation
X gl alpha on images when flipped around backwards
X will sorting based on depth help this? also ask simon for ideas
X need to merge sorting/drawing of lines and triangles
X lines will occlude tris and vice versa
X will need to split each based on the other
X sort issues will affect both
X https://github.com/processing/processing/pull/3507
X https://github.com/processing/processing/pull/3477
X https://github.com/processing/processing/pull/3410
X https://github.com/processing/processing/pull/3372
o rect() with stroke outline renders 1px wider and taller in P2D
X behavior is correct, explanation provided
X https://github.com/processing/processing/issues/2065
X sort out edge + 1 issue on stroke/fill for rectangles
X http://code.google.com/p/processing/issues/detail?id=509
X setVertex() not working in P3D and P2D
X https://github.com/processing/processing/issues/3022
X https://github.com/processing/processing/pull/3528
X add hint(ENABLE_DEPTH_READING) to handle stencil/depth buffers
X https://github.com/processing/processing/pull/3527
X https://github.com/processing/processing/issues/2771
X ArrayIndexOutOfBoundsException error when enabling depth sorting in P3D
X https://github.com/processing/processing/pull/3477
X https://github.com/processing/processing/issues/3476
X Fix curves - properly this time
X https://github.com/processing/processing/pull/3501
X Remove duplicate curve vertex
X https://github.com/processing/processing/pull/3496
X https://github.com/processing/processing/issues/2937
X JOGL window size is now set properly
X https://github.com/processing/processing/pull/3493
X https://github.com/processing/processing/issues/3223
X more sorter work
X https://github.com/processing/processing/pull/3507
X Depth sorting wrong when drawing inside setup(), P3D
X can no longer be reproduced
X https://github.com/processing/processing/issues/2483
X Device parsing on Linux is incorrect
X https://github.com/processing/processing/issues/3532
o don't show display warning when display 1 doesn't exist
X apparently this was an OpenGL bug (#3532)
X flush geometry when lighting changes
X otherwise lights apply to the entire scene
X https://github.com/processing/processing/issues/3533
0238 (3.0a11)
X add note about headless exceptions that points to Github
X resize children[] so that getChildren() returns a correctly-sized array
X https://github.com/processing/processing/issues/3347
X show warning when display spanning is turned off with fullScreen(SPAN)
X defaults read com.apple.spaces spans-displays
X https://github.com/processing/processing/issues/3381
X add javaPlatform variable (i.e. 7 or 8)
X clear() seems to be broken (maybe related to 3317)
X https://github.com/processing/processing/issues/3378
X PGraphic ignores PNG transparency (regression from 3.0a5)
X https://github.com/processing/processing/issues/3317
X (same issue as 3378)
X move error messages out of PConstants (into PApplet? PGraphics?)
o replace sketchXxxx() methods with another mechanism?
o and an internal dictionary that stores them all?
o intParam(), stringParam() and setParam()?
o or sketchInt() or settingsInt()?
o surface.size(), surface.noSmooth()... just like PGraphics methods?
o make final to move folks away from these?
o or is this a bad move until we've sorted out Android?
X HashMap sucks b/c we'd have to cast everything
X doesn't help to have intParam() etc, too many types (5ish? OutputStream)
X just stick with the current setup
X remove launch(String) since it was calling itself, and anachronistic
X sketches with new fullScreen() method should grab focus by default
X https://github.com/processing/processing/issues/3380
X sketches not getting focus with Java2D
X https://github.com/processing/processing/issues/3389
X draw() executes twice when noLoop() called in setup()
X https://github.com/processing/processing/issues/3310
X broken since 3.0a7, but not in 3.0a5
o pixelDensity(BEST)? (messes with pixels, but for most sketches, helpful)
X nixed by Casey for now
X displayDensity() not functioning properly
X https://github.com/processing/processing/issues/3436
X surface.setXxx() handling
X https://github.com/processing/processing/issues/3388
X setResizable, setVisible, setTitle
X setIconImage(java.awt.Image) -> take a PImage instead?
o removeNotify(), addNotify()
X setUndecorated(boolean)
X setting menubar will be surface-specific
X setLocation(int, int) and setSize(int, int)
X add the "don't use this" warning to the JFrame in PSurfaceAWT
X ArithmeticException: / by zero when using fonts opened with loadFont()
X https://github.com/processing/processing/issues/3413
X SVG briefly broken for Java2D
X https://github.com/processing/processing/issues/3417
X change how font metrics are pulled to fix text width issues
X check alpha when image extension is "unknown"
X https://github.com/processing/processing/issues/3442
X add support for more Image types (BGR) with PImage(java.awt.Image) constructor
X move Java2D and JavaFX classes to their own packages
threading headaches
X sketch not always showing with empty draw()
X https://github.com/processing/processing/issues/3363
X static mode broken with Java2D on Windows and Linux
X https://github.com/processing/processing/issues/3315
X sketch sometimes doesn't show with noLoop() on Linux
X https://github.com/processing/processing/issues/3316
X Window never shows with exported application on 64-bit Linux
X https://github.com/processing/processing/issues/3303
X present mode is now broken
o still some spinning when sketches break
X fixed because we're back off the EDT
o settings() is probably not showing exceptions since we're back to the EDT
o can't call handleSettings() on the anim thread since it sets the surface
o so maybe the first part is on the EDT, but other threads run this stuff
X remove the init() method
cleaning
o possible addition for 'implementation' variable
X http://code.google.com/p/processing/issues/detail?id=281
X https://github.com/processing/processing/issues/320
X closing as wontfix
retina fixes
X make g.pixelDensity public inside PApplet (so accessible by sketches)
o or is it akin to g.fill and the rest?
X it's in PApplet, but not public.. will be the same as g.pixelDensity
X add pixelWidth/Height to PApplet
X add setSize() method for surfaces
X tricky cuz we'll need a getter/setter when surface messes w/ things
text/fonts
X Text looks blurry in GL Retina
X https://github.com/processing/processing/issues/2739
X text not getting the correct font in Retina2D
X https://github.com/processing/processing/issues/2617
X Text is half size in PGraphicsRetina2D
X https://github.com/processing/processing/issues/2738
andres/opengl
X ortho function is broken
X https://github.com/processing/processing/issues/1278
X errors with loading SVGs in P3D/P2D
X https://github.com/processing/processing/issues/3379
X sketch window briefly appears on top left corner when using OpenGL
X https://github.com/processing/processing/issues/3308
X add attrib() method
X https://github.com/processing/processing/issues/2963
X andres needs input on how the api works
o assign this to DXF as well?
X beginShape(POINTS) don't show up in P2D
X https://github.com/processing/processing/issues/3029
contribs
X Fix NullPointerException in DepthSorter
X https://github.com/processing/processing/pull/3410
fixed earlier
X sketch window is not placed at correct location when running a second time
X https://github.com/processing/processing/issues/3125
X full screen needs to ignore prev location setting for frame?
X https://github.com/processing/processing/issues/3305
X save() and saveFrame() with 2X renderers fails
X https://github.com/processing/processing/issues/3255
X NPE when using image() created with createGraphics(PGraphicsRetina2D)
X https://github.com/processing/processing/issues/2510
X Closing OpenGL sketch from the PDE doesn't stop java.exe process
X https://github.com/processing/processing/issues/2335
cleaning
o keep Danger2D?
o can't do version that draws to BufferStrategy directly
o pixel operations (get/set/loadPixels/saveFrame) might be fixable
o but can't re-run draw() to re-blit the screen
o because we don't split calc() and draw()
o even with the split, handleDraw() might need to live in PSurface
o add calc() option? this could ease transition
X decided to put efforts into JavaFX
0237 (3.0a10)
X retain original java.awt.Frame when it's available from PSurfaceAWT
X set frame icon images for Java2D (dock and cmd-tab)
X https://github.com/processing/processing/issues/257
X strokeWeight() in setup() not working for default renderer
X https://github.com/processing/processing/issues/3331
breaking api
X re-opened the Gates of Hell by adding chaining operations to PVector
X https://github.com/processing/processing/issues/257
o add chaining operations to XML and JSON
X exec() and open() to use varargs
X changed exec() to use varargs for convenience
X cross-language awkwardness
X python has to use launch() instead of open()
X changed open() to launch() to fix conflicts in Python (and elsewhere?)
o map() is bad for Python and JavaScript
api decisions
o min() and max() to use varargs
o https://github.com/processing/processing/issues/3027
X not enough use cases here to make sense
o join() to use varargs
X handling this in the Int/Float/StringList constructors instead
X users can call new StringList(...).join(",") instead
X make join() work with Iterable or Object... or both?
X will this collide with the current String[] version?
o remove OPENGL constant (tell people to use P3D or P2D)
X breaks too much code without really helping anything
o break PUtil out from PApplet
o pro: weird to call PApplet for things like hex/join/etc
o con: still lots of things like selectFolder() that need GUI
X final: not enough functions to split out to have it truly make sense
X or rather, doesn't clean up enough code that the mess is worthwhile
smooth and noSmooth