forked from yousafgill/draw.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5457 lines (3804 loc) · 141 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
16-OCT-2017: 7.5.6
- Adds IBM icons
- Disables Confluence Cloud revision checks due to saveMacro bug
10-OCT-2017: 7.5.5
- Hides tooltips for page links
- Fixes scrollwheel zooming with no scrollbars in chromeless mode
- Uses mxGraph 3.7.6 beta 3
09-OCT-2017: 7.5.4
- Adds missing page option in insert link dialog
- Fixes viewer event handling for links in labels
06-OCT-2017: 7.5.3
- Fixes Trello integration
- Fixes image cropping dialog
05-OCT-2017: 7.5.2
- Ready for new Trello integration
- Fixes for embed mode
04-OCT-2017: 7.5.1
- Updates Atlassian icons
03-OCT-2017: 7.5.0
- Updates Atlassian icons
- Improvements for Lucidchart import
- Adds toolbar and border URL parameter for chromeless mode
29-SEP-2017: 7.4.9
- Fixes ignored current page in window lightbox
- Fixes cross-origin frame access in fallback
28-SEP-2017: 7.4.8
- Adds #P for URL parameters (beta)
- Bypasses caches for proxy servlet
- Uses mxGraph 3.7.6 beta 2
- Checks existing storage file before rename
26-SEP-2017: 7.4.7
- Adds components for Trello Power-Up
25-SEP-2017: 7.4.6
- Improves Gliffy import
- Removes drag and drop handlers in lightbox
- Fixes selection state in Chrome after closing dialogs
25-SEP-2017: 7.4.5
- Improves Gliffy import
22-SEP-2017: 7.4.4
- Restores latest Dropbox SDK
- Improves CORS headers configuration
- Fixes ignored nav, highlight and page in tabbed lightbox for viewer
19-SEP-2017: 7.4.3
- Improvements for Trello integration
19-SEP-2017: 7.4.2
- Hard codes Dropbox SDK version to work around their bug
18-SEP-2017: 7.4.1
- Hides footer in embed mode
- Restores feedback form in help menu
18-SEP-2017: 7.4.0
- Removes feedback form in help menu
- Adds client-side image export in lightbox
13-SEP-2017: 7.3.9
- Fixes missing insert page tab
12-SEP-2017: 7.3.8
- Improvements to Gliffy import
08-SEP-2017: 7.3.7
- Uses mxGraph 3.7.6 beta 1
- Fixes links on shapes in print output
07-SEP-2017: 7.3.6
- Fixes overridden paths for folding icons
- Fixes subtree folding in viewer
- Fixes disabled state for edit data action
- Fixes footer plugin in chromeless mode
- Adds CSS style for read-only status
- Fixes possible editing for read-only files
01-SEP-2017: 7.3.5
- Improvements for Lucidchart import
- Hides move icon in tree and flow layouts
- Fixes collapsible action for multiple selection cells
31-AUG-2017: 7.3.4
- Adds event handling for tree and flow layouts
31-AUG-2017: 7.3.3
- Removes footer in Chrome App
- Improvements for Lucidchart import
- Fixes timing issue in number plugin
31-AUG-2017: 7.3.2
- Fixes special cases for line jumps
30-AUG-2017: 7.3.1
- Fixes folder dialog for inserting new Google Drive files
- Adds support for PNG+XML files in Chrome, Firefox and Edge
- Fixes tolerance for connection arrows on touch devices
28-AUG-2017: 7.3.0
- Fixes event handling for page links in labels
- Fixes label for page links on shapes
- Fixes folding in tree containers
- Uses mxGraph 3.7.5
25-AUG-2017: 7.2.9
- Moves clickable label links to tooltip in edit mode
25-AUG-2017: 7.2.8
- Fixes open in new window for local exports
- Fixes collapse/expand for containers
- Uses mxGraph 3.7.5 beta 14
24-AUG-2017: 7.2.7
- Fixes file usage stats
24-AUG-2017: 7.2.6
- Improvements for Lucidchart import
- Fixes possible NPEs
24-AUG-2017: 7.2.5
- Fixes possible NPE
24-AUG-2017: 7.2.4
- Adds mindmaps and orgcharts in Advanced sidebar (beta)
- Fixes page ID after import in Confluence Cloud add-on
24-AUG-2017: 7.2.3
- Fixes reset of current styles
24-AUG-2017: 7.2.2
- Adds autosave for Trello files
23-AUG-2017: 7.2.1
- Adds support for Trello attachments
23-AUG-2017: 7.2.0
- Adds support for line jumps (beta)
- Improvements for Lucidchart import
- Adds usage stats for actions
- Uses mxGraph 3.7.5 beta 13
22-AUG-2017: 7.1.10
- Fixes transistor icon set
21-AUG-2017: 7.1.9
- Adds persistent autosave setting in Electron App
- Adds File, Page Setup and Publish in Electron/Chrome App
- Fixes keyboard shortcut labels on Mac
- Changes keyboard shortcuts for connection points/arrows
18-AUG-2017: 7.1.8
- Fixes bounding box margins for vertical labels
- Uses mxGraph 3.7.5 beta 12
18-AUG-2017: 7.1.7
- Webapp opens local files in new window
- Fixes flipped, non-projected anchors
- Uses mxGraph 3.7.5 beta 11
- Changes download links
17-AUG-2017: 7.1.6
- Improvements for Lucidchart import
- Uses mxGraph 3.7.5 beta 11
- Fixes possible NPE in custom handles
17-AUG-2017: 7.1.5
- Uses mxGraph 3.7.5 beta 10
- Fixes custom handle positions for turned shapes
- Fixes image export for clipart in Electron App
- Adds close in file menu for Electron/Chrome App
- Repositions inline dialogs if window is resized
- Removes indirection for saving PDF in Electron App
- Adds export in library dialog for Chrome App
16-AUG-2017: 7.1.4
- Adds footer for Desktop Apps Facebook post
16-AUG-2017: 7.1.3
- Uses mxGraph 3.7.5 beta 9
- Uses retina icons for social media footers
16-AUG-2017: 7.1.2
- Fixes possible NPE in mxShapeBasicRectCallout shape
16-AUG-2017: 7.1.1
- Disables drafts in Confluence Cloud add-on
- Uses mxGraph 3.7.5 beta 9
- Fixes label positions, adds callout shape in general sidebar
14-AUG-2017: 7.1.0
- Improves Lucidchart import
- Improves Gliffy import
- Uses mxGraph 3.7.5 beta 8
- Fixes ignored horizontal/vertical flip for connection points
11-AUG-2017: 7.0.9
- Fixes path to clipart images for SVG export in Chrome App
- Adds perimeter for parallelogram, trapezoid, step and hexagon
11-AUG-2017: 7.0.8
- Fixes error handling in Confluence Cloud add-on
10-AUG-2017: 7.0.7
- Adds anonymize plugin (p=anon)
09-AUG-2017: 7.0.6
- Conf Cloud license changes
- Fixes for Perimeters
09-AUG-2017: 7.0.5
- Uses mxGraph 3.7.5 beta 7
- Fixes pen events for Chrome on Windows
- Adds preview for clipboard in save image dialog
- Enables drafts in Confluence Cloud add-on
08-AUG-2017: 7.0.4
- Improvements to Gliffy import
- Fixes remember option for image resize dialog
07-AUG-2017: 7.0.3
- Adds cropping for data URIs in edit image dialog
- Uses mxGraph 3.7.5 beta 6
- Adds filled edge shape in basic sidebar
- Fixes possible NPE, undefined function in Lucidchart Import
- Fixes error handling in PlantUML add-on
06-AUG-2017: 7.0.2
- Improvements to Gliffy import
- Uses filename for print preview title
04-AUG-2017: 7.0.1
- Improvements to Gliffy import
- Improvements to Lucidchart import
- Fixes PlantUML macro dialog
03-AUG-2017: 7.0.0
- Improvements to Gliffy import
- Improvements to Lucidchart import
- Sent semantic versioning on holiday
02-AUG-2017: 6.9.9
- Fixes paste from Lucidchart
31-JUL-2017: 6.9.8
- Gliffy import improvements
27-JUL-2017: 6.9.7
- Adds links to reviews in free add-ons
- Fixes preview in PlantUML add-on
26-JUL-2017: 6.9.6
- Switches to Google Cloud SDK
- Adds fishbone diagram templates in business section
24-JUL-2017: 6.9.5
- Fixes anchor links in lightbox for viewer
- Fixes event state for page links in labels
24-JUL-2017: 6.9.4
- Fixes hyperlinks in viewer
24-JUL-2017: 6.9.3
- Uses mxGraph 3.7.5 beta 5
- Add experimental support for bridges in dev mode only
24-JUL-2017: 6.9.2
- Add experimental support for bridges
- Adds fixes to VSDX export
- Minor UI fixes
19-JUL-2017: 6.9.1
- Adds open button for spreadsheets, videos, photos, maps in GDriveConnector
- Fixes import of multiple pages in Lucidchart files
18-JUL-2017: 6.9.0
- Adds import tile in splash screen
- Adds social media sharing in footer
- Uses mxGraph 3.7.5 beta 4
- Fixes Extras, Tags and Autosave in Embed mode
18-JUL-2017: 6.8.18
- Ctrl+drop for images shows size dialog to reset default
- Adds dialog before unloading modified page in embed mode
17-JUL-2017: 6.8.17
- Adds dialog for importing large images
- Fixes sorting of properties in metadata dialog for IE 11
- Fixes handling of lineHeight in IE 11
16-JUL-2017: 6.8.16
- Makes ref optional in value dialog for GitHub
- Adds undoable background color, image and page format changes
- Uses mxGraph 3.7.5 beta 3
12-JUL-2017: 6.8.15
- Fixes deleted transparent labels with spaces
- Enables resize of containers with stack layout
- Adds links option in Confluence Cloud add-on
11-JUL-2017: 6.8.14
- Fixes VSDX export for non-numeric IDs
- Fixes drag and drop to splash screen
10-JUL-2017: 6.8.13
- Adds Alt+Click to select cells behind cells
- Uses mxGraph 3.7.5 beta 2
07-JUL-2017: 6.8.12
- Updated translations
- Fixes minor bugs in Connect add-ons
06-JUL-2017: 6.8.11
- Changes initial footer link to video
03-JUL-2017: 6.8.10
- Uses mxGraph 3.7.5 beta 1
29-JUN-2017: 6.8.9
- Fixes execution order and ignored state parameter
29-JUN-2017: 6.8.8
- Updates translations
- Disables VSDX export in IE11-
- Fixes VSDX export in Safari
- Adds larger thumbnails for Google Drive
- Adds VSDX export (beta) in Chrome App
28-JUN-2017: 6.8.7
- Updates translations
- Uses mxGraph 3.7.4
26-JUN-2017: 6.8.6
- Fixes save servlet, local file save in MS Edge
- Removes echo request for save of local data to cloud
21-JUN-2017: 6.8.5
- Removes max-height for Confluence Cloud viewer
20-JUN-2017: 6.8.4
- Adds crossbar shape
- Adds edit button configuration
- Uses new quick start video
- Fixes print dialog for lightbox in scrolled document
- Uses mxGraph 3.7.3 beta 13
16-JUN-2017: 6.8.3
- Minor VSDX export menu change
15-JUN-2017: 6.8.2
- Fixes VSDX export to cloud
15-JUN-2017: 6.8.1
- Adds page formats, uses inch units
- Fixes logout for OneDrive picker
- Uses mxGraph 3.7.3 beta 12
14-JUN-2017: 6.8.0
- Adds support for OneDrive for Business
13-JUN-2017: 6.7.11
- Fixes possible NPE in DriveFile
- Fixes Document Read-Only error in Google Drive
- Fixes OneDrive button in LinkDialog
- Adds more UML relation notations
- Inserts custom libraries after scratchpad
12-JUN-2017: 6.7.10
- Fixes Java compliance issue in Gliffy import
12-JUN-2017: 6.7.9
- Adds css, default styles, libraries to Editor.configure
- Moves persistent settings to EditorUi.init
- Fixes image export for (var)phi in ASCIIMathML
08-JUN-2017: 6.7.8
- Fixes saving local files in MS Edge
- Fixes binary after text export in Safari
- Fixes title for offline iOS homescreen app
06-JUN-2017: 6.7.7
- Fixes broken links in cache.manifest
06-JUN-2017: 6.7.6
- Adds VSDX export in online webapp
06-JUN-2017: 6.7.5
- Fixes links in labels for lightbox on touch devices
- Adds links to pages
- Adds zoom option for viewer in Confluence Connect
05-JUN-2017: 6.7.4
- Fixes overridden rounded style for non-rounded shapes
- Adds defaultVertexStyle/defaultEdgeStyle in Editor.configure
- Adds replay plugin
03-JUN-2017: 6.7.3
- Updates Gliffy translations to add Flowchart v2 library
- Adds edge group support to vsdx export
- Updates Google Cloud Platform icons
31-MAY-2017: 6.7.2
- Adds Atlassian shapes
30-MAY-2017: 6.7.1
- Adds viewer lightbox option in Confluence Connect
- Uses mxGraph 3.7.3 beta 9
29-MAY-2017: 6.7.0
- Adds viewer toolbar config for Confluence Connect
- Enables video and source tags in labels and tooltips
- Fixes reset of edge styles in CSV import
- Uses mxGraph 3.7.3 beta 8
25-MAY-2017: 6.6.5
- Adds print option in lightbox
- Moves insert to arrange menu
24-MAY-2017: 6.6.4
- Fixes possible data loss for back button
- Enables OneDrive support on iOS
22-MAY-2017: 6.6.3
- vsdx export improvements
19-MAY-2017: 6.6.2
- Adds trees plugin
- Fixes text preview, custom handles with math
- Uses mxGraph 3.7.3 beta 7
17-MAY-2017: 6.6.1
- Fixes libs=aws2 URL parameter
- Uses mxGraph 3.7.3 beta 6
16-MAY-2017: 6.6.0
- Adds Venn diagram templates
- Starts .vsdx export functionality
- Improvements and bug fixes for Electron build
- Fixes for Gliffy importer
- Adds autosave for libraries in Chrome App
13-MAY-2017: 6.5.10
- Fixes case sensitivity issue for template names and folders
12-MAY-2017: 6.5.9
- Adds export as URL in Chrome App
- Adds drag and drop for all file formats in Sidebar and Library dialog
- Fixes handling of invalid files after close with realtime
- Adds offline app status icon for cached state
- Removes standalone mode to fix offline iOS home screen apps
- Redirects PDF export to print action when offline
- Fixes text preview for resize with custom handles
- Improvements for small mobile screens
- Forces HTTPS for offline app
- Fixes partial rectangles in Basic palette
- Uses mxGraph 3.7.3 beta 5
08-MAY-2017: 6.5.8
- Adds .vssx stencil import
- Adds square, circle, partial rectangles in sidebar
- Adds identity configuration for CSV import
- Uses mxGraph 3.7.3 beta 4
29-APR-2017: 6.5.7
- Fixes default and button labels for lost changes dialog
- Fixes event handling for overlapping edge handles
- Adds library export to local storage
- Ignores auth files in local storage picker
- Uses mxGraph 3.7.3 beta 3
27-APR-2017: 6.5.6
- Adds arrows and textbox to general sidebar
- Fixes possible data loss when opening local files
- Removes minimum of 120% for line height in format panel
- Fixes highlight for scaled, selected arrows in realtime
- Removes fix for cloned start/end arrow when splitting edge
- Fixes touch events in Chrome for hiding modal dialogs
- Uses mxGraph 3.7.3 beta 2
24-APR-2017: 6.5.5
- Fixes OneDrive file picker
- Uses mxGraph 3.7.3 beta 1
- Adds error handling in Google Docs add-on auth callback
- Fixes cancel for access denied dialog in GitHub client
- Adds sign out option for backends in splash screen
- Fixes changes lost warning when saving draft
- Removes clipart icons due to complaints
- Fixes close icon in Chrome app footer
20-APR-2017: 6.5.4
- Updates Sandstorm build
- Fixes download for exported PNG in Microsoft Edge
- Fixes possible NPE in embed mode
- Disables "Include a copy of my diagram" for PNG export by default
14-APR-2017: 6.5.3
- Disables hacked Dropbox client JS
13-APR-2017: 6.5.2
- Adds missing supercall in Editor.resetGraph override
13-APR-2017: 6.5.1
- Fixes dependency on mxSettings in viewer.min.js
13-APR-2017: 6.5.0
- Fixes extension for exported files with dots
- Fixes lost changes after create or open file in same window
- Fixes ignored default page size for Google Drive files
- Adds Alt+Shift+C for clear waypoints
- Adds toFront/Back context menu for multiple cells
- Adds arc size for copy/paste style
- Fixes rounded swimlane boundary cases
- Uses Cloudflare CDN for loading MathJax
- Adds clear waypoints for vertices with connections
- Adds error handling for saving macro in Confluence Cloud
- Fixes cloned start/end arrow when splitting edge
- Adds support for global shadow in PDF export
- Fixes special characters in branch names for GitHub client
- Fixes missing arc handle for unknown shapes
- Fixes hightlight size for arrows
- Uses mxGraph 3.7.2
06-APR-2017: 6.4.6
- Works around page counter loop condition in FF
05-APR-2017: 6.4.5
- .vsdx import improvements
03-APR-2017: 6.4.4
- Increases black header title in Conf Cloud to push tick and cross out of visible area
03-APR-2017: 6.4.3
- Improvements to theming support for vsdx import
- Fixes for grouped rotations in vsdx import
28-MAR-2017: 6.4.2
- Fixes embedded sheets in Google Drive Connector
- Updates Russian translations
- Improvements to theming support for vsdx import
24-MAR-2017: 6.4.1
- Initial .vsdx theming support
21-MAR-2017: 6.4.0
- Fixes scaling on .vsdx import
- Adds Google Cloud Platform cards
18-MAR-2017: 6.3.8
- Changes display on marker pull-down for no marker in use
17-MAR-2017: 6.3.7
- Adds locale information to drive user
16-MAR-2017: 6.3.6
- Fixes selection of deleted parents after delete actions
- Fixes missing XML for PNG export event in error case
- Fixes timeout for PDF export with invalid images
16-MAR-2017: 6.3.5
- Disables tooltip in GraphViewer via showTitleAsTooltip
- Fixes error handling for export message in embed mode
- Fixes export of empty diagram in Graph.getSvg
15-MAR-2017: 6.3.4
- Fixes NPE in FF
14-MAR-2017: 6.3.3
- Fixes use of undefined variable in DriveClient
14-MAR-2017: 6.3.2
- Updates AWS icons
- Added update plugin
- Fixes update of thumbnail if page not visible
12-MAR-2017: 6.3.1
- Sorts properties in metadata dialog
- Adds animation plugin
11-MAR-2017: 6.3.0
- Fixes slashes in branch names for GitHub client
- Fixes order for add selected cells to library
- Fixes order, missing shapes for export selected cells
09-MAR-2017: 6.2.9
- Fixes label offset for export of selected edges
- Uses temporary file for drag and drop data
- Uses mxGraph 3.7.2 beta 1
09-MAR-2017: 6.2.8
- Fixes ignored user ID in state URL parameter
08-MAR-2017: 6.2.7
- Fixes insert, copy, rename and move for Google Team Drives
07-MAR-2017: 6.2.6
- Adds support for Google Team Drives
07-MAR-2017: 6.2.5
- Adds remote JPEG export option
- Fixes OneDrive, adds GitHub in Edit Link dialog
- Fixes import of JPG and GIF from GitHub and URL
01-MAR-2017: 6.2.4
- Uses mxGraph 3.7.1
- Fixes inserting files in OneDrive
- Hides folder picker if no folders in Drive
- Fixes possible NPE in retry error handling
28-FEB-2017: 6.2.3
- Fixes label for turn action
- Fixes use of undefined function in Dropbox client
28-FEB-2017: 6.2.2
- Handles expired oauth tokens
- Handles blocked Dropbox client API
- Fixes autosave for libraries and scratchpad
- Fixes spinner for template dialog in embed mode
22-FEB-2017: 6.2.1
- Faster read, fixes possible NPE in Dropbox
22-FEB-2017: 6.2.0
- Fixes encoding errors in GitHub client
- Checks size in GitHub and Dropbox
- Fixes initial SVG file contents
- Adds target=frame URL parameter
- Moves cookies to local storage
- Adds recent files in splash
- Uses mxGraph 3.7.0.2 beta 5
- Uses Dropbox API v2
17-FEB-2017: 6.1.2
- Uses semantic versioning
- Fixes possible NPE in format panel
16-FEB-2017: 6.1.1.0
- Uses mxGraph 3.7.0.2 beta 4
- Adds import for SVG and JPG images from backends
- Adds VSDX/Gliffy/PNG+XML import/open from backends
- Adds border option for image export
- Adds timeout handlers for Atlassian cloud
- Fixes ignored crop in JPEG export
15-FEB-2017: 6.1.0.3
- Fixes possible NPE in OneDriveClient
- Adds client-side JPG export option
14-FEB-2017: 6.1.0.2
- Adds picker for GitHub
- Uses mxGraph 3.7.0.2 beta 3
- Changes dialog title for PDF export in Chrome app
- Adds pages option in image and SVG export dialog
- Fixes cancel in message dialog for GitHub insert
11-FEB-2017: 6.1.0.1
- Fixes overwrite of GitHub files
- Fixes default values in GitHub dialog
- Fixes initial save for graphics formats
11-FEB-2017: 6.1.0.0
- Fixes HTML export
- Adds GitHub support
- Fixes processing order in CSV import
- Fixes checks for valid HTTP responses
08-FEB-2017: 6.0.3.7
- Fixes preview for Embed HTML dialog
08-FEB-2017: 6.0.3.6
- Adds help button in publish link dialog
- Uses desk.draw.io for searching help
- Adds export HTML dialog
07-FEB-2017: 6.0.3.5
- Fixes hidden image in Chrome for image export to new window
- Fixes fallback for non-public Google Drive files
- Fixes blurred image for client-side image export in Chrome
- Uses mxGraph 3.7.0.2 beta 2
07-FEB-2017: 6.0.3.4
- Shows related articles in help links
- Adds link options in HTML and URL dialogs
06-FEB-2017: 6.0.3.3
- Uses mxGraph 3.7.0.2 beta 1
- Fixes conversion for plain and formatted text
- Adds Ctrl+Enter for newlines in Safari
- Replaces ?url URL parameter with #U hash value
- Uses public diagram URL in Google Drive Connector
03-FEB-2017: 6.0.3.2
- Fixes Embed dialogs
- Moves Insert to Extras, CSV to File, Import
- Adds fallback for Publish Link action
- Removes Imgur and Github publish options
03-FEB-2017: 6.0.3.1
- Updates Dutch translations
- Fixes lost value when cloning page while editing
- Fixes possible NPE when removing images from custom libraries
- Fixes unicode page name character in vsdx import
31-JAN-2017: 6.0.3.0
- Hides plugin warning for all local plugins
- Adds prefetched URLs in embed to fix CORS issue
- Fixes public URL for shared Google Drive files
- Adds Export, URL and #R raw file types
30-JAN-2017: 6.0.2.16
- Adds CSV import plugin
29-JAN-2017: 6.0.2.15
- Uses mxGraph 3.7.0.1
27-JAN-2017: 6.0.2.14
- Fixes status bar in Firefox in Atlas theme
26-JAN-2017: 6.0.2.13
- Updates Arrange tab after remove from group
- Faster image and SVG export
- Uses mxGraph 3.7.0.1 beta 1
18-JAN-2017: 6.0.2.12
- Adds width, height in advanced export dialog
18-JAN-2017: 6.0.2.11
- Adds crop option for SVG and image export
- Fixes PDF crop export option
- Adds text extraction plugin
- Uses mxGraph 3.7.0.0
13-JAN-2017: 6.0.2.10
- Removes green background from server-side image export
- Ignores convention of not using double digit release numbers
13-JAN-2017: 6.0.2.9
- Adds Google Cloud icons
- Removes lightbox link for Imgur files
- Uses mxGraph 3.7.0.0 beta 13
09-JAN-2017: 6.0.2.8
- Adds props plugin
- Uses mxGraph 3.7.0.0 beta 12
- Adds help button in print dialog
28-DEC-2016: 6.0.2.7
- Adds dialog for selecting pages in docs add-on
- Fixes update all for generic links in docs add-on
- Adds open in new window, data URI import while offline
- Adds import for Lucidchart files
26-DEC-2016: 6.0.2.6
- Fixes lazy loading of clients in chromeless mode
- Fixes export of arbitrary pages with advanced dialog
23-DEC-2016: 6.0.2.5
- Adds PlantUML option in text dialog
- Uses mxGraph 3.7.0.0 beta 11
14-DEC-2016: 6.0.2.4
- Adds text field support for .vsdx import
13-DEC-2016: 6.0.2.3
- Improves .vsdx import text handling
12-DEC-2016: 6.0.2.2
- Improves .vsdx import
08-DEC-2016: 6.0.2.1
- Adds edit option in HTML and SVG embed dialog
- Moves tags, find plugins to editor
- Uses mxGraph 3.7.0.0 beta 11
- Fixes ignored width in viewer after page change
- Adds number plugin for numbering shapes
06-DEC-2016: 6.0.2.0
- Stops allowing diagrams on new Conf Cloud pages
- Fixes URL encoding for Conf Connect diagram names
- Fixes page breaks, blank pages in PDF export
- Fixes viewer in hidden containers for IE9-
- Uses mxGraph 3.7.0.0 beta 10
02-DEC-2016: 6.0.1.9
- Adds context path to URL for Connect Rendermode
01-DEC-2016: 6.0.1.8
- Removes blocking DIV while inserting files
- Adds marker styles for copy/paste style
23-NOV-2016: 6.0.1.7
- Fixes links to same domain for viewer in iframes
- Fixes automatic loading of libraries
- Fixes sidebar title overlap with buttons
- Fixes lost names, delete order in library dialog
21-NOV-2016: 6.0.1.6
- Fixes missing auth header in Google client API
18-NOV-2016: 6.0.1.5
- Replaces prompts in Atlassian cloud plugins
- Fixes save of scratchpad in embed mode
- Enables paste of images while editing labels
- Adds support for title attribute in mxlibrary
16-NOV-2016: 6.0.1.4
- Defaults to using F2 GAE instances
- Fixes no element error for selecting page in Firefox
- Fixes drag and drop for pages in Firefox
09-NOV-2016: 6.0.1.3
- Shift+Drop ignores embedded XML in images