forked from jgraph/drawio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
8422 lines (5653 loc) · 200 KB
/
ChangeLog
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
22-NOV-2020: 13.10.1
- Adds File, Embed, Notion
18-NOV-2020: 13.10.0
- Internal release for Github actions testing
- Conf Cloud: Viewer settings direct from the viewer
- Conf Cloud: Adds custom libraries to more shapes dialog
15-NOV-2020: 13.9.9
- Improves Lucidchart import
13-NOV-2020: 13.9.8
- Improves Lucidchart import
12-NOV-2020: 13.9.7
- Allows null in init load message
11-NOV-2020: 13.9.6
- Uses GitHub for help and FAQ
11-NOV-2020: 13.9.5
- Fixes license check in Confluence Cloud
11-NOV-2020: 13.9.4
- Adds descriptor to JSON load message
- Uses mxGraph 4.2.3 beta 4
10-NOV-2020: 13.9.3
- Internal release to update conf cloud manifest
04-NOV-2020: 13.9.2
- Improves Lucidchart import
- Uses mxGraph 4.2.3 beta 3
04-NOV-2020: 13.9.1
- Improves Lucidchart import
04-NOV-2020: 13.9.0
- Disables Trello in IE11
- Uses mxGraph 4.2.3 beta 2
03-NOV-2020: 13.8.9
- Adds block overflow cell style
- Uses mxGraph 4.2.3 beta 1
30-OCT-2020: 13.8.8
- Fixes for teams integration
- Fixes conf cloud caching issue when 3rd party cookies are disabled
29-OCT-2020: 13.8.7
- Fixes hideDialog order issue on pressing OK
- Fixes native files in Chrome 86
28-OCT-2020: 13.8.6
- Uses mxGraph 4.2.2
- Performance improvements for Jira Cloud
- MS teams integration
27-OCT-2020: 13.8.5
- Fixes possible NPE in Confluence Cloud
27-OCT-2020: 13.8.4
- Performance improvements for Confluence Cloud
26-OCT-2020: 13.8.3
- Gliffy import improvements
- Updates Spanish translations
24-OCT-2020: 13.8.2
- Lucidchart import improvements
- Fixes ungrouping action
- Uses mxGraph 4.2.1 beta 22
20-OCT-2020: 13.8.1
- Lucidchart import improvements
- Gliffy import improvements
- Uses mxGraph 4.2.1 beta 21
14-OCT-2020: 13.8.0
- App Engine configuration changes
- Uses mxGraph 4.2.1 beta 20
08-OCT-2020: 13.7.9
- Fixes script load order for electron
07-OCT-2020: 13.7.8
- Uses mxGraph 4.2.1 beta 19
- Uses MathJax 2.7.9
30-SEP-2020: 13.7.7
- Updates Finnish translations, credit Arttu Ylhävuori, github.com/areee
- Updates native File API tokens
- Lucidchart import improvements
- Fixes gradient issues in FF
- Uses mxGraph 4.2.1 beta 18
28-SEP-2020: 13.7.6
- Updates Azure icons
23-SEP-2020: 13.7.5
- Removes document.write for modern browsers
22-SEP-2020: 13.7.4
- Appends splash dialog libs to configured libs
17-SEP-2020: 13.7.3
- Moves viewer to viewer.diagrams.net
- Improves shape picker position
- Uses mxGraph 4.2.1 beta 17
16-SEP-2020: 13.7.2
- Removes PWA on draw.io domains
14-SEP-2020: 13.7.1
- Improves Gliffy import
14-SEP-2020: 13.7.0
- Adds conf cloud change notifications for collab
- Adds Cmd+Click for blue arrow on macOS
- Uses mxGraph 4.2.1 beta 17
11-SEP-2020: 13.6.10
- Adds Shift+Delete/Backsapce to clear labels
- Uses mxGraph 4.2.1 beta 16
08-SEP-2020: 13.6.9
- Fixes inline images in cell styles
08-SEP-2020: 13.6.8
- Fixes use of unsupported function in IE
08-SEP-2020: 13.6.7
- Normalizes spaces in uncompressed XML output
- Adds context menu for shape search results
- Minor fixes for custom fonts
- Uses mxGraph 4.2.1 beta 15
31-AUG-2020: 13.6.6
- Removes PWA for www.draw.io
- Improves Gliffy import
24-AUG-2020: 13.6.5
- Corrects classpath for CacheFacade
20-AUG-2020: 13.6.4
- Adds Shift/Ctrl+Cursor to move/select pages
- Fixes orientation of screen page formats
- Adds allowZoomOut switch in GraphViewer
18-AUG-2020: 13.6.3
- Handles extra HTML content on Sharepoint
- Fixes origin after folding in viewer
08-AUG-2020: 13.6.2
- Fixes origin for online PDF export
07-AUG-2020: 13.6.1
- Improves Lucidchart importer
- GAE stub fixes
05-AUG-2020: 13.6.0
- Uses mxGraph 4.2.1 beta 14
- Fixes mouse zoom bug
03-AUG-2020: 13.5.9
- Adds pinch to zoom on Windows and Android
- Uses mxGraph 4.2.1 beta 13
31-JUL-2020: 13.5.8
- Fixes tooltip for rotation handle
- Fixes edit as blank in lightbox
- Lucidchart import improvements
- Uses mxGraph 4.2.1 beta 12
- Improves shape picker
30-JUL-2020: 13.5.7
- Faster autosave in Google Drive
30-JUL-2020: 13.5.6
- Uses mxGraph 4.2.1 beta 11
- Performance improvements
29-JUL-2020: 13.5.5
- Uses mxGraph 4.2.1 beta 10
- Enables links in tooltips
- Adds layout JSON action
28-JUL-2020: 13.5.4
- Adds handle for cube and cylinder shape
- Adds metadata to C4 shapes
- Uses mxGraph 4.2.1 beta 9
24-JUL-2020: 13.5.3
- Fixes print in static viewer
24-JUL-2020: 13.5.2
- Fixes viewer links
- Uses mxGraph 4.2.1 beta 8
22-JUL-2020: 13.5.1
- Removes official Azure icons for licensing reasons
22-JUL-2020: 13.5.0
- Restores cloning of rows with blue arrows
- Fixes ungroup for multiple groups
- Uses mxGraph 4.2.1 beta 7
20-JUL-2020: 13.4.9
- Fixes handling of built-in plugins
- Uses mxGraph 4.2.1 beta 6
19-JUL-2020: 13.4.8
- Fixes SHA for inline script
19-JUL-2020: 13.4.7
- Improves target detection for blue arrows
- Improves shape selection on touch devices
- Uses mxGraph 4.2.1 beta 5
17-JUL-2020: 13.4.6
- Simplified Start Screen
16-JUL-2020: 13.4.5
- Fixes ignored right meta key on macOS
15-JUL-2020: 13.4.4
- Fixes shape picker container insert
- Adds diagram styles
14-JUL-2020: 13.4.3
- Adds shape selection on blue arrow click
10-JUL-2020: 13.4.2
- Adds shape selection on double click
- Fixes browser storage dialog
09-JUL-2020: 13.4.1
- Disables eval in HTML embed code
08-JUL-2020: 13.4.0
- Adds border for lightbox export
- Uses mxGraph 4.2.1 beta 4
- Adds Diagram Style panel
04-JUL-2020: 13.3.9
- Fixes ignored autosave for native files
03-JUL-2020: 13.3.8
- Adds experimental file system support
02-JUL-2020: 13.3.7
- Fixes image export with sketch style
- Uses mxGraph 4.2.1 beta 3
01-JUL-2020: 13.3.6
- Fixes transparent background event handling for sketch style
- Moves row for dragging selected table cell
- Fixes inconsistent cursors for tables
- Adds drag and drop for tables
- Uses mxGraph 4.2.1 beta 2
- Adds new basic templates
- Adds rows in ER sidebar
- Adds edit dialog style
25-JUN-2020: 13.3.5
- Fixes minor bugs
24-JUN-2020: 13.3.4
- Fixes minor bugs
24-JUN-2020: 13.3.3
- Fixes move for tables with selected rows
- Fixes flex arrow custom handle preview
- Fixes ignored zoom for step perimeter
- Uses mxGraph 4.2.1 beta 1
24-JUN-2020: 13.3.2
- Fixes sketch style for partial rectangles
- No longer replaces comic style
23-JUN-2020: 13.3.1
- Adds rough style and URL parameter
- Adds support for viewbox in link actions
- Adds hide-pages, viewbox URL parameters
- Uses mxGraph 4.2.1
19-JUN-2020: 13.3.0
- Adds ok for prompt JSON message
- Adds prompt-cancel JSON event
- Uses mxGraph 4.2.0
17-JUN-2020: 13.2.6
- Fixes caching issues for Confluence Cloud
17-JUN-2020: 13.2.5
- Adds embed.diagrams.net for embed mode
- Adds Alt+Shift to toggle child cells
- Fixes toggle selection for groups
- Uses mxGraph 4.2.0 beta 10
13-JUN-2020: 13.2.4
- Uses tables in Misc and ER sidebar
- Adds table size in Arrange panel
- Uses mxGraph 4.2.0 beta 9
11-JUN-2020: 13.2.3
- Uses base for fonts in SVG export
- Fixes font URL trimming
11-JUN-2020: 13.2.2
- Fixes relative fonts in SVG export
- Uses mxGraph 4.2.0 beta 8
- Parsing improvements
- Adds table shape
09-JUN-2020: 13.2.1
- Fixes bug when pasting HTML
- Parsing improvements
09-JUN-2020: 13.2.0
- Fixes WebKitBlobResource on iOS
- Parsing improvements
03-JUN-2020: 13.1.14
- Fixes math font weight for PDF export
- Stability improvements
02-JUN-2020: 13.1.13
- Fixes caching for HTML embed code
- Fixes copy paste from other apps
- Fixes math client-side printing
- Adds math-output URL parameter
- Adds custom table properties
- Uses mxGraph 4.2.0 beta 7
01-JUN-2020: 13.1.12
- Uses mxGraph 4.2.0 beta 6
- Adds tables to Misc sidebar
- Fixes OS clipboard in Firefox
31-MAY-2020: 13.1.11
- Stability improvements and bug fixes
31-MAY-2020: 13.1.10
- Fixes minor bugs for tables
30-MAY-2020: 13.1.9
- Fixes insert tables on touch devices
- Adds Feature-Policy header
29-MAY-2020: 13.1.8
- Removes CSP from GAE config
29-MAY-2020: 13.1.7
- Adds multiple edge labels in CSV import
- Adds experimental support for tables
- Adds Content-Security-Policy header
- Adds link button in library dialog
- Uses mxGraph 4.2.0 beta 5
27-MAY-2020: 13.1.6
- Fixes Gliffy popup issue
27-MAY-2020: 13.1.5
- Adds CSP restrictions
27-MAY-2020: 13.1.4
- Adds dark export option in dark mode
- Adds Euskadi translations
- Uses mxGraph 4.2.0 beta 4
- Adds openLink JSON event
- Adds %id% placeholder
19-MAY-2020: 13.1.3
- Adds merge JSON message
15-MAY-2020: 13.1.2
- Fixes ignored compressXml for empty embed data
- Fixes encoded XML in export JSON event
- Adds XML in JSON load event
- Uses mxGraph 4.2.0 beta 3
12-MAY-2020: 13.1.1
- Adds noExitBtn option for embed mode
- Fixes group selection model
- Uses mxGraph 4.2.0 beta 2
11-MAY-2020: 13.1.0
- Adds support for pointer events in swimlanes
- Adds message in export/template response
- Adds grid to certain custom handles
- Changes to the selection model
- Uses mxGraph 4.2.0 beta 1
07-MAY-2020: 13.0.9
- Adds patch chain validation for real time
05-MAY-2020: 13.0.8
- Adds ctrl+enter for table cells
05-MAY-2020: 13.0.7
- Uses mxGraph 4.1.2 beta 6
03-MAY-2020: 13.0.6
- Disables deltas for OneDrive real time
- Adds token for Google Drive real time
01-MAY-2020: 13.0.5
- Import Extension code updated
30-APR-2020: 13.0.4
- Adds support for vss(x) via clibs parameter
- Fixes inserting file to empty GitLab repo
- Fixes drop vss file into library dialog
- Fixes event handling for iPadOS 13.4.1
- Uses mxGraph 4.1.2 beta 5
29-APR-2020: 13.0.3
- Lucidchart import improvements
27-APR-2020: 13.0.2
- Fixes print output in dark mode
- Preserves pasted text colors
- Adds math-font URL parameter
21-APR-2020: 13.0.1
- Replaces HTML-CSS MathJax output files
- Forces loading MathJS locally in export server/Desktop
21-APR-2020: 13.0.0
- Redirects old desktop versions
- Fixes Edit menu in Chrome app
- Uses SVG for math typesetting
- Uses mxGraph 4.1.2 beta 4
16-APR-2020: 12.9.14
- Renamed jscolor to mxJSColor to avoid clash
15-APR-2020: 12.9.13
- Adds file properties dialog
14-APR-2020: 12.9.12
- Adds edit style to context menu
- Fixes moving cells in stacks
11-APR-2020: 12.9.11
- Fixes edge label default style
- Improves Lucidchart import
08-APR-2020: 12.9.10
- Fixes toggle selection for cells in containers
- Fixes copy paste of cells in Firefox
- Improvements for Lucidchart import
- Uses mxGraph 4.1.2 beta 3
07-APR-2020: 12.9.9
- Uses mxGraph 4.1.2 beta 2
- Removes Google image search
- Removes photos URL parameter
- Fixes pasting links and data URIs
- Fixes Sharepoint sites in OneDrive picker
- Workaround for lightbox in Jira Service desk
- Adds center option for Confluence Cloud viewer
- Replaces Home with Shift+Home, Ctrl+H with Home
05-APR-2020: 12.9.8
- Fixes formatting for pasted text
- Uses mxGraph 4.1.2 beta 1
03-APR-2020: 12.9.7
- Optional size, position and angle panels
- Improvements for Lucidchart import
- Adds combo box for extensions
- Uses mxGraph 4.1.2 beta 1
31-MAR-2020: 12.9.6
- Improvements for Lucidchart import
- Fixes CORS errors for some icons
- Fixes ER shapes for dark mode
- Uses mxGraph 4.1.1
30-MAR-2020: 12.9.5
- Uses mxGraph 4.1.1 beta 16
- Fixes some shapes
29-MAR-2020: 12.9.4
- Adds delegating connector and half circle markers
- Improvements for Lucidchart import
- Enables cloud storage in PWA
- Uses mxGraph 4.1.1 beta 15
25-MAR-2020: 12.9.3
- Fixes update of filename placeholder
- Improvements for Lucidchart import
- Fixes minor issues with layouts
24-MAR-2020: 12.9.2
- Adds filename placeholder
- Fixes Gliffy import
24-MAR-2020: 12.9.1
- Fixes insert HTML table from text panel
23-MAR-2020: 12.9.0
- Fixes encoding errors in stencils.min.js
- Moves resize live preview to front
- Adds Threat Modeling shapes
- Uses mxGraph 4.1.1 beta 14
23-MAR-2020: 12.8.9
- Adds Lucidchart import feedback
- Adds search for all pages
- Adds new polygon shapes
18-MAR-2020: 12.8.8
- Improvements to localStorage migration
- Improvements to AWS shapes
17-MAR-2020: 12.8.7
- Improvements to localStorage migration
- Fixes align and distribute buttons in Arrange panel
- Improvements for Lucidchart import
17-MAR-2020: 12.8.6
- Migrates localStorage from draw.io to diagrams.net
- Fixes XML embedding within PDFs
14-MAR-2020: 12.8.5
- Fixes drag and drop of images to containers in Firefox
- Adds (Alt+)Shift+Tab for outdent/indent while editing
- No longer selects moved cells after undo/redo
- Reduces number of automatic layout runs
- Merges PWA into online app
- Uses mxGraph 4.1.1 beta 13
11-MAR-2020: 12.8.4
- Changes canonical URL to app.diagrams.net
11-MAR-2020: 12.8.3
- Switches to PlantUML build 1.2020.2
- Adds app.diagrams.net support for onedrive and cache responses
- Fixes infinite resizing of viewer in conf cloud
- Uses all layers for drop target selection
- Uses mxGraph 4.1.1 beta 12
09-MAR-2020: 12.8.2
- Fixes Confluence Cloud lightbox and Jira Cloud editor iFrame resize
05-MAR-2020: 12.8.1
- Fixes Confluence Cloud editor iFrame resize
05-MAR-2020: 12.8.0
- Fixes PDF export for multiple page formats
- Fixes PDF export page variable placeholder
- Disables drop shadow in Safari browser
- Changes name to diagrams.net
27-FEB-2020: 12.7.9
- Fixes update of indicator shapes
- Uses mxGraph 4.1.1 beta 11
- Adds diagrams.net banner
26-FEB-2020: 12.7.8
- Adds logging for Confluence cloud errors
- Adds global error dialog
26-FEB-2020: 12.7.7
- Adds error logging for Confluence and Jira cloud
25-FEB-2020: 12.7.6
- Fixes NPE in viewer
25-FEB-2020: 12.7.5
- Fixes removed contentID macro parameter in Confluence cloud
- Adds recursive resize for size change in Arrange panel
- Disables drop target for composite BPMN/UML shapes
- Fixes missing tree move icon
21-FEB-2020: 12.7.4
- Changes Google picker to support team drives
- Fixes crop for imported files
21-FEB-2020: 12.7.3
- Fixes caching of Google fonts
19-FEB-2020: 12.7.2
- Removes HTML 5 application cache
- Adds Alt+Click for sidebar items
- Fixes rounding for page guides
- Adds language support for PWA
- Uses mxGraph 4.1.1 beta 10
17-FEB-2020: 12.7.1
- DropTarget style has precedence over container
- Replaces UML module shape
- Uses mxGraph 4.1.1 beta 9
13-FEB-2020: 12.7.0
- Adds dropTarget style property
- Adds Insert, Advanced, Mermaid
12-FEB-2020: 12.6.8
- Ignores drafts with mode parameter
- Adds Arrange, Layout, Org Chart
- Fixes GitLab authentication
- Uses mxGraph 4.1.1 beta 8
10-FEB-2020: 12.6.7
- Fixes clipping for edge labels in PDF output
- Uses mxGraph 4.1.1 beta 7
- Adds draft states
07-FEB-2020: 12.6.6
- Searches collapsed custom libraries
- Fixes configured default libraries
- Adds tags to configured libraries
- Uses auth header for Google Drive
- Uses mxGraph 4.1.1 beta 6
04-FEB-2020: 12.6.5
- Adds expand style for containers
- Adds warning for fallback labels
- Improvements for CSV import
- Uses mxGraph 4.1.1 beta 5
- Adds new AWS 19 shapes
02-FEB-2020: 12.6.4
- Uses mxGraph 4.1.1 beta 4
- Fixes possible NPE
02-FEB-2020: 12.6.3
- Updates move preview after key events
- Fixes rounding errors for routing
- Uses mxGraph 4.1.1 beta 3
30-JAN-2020: 12.6.2
- Fixes WebKitBlobResource error on iOS
- Adds layers for VSDX export
- Uses mxGraph 4.1.1 beta 2
28-JAN-2020: 12.6.1
- Adds new Veeam shapes
28-JAN-2020: 12.6.0
- Fixes aspect dialog incorrect layers
25-JAN-2020: 12.5.8
- Fixes possible NPE in OneDrive client
25-JAN-2020: 12.5.7
- Fixes access to OneDrive Sharepoint folders
- Creates fewer revisions in Google Drive
- Uses mxGraph 4.1.1 beta 1
- Uses PlantUML 2019.7
22-JAN-2020: 12.5.6
- Fixes offline download for mobile Safari
- Fixes newlines in custom shape editor
- Uses mxGraph 4.1.0 pre 6
- Adds movableLabel style
16-JAN-2020: 12.5.5
- Fixes inconsistent label wrapping
- Uses mxGraph 4.1.0 pre 5
15-JAN-2020: 12.5.4
- Adds PWA install prompt handler
14-JAN-2020: 12.5.3
- Fixes line height in labels
- Uses mxGraph 4.1.0 pre 4
14-JAN-2020: 12.5.2
- Adds option to include XML in PDF
- Replaces app cache with PWA
- Uses mxGraph 4.1.0 pre 3
09-JAN-2020: 12.5.1
- Fixes label offsets in viewer
- Uses mxGraph 4.1.0 pre 2
07-JAN-2020: 12.5.0
- Enables reflow in HTML output
- Fixes text rendering issues
- Uses mxGraph 4.1.0 pre 1
- Adds Galician language
06-JAN-2020: 12.4.9
- Adds support for multiple redirect URLs in token-based-auth
31-DEC-2019: 12.4.8
- Adds referrer policy header
- Uses mxGraph 4.0.6 beta 16
27-DEC-2019: 12.4.7
- Fixes bug for loading viewer in Confluence Cloud
27-DEC-2019: 12.4.6
- Fixes mobile Safari in desktop mode
- Uses mxGraph 4.0.6 beta 15
27-DEC-2019: 12.4.5
- Uses mxGraph 4.0.6 beta 14
- Fixes possible NPE
27-DEC-2019: 12.4.4
- Fixes proxy URL for Confluence Cloud lightbox
- Fixes possible text wrapping for SVG export
- Adds custom fonts for embedded SVG files
- Pass-through OTF fonts in proxy servlet
- Adds basic diagram templates
- Uses mxGraph 4.0.6 beta 13
17-DEC-2019: 12.4.3
- Uses fast zoom preview on iOS
- Uses mxGraph 4.0.6 beta 12
14-DEC-2019: 12.4.2
- Improves move/resize preview and guides
- Adds pinch to zoom for macOS trackpad
- Disables drop style for swimlanes
- Adds anchor points for corners
- Fixes edge label move preview
- Uses mxGraph 4.0.6 beta 11
12-DEC-2019: 12.4.1
- Fixes initial key state for cloning
- Uses mxGraph 4.0.6 beta 11
12-DEC-2019: 12.4.0
- Adds Catalan translations, credit Pere Orga [email protected]
- Fixes drag cells to library, subtree moving live preview
- Fixes conf cloud gliffy mass import paging bug
- Uses mxGraph 4.0.6 beta 10
09-DEC-2019: 12.3.9
- Fixes NPE in Lucidchart import
- Adds check for empty layerID array in GraphViewer
06-DEC-2019: 12.3.8
- Improves Gliffy import of nested links
- Adds pageID target export selection in Confluence Cloud
05-DEC-2019: 12.3.7
- Fixes handling of clipboard data
- Uses mxGraph 4.0.6 beta 9
03-DEC-2019: 12.3.6
- Moves rotation handle to top right corner
- Adds faster mouse wheel zoom
- Uses mxGraph 4.0.6 beta 8
02-DEC-2019: 12.3.5
- Fixes deletion bugs causing search incorrect results in Jira Cloud
- Fixes text alignment for block elements
02-DEC-2019: 12.3.4
- Fixes Gliffy global text size setting on import
- Fixes settings override with configuration
- Adds custom fonts in print output
28-NOV-2019: 12.3.3
- Adds more ERD shapes
27-NOV-2019: 12.3.2
- Fixes moving and resizing on iOS 13
- Uses mxGraph 4.0.6 beta 8
26-NOV-2019: 12.3.1
- Fixes PDF export with math typesetting
25-NOV-2019: 12.3.0
- Fixes client-side math export in Firefox
- Uses mxGraph 4.0.6 beta 7
21-NOV-2019: 12.2.9
- Fixes autosize for font size and style changes
- Adds PDF extension check in save dialog
- Fixes callback error in embed mode
- Uses mxGraph 4.0.6 beta 6
21-NOV-2019: 12.2.8
- Removes state URL parameter
19-NOV-2019: 12.2.7
- Adds #_CONFIG_ hash property for configuration via URL
- Fixes for external font support
- Adds Extras, draw.io Configuration menu
- Adds Link item in page context menu
13-NOV-2019: 12.2.6
- Reverts Google auth change in 12.2.5
13-NOV-2019: 12.2.5
- Add external font support
- Adds configuration option in local storage
12-NOV-2019: 12.2.4
- Updates IBM stencils
- Fixes Lucidchart import NPE
- Adds pools and lanes in BPMN General library
- Adds client-side SVG and PNG export for math
08-NOV-2019: 12.2.3
- Improves stencils in dark mode
- Removes electron useragent check
- Fixes shifted text labels in PDF with math
- Adds clipping for print output
- Uses mxGraph 4.0.6 beta 5
06-NOV-2019: 12.2.2
- Fixes NPE in pasteCells
06-NOV-2019: 12.2.1