-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathdone.txt
More file actions
6934 lines (6278 loc) · 313 KB
/
done.txt
File metadata and controls
6934 lines (6278 loc) · 313 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
0270 (3.5.4)
no changes
0269 (3.5.3)
X fix/clean a few file i/o issues
X deal with possible resource leak when loading URLs
X create intermediate folders when saving temp files
X fix resource leaks (open files) in loadJSONObject and loadJSONArray
X get rid of errant 'Could not parse -1 for display' message
contrib
X Update missing @Deprecated tags in PApplet.java
X https://github.com/processing/processing/pull/5686
0268 (3.5.2)
X Ctrl-click on Mac OS X result in all subsequent clicks reported as right-click
X https://github.com/processing/processing/issues/5765
X https://github.com/processing/processing/pull/5766
0267 (3.5.1)
X no changes to core in this release
0266 (3.5)
X fix javaPlatform variable for newer JDK versions
X https://github.com/processing/processing/pull/5626
o many fonts installed causes slow startup on macos
o run that on a thread, and make sure default font doesn't need the list loaded
X can't be done, notes in the code for PFont.loadFonts()
X improve startup time when user-specified fonts are not used
X default font will be faster, using ttf/otf is fine
X only createFont("The Font Name") is still slow on macOS
X and PFont.list()
o check again whether element 0,0 in a Table is working
X https://github.com/processing/processing/issues/3011
X was already checked, made a note and locked the issue
api changes
X Dict.remove() should return value, not index (for consistency w/ others)
X returns the value removed, not the key, just like remove(key)
X rationale being that if you know the index, you probably know the key
X if unavailable, throw an exception; otherwise no consistent way to indicate error
X add circle() and square()
X add push() and pop()
X make JSONObject.quote() (both versions) public
X should DoubleDict create from Iterable or Map<>?
o (Map is more efficient b/c of size, Iterable more useful)
X Iterable of what, though? Map.Entry?
X sticking with just the Map<> version for now
contrib
o make tabs into spaces, fixes pixelDensity(2) issue with tabs
o https://github.com/processing/processing/issues/5625
o https://github.com/processing/processing/pull/5633
X had to back this fix out again
X Fixes blend mode not being set correctly, fixing #5645
X https://github.com/processing/processing/issues/5645
X https://github.com/processing/processing/pull/5647
X extended SVG support
X https://github.com/processing/processing/pull/4168
X show a warning when a font isn't what the user expected
X https://github.com/processing/processing/issues/5481
X https://github.com/processing/processing/pull/5605
gohai
X Profile GL3bc is not available on X11GraphicsDevice
X https://github.com/processing/processing/issues/5476
X https://github.com/processing/processing/pull/5652
andres
X silence TIS/TSM warning message with P2D/P3D/OPENGL since macOS 10.13.4
X https://github.com/processing/processing/issues/5462
X improve matrix performance in P2D/P3D
X https://github.com/processing/processing/issues/5685
X Initializing textures loads the pixels array, even if not needed aferwards
X https://github.com/processing/processing/issues/5748
X Processing 3.4 takes 60 seconds before can edit file
X https://github.com/processing/processing/issues/5707
X skip Android's SDK folder when adding sketches
X https://github.com/processing/processing/commit/5b653263cc6151f838c11a61689d756901c11e37
X PShape.attrib() and PShape.setAttrib() are not working
X https://github.com/processing/processing/issues/5560
jakub
X Fix freeze when restarting sketch with variables in size
X https://github.com/processing/processing/pull/5708
X Make sure Ctrl+Left Mouse on MacOS is consistent
X https://github.com/processing/processing/issues/5672
X https://github.com/processing/processing/pull/5674
X Stop frame rate counter from exaggerating
X https://github.com/processing/processing/pull/5697
X Fix vertex buffer initialized with wrong number of components
X https://github.com/processing/processing/pull/5698
X Recreate FBOs when offscreen PGraphicsOpenGL is resized
X https://github.com/processing/processing/pull/5699
cleaning
o WARNING: GL pipe is running in software mode (Renderer ID=0x1020400)
o is this coming from us? if so, need to provide actions
X haven't seen for a while, maybe fixed
X figure our size(img.width, img.height) situation
X just make loadImage() work in settings
X update the wiki and reference
o update wiki/docs to say "don't override sketchXxxx() methods"
o size() command not working to do a resize
X need a programmatic way to set size
o check on performance of the new EDT setup
X present mode is 30-40% slower than windowed
X w/ this example: https://github.com/processing/processing/issues/2423
0265 (3.4)
X change lack of blendMode() to a warning rather than an error in PDF
X rewrite exec() to do threads, also handle fast/excessive output cases
X rewrite requestImage() to fix errors/slowness/concurrency problems
data classes
X add Double and Long versions of the data classes
X also add subset(long) and subset(double) to PApplet
X change Sort class to use int for comparisons
X sort only uses the sign of the value
X more accurate than float, especially when using double and long values
X consistently implement write(PrintWriter) in the List and Dict classes
X add save(File) to the List and Dict classes
X prevent Table.sort() from throwing NPE with empty cells
jakub
X Semi-transparent colors do not display properly in PGraphics
X https://github.com/processing/processing/issues/5519
X Semi-transparent colors do not display properly in PGraphics
X https://github.com/processing/processing/issues/5519
X https://github.com/processing/processing/pull/5522
gohai
X Various ARM-related updates
X https://github.com/processing/processing/pull/5440
X make P3D work on Linux SBCs using ARM Mali graphics and their ES 3.1 driver
X https://github.com/processing/processing/pull/5475
contrib
X Fixed a crash occuring while loading certain SVGs exported from Illustrator
X https://github.com/processing/processing/pull/5526
X Support PShape.contains() on GROUP objects
X https://github.com/processing/processing/pull/5550
X Improve implementation of PShape.contains() to take the CTM into account
X https://github.com/processing/processing/pull/5549
0264 (3.3.7)
X fix exception due to version parsing in Java 9
X https://github.com/processing/processing/issues/5275
X remove useless deprecation on PImage.mask(int[])
X set colorModeDefault to true by default
X blendMode() with PDF isn't showing the warning about it not being available
X add blendMode() to nope() calls in PGraphicsPDF
X https://github.com/processing/processing/issues/5105
X Table.insertRow() causes ArrayIndexOutOfBoundsException (with fix)
X https://github.com/processing/processing/issues/5406
data
X added setIndex() method to IntDict, FloatDict, StringDict
X added resize() to IntDict, FloatDict, StringDict
X fix entries() Iterator in IntDict, FloatDict, StringDict
contrib
X minor bezierPoint() rewrite for performance
X https://github.com/processing/processing/pull/5251
X void cursor() don't work after void noCursor() in P2D and P3D
X https://github.com/processing/processing/issues/5330
X https://github.com/processing/processing/pull/5340
X NullPointerException on close button with P3D and noLoop
X https://github.com/processing/processing/issues/5214
X https://github.com/processing/processing/pull/5384
andres
X textureWrap() not updating when changed during draw()
X https://github.com/processing/processing/issues/5322
X cap frameRate() to 1000 in OpenGL
X https://github.com/processing/processing/issues/5404
gohai
X ARM tweaks for shaders on the RPi
X https://github.com/processing/processing/pull/5297
X Fix 3D on contemporary versions of Linux
X https://github.com/processing/processing/pull/5428
X https://github.com/processing/processing/issues/5308
jakub
X fix line joins on triangles
X https://github.com/processing/processing/issues/5353
X https://github.com/processing/processing/pull/5354
X Make un/registering methods in PApplet thread-saf
X https://github.com/processing/processing/pull/5379
0263 (3.3.6)
X lots of contribs!
gohai
X shell discussion with gohai
X https://github.com/processing/processing/pull/5082
X Workaround issues with Raspbian release August 2017
X https://github.com/processing/processing/pull/5222
jakub
X Fix bugs in line vert shader
X https://github.com/processing/processing/pull/5184
X https://github.com/processing/processing/issues/5181
X https://github.com/processing/processing/issues/5182
X https://github.com/processing/processing/issues/5183
X https://github.com/processing/processing/issues/5194
contrib
X Add workaround for window size = 0 crash
X https://github.com/processing/processing/pull/5234
X https://github.com/processing/processing/issues/5052
0262 (3.3.5)
X default to using native select on all platforms
contrib
X Add defaultFontOrDeath to OpenGL textWidth
X https://github.com/processing/processing/issues/5137
X https://github.com/processing/processing/pull/5138
0261 (3.3.4)
X add exec() with StringList options
X start to add stub for shell() function
X handle edge case for set() being called with a 2D vector, on a 3D vector
X https://github.com/processing/processing/issues/5092
o keyPressed() problems with special press-and-hold behavior macOS Sierra
X https://github.com/processing/processing/issues/4952
X added documentation in 3 places about it
jakub
X Fix keyPressed for multiple keys
X https://github.com/processing/processing/pull/5050
X https://github.com/processing/processing/issues/5049
0260 (3.3.3)
X keyPressed not returning false once a key is released
X https://github.com/processing/processing/issues/5033
X deal with loadBytes() regressions introduced by their rewrite
X (was breaking p5jsMode because of its use of loadBytes(File)
jakub
X image tint() broken in 3.3.x
X https://github.com/processing/processing/issues/5040
X https://github.com/processing/processing/pull/5042
0259 (3.3.2)
X add (far) more efficient file loading for loadBytes(File)
X add loadBytes(URL) variant that uses content length header for array size
X keyPressed is false if one key is released while multiple keys are pressed
X https://github.com/processing/processing/issues/4993
X createInput() wasn't returning null for files that were not found
X https://github.com/processing/processing/issues/5026
andres
X Assigning Pixels Vertically Flipped in P2D
X https://github.com/processing/processing/issues/5013
gohai
X improve loadBytes() performance
X https://github.com/processing/processing/pull/5027
jakub
X ArrayIndexOutOfBoundsException when using tint() or loadFont()
X https://github.com/processing/processing/issues/5028
X https://github.com/processing/processing/pull/5029
0258 (3.3.1)
X improve sum() functions in processing.data
X add sum() to IntDict and FloatDict
X add sumLong() to IntList, IntDict (to handle cases outside integer range)
X add sumDouble() to FloatList, FloatDict (to handle outside float range)
X throw exception when using sum() with numbers that are too large or small
X createInput() and createOutput() now both use buffered streams by default
X createInputRaw() does not, however
X don't derive the font again if the size is unchanged
X part of https://github.com/processing/processing/issues/4956
X fix temporary file handling for saveBytes(), saveStream(), etc
X wasn't handling gzip output properly
X also could have problems w/ names under length 3
jakub
X major work on window placement and pixel density
X https://github.com/processing/processing/pull/5011
gohai
X Fix MeshTweening vertex shader
X https://github.com/processing/processing-docs/issues/523
X https://github.com/processing/processing-docs/pull/524
X ARM: Allow Raspberry Pi's Mesa GL driver to use up to 8 lights
X https://github.com/processing/processing/pull/4915
X ...and revert it back again
X https://github.com/processing/processing/pull/4922
X Retry with multisampling disabled if creating a framebuffer fails
X because of INCOMPLETE_MULTISAMPLE
X https://github.com/processing/processing/pull/4921
X Report more error conditions in validateFramebuffer
X https://github.com/processing/processing/pull/4920
X Add more Raspberry Pi related fixes to JOGL
X https://github.com/processing/processing/pull/4911
X Unblock hardware-accelerated P3D on ARM Mali devices
X https://github.com/processing/processing/pull/5014
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