forked from yousafgill/draw.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5901 lines (4076 loc) · 149 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
04-MAR-2018: 8.5.3
- Gliffy import improvement
- Fix for anchor download issue in Chrome 65
31-MAR-2018: 8.5.2
- Add mass gliffy import in Confluence Cloud
- Fixes importing Gliffy sitemap stencils
- Adds workaround for Confluence Cloud saveMacro problem
28-MAR-2018: 8.5.1
- Confluence Cloud integration improvements
23-MAR-2018: 8.5.0
- Adds shapes in Basic sidebar
21-MAR-2018: 8.4.8
- Gliffy import improvements
- Adds Cisco Safe Stencils
- Adds top, left for CSV import
- Uses mxGraph 3.9.4 beta 3
15-MAR-2018: 8.4.7
- Improves Gliffy import
13-MAR-2018: 8.4.6
- Fixes adding of clones with new index
13-MAR-2018: 8.4.5
- Fixes Confluence Cloud page includes
- Removes default empty layer in Gliffy import
12-MAR-2018: 8.4.4
- Uses mxGraph 3.9.4 beta 2
11-MAR-2018: 8.4.3
- Adds Alt+Shift+L keyboard shortcut to edit links
09-MAR-2018: 8.4.2
- Fixes checkboxes in format panel
- Uses mxGraph 3.9.4 beta 1
- Enables links and tooltips in locked layers
09-MAR-2018: 8.4.1
- Adds Alt+Shift+T keyboard shortcut to edit tooltips
- Minor improvements for Gliffy import
08-MAR-2018: 8.4.0
- Uses mxGraph 3.9.2 beta 11
07-MAR-2018: 8.3.7
- Improvements for Gliffy import
05-MAR-2018: 8.3.6
- Use mxGraph 3.9.3 for post is not a function fix
01-MAR-2018: 8.3.5
- Adds recent and search to Confluence Cloud splash dialog
- Adds iconfinder to URLs with CORS
- Adds support for cross-origin images
- Fixes bug for vssx shapes with double quotes in labels
- Add line-height CSS to simulate quirks box sizing [5289]
27-FEB-2018: 8.3.4
- Fixes license debug in Confluence Cloud
27-FEB-2108: 8.3.3
- Fixes iconfinder 451 return
25-FEB-2018: 8.3.2
- Remove Google Drive login response checks, caused issues
20-FEB-2018: 8.3.1
- Internal revert to 8.2.3 minus Confluence Cloud changes
19-FEB-2018: 8.3.0
- Internal revert to 8.2.2 minus Confluence Cloud changes
18-FEB-2018: 8.2.3
- Adds optional parameter
17-FEB-2018: 8.2.2
- Fixes inconsistency in child change codec
- Allows for 0.5px steps when moving cells
- Uses mxGraph 3.9.2 beta 10
16-FEB-2018: 8.2.1
- Adds shape group in Misc section, outline connect
- Fixes line wrapping, hides icons while editing
- Preserves library order for clibs parameter
- Uses mxGraph 3.9.2 beta 9
16-FEB-2018: 8.2.0
- Confluence Cloud attachment fixes
16-FEB-2018: 8.1.9
- Fixes Google API load timing issues
- Fixes attachment write calls for IE and Edge in Confluence Cloud
14-FEB-2018: 8.1.8
- Fixes saving diagram to Confluence Cloud draft pages
14-FEB-2018: 8.1.7
- Fixes custom style path for atlas.css
14-FEB-2018: 8.1.6
- Fixes block resize in graph viewer
- Disables fix for block alignment
- Uses mxGraph 3.9.2 beta 8
13-FEB-2018: 8.1.5
- Uses mxGraph 3.9.2 beta 7
12-FEB-2018: 8.1.4
- Fixes sidebar tooltip
12-FEB-2018: 8.1.3
- Fixes dynamic loading for VSDX export
- Fixes possible NPEs in VSDX export
12-FEB-2018: 8.1.2
- Adds resize option in image dialog
- Uses mxGraph 3.9.2 beta 6
11-FEB-2018: 8.1.1
- Handles markup is invalid XML
11-FEB-2018: 8.1.0
- Adds VSDX/VSSX import/export for Electron
- Fixes access denied for Dropbox import
- Fixes escaping in SVG alternate text
- Uses mxGraph 3.9.2 beta 5
09-FEB-2018: 8.0.9
- Fixes block alignment for in-place editor
- Uses mxGraph 3.9.2 beta 4
08-FEB-2018: 8.0.8
- Fixes plantUML SVG insert in IE11
- Adds cors URL parameter
06-FEB-2018: 8.0.7
- Adds recent/search in Confluence connect
- Fixes various bugs
02-FEB-2018: 8.0.6
- Fixes Ctrl+connect of orthogonal edges
- Fixes CSS for metadata dialog
- Uses mxGraph 3.9.2 beta 3
01-FEB-2018: 8.0.5
- Fixes possible NPE for cache invalidation
- Fixes in-place change of graph model
- Uses mxGraph 3.9.2 beta 2
31-JAN-2018: 8.0.4
- Reverts to using headless mxgraph
- Fixes swap icon for shapes with fill color
- Adds gradient and background in UML frame
- Adds edge labels in text, CSV import
30-JAN-2018: 8.0.3
- Reverts to using previously GAE blacklisted classes
- Uses mxGraph 3.9.2 beta 1
23-JAN-2018: 8.0.2
- Fixes constrained size change in arrange panel
- Removes Dropbox and GitHub from splash screen
- Handles empty string for image style
- Adds workaround for dialog clipping
- Uses mxGraph 3.9.1 beta 1
19-JAN-2018: 8.0.1
- Fixes ChangePageSetup
- Uses mxGraph 3.9.0
17-JAN-2018: 8.0.0
- New Google repository structure
- Uses Java 1.8
16-JAN-2018: 7.9.8
- Adds dark theme (beta)
- Uses mxGraph 3.8.1 beta 11
12-JAN-2018: 7.9.7
- Disables http/https redirects
12-JAN-2018: 7.9.6
- Gliffy import improvements
- Adds fontCss configuration to SVG export
- Uses mxGraph 3.8.1 beta 10
04-JAN-2018: 7.9.5
- Fixes bug with current desktop app launcher
04-JAN-2018: 7.9.4
- Adds Extras, Plugins in desktop app
- Adds command line arguments in desktop app
- Fixes images in SVG export preview
- Uses mxGraph 3.8.1 beta 8
- Adds table option in insert text dialog
- Fixes text formatting for input selection
02-JAN-2018: 7.9.3
- Workaround for null variable in Jira Connect
- Uses mxGraph 3.8.1 beta 6
31-DEC-2017: 7.9.2
- Improves app icons for Android
31-DEC-2017: 7.9.1
- Uses round app icon for Android
- Applies editing value before selecting page
29-DEC-2017: 7.9.0
- Removes search.xml from offline manifest
29-DEC-2017: 7.8.9
- Replaces search.xml with inline data
21-DEC-2017: 7.8.8
- Deletes transparent groups with no remaining cells
- Fixes refresh of straight edge handles
- Adds terminal points in Arrange tab
- Uses mxGraph 3.8.1 beta 5
19-DEC-2017: 7.8.7
- Uses mxGraph 3.8.1 beta 4
15-DEC-2017: 7.8.6
- Internal translation update
14-DEC-2017: 7.8.5
- Uses mxGraph 3.8.1 beta 3
- Uses relative path for templates
- Adds configVersion to force reset of configuration
05-DEC-2017: 7.8.4
- Fixes font rendering in library dialog
- Adds move subtree handle for tree containers
- Fixes special cases for font size changes
- Adds fixes for older versions of IE
04-DEC-2017: 7.8.3
- Improves handling of fontsize in format panel
- Hides link hint for edges while moving points
- Improves loop routing with control points
- Adds remove option for links
- Uses mxGraph 3.8.1 beta 2
03-DEC-2017: 7.8.2
- Adds select descendants for cells with outgoing edges
- Adds defaults for insert from custom library
- Adds search of metadata in find dialog
- Enables export URL for external domains
- Adds custom libraries to shape search index
- Uses mxGraph 3.8.1 beta 1
01-DEC-2017: 7.8.1
- Fixes Confluence Cloud revision history diagram display
30-NOV-2017: 7.8.0
- Uses mxGraph 3.8.0
29-NOV-2017: 7.7.8
- Removes dashed borders for editing paragraphs
28-NOV-2017: 7.7.7
- Adds Sitemap sidebar
- Moves double border shapes to Misc sidebar
- Enables custom libraries in Trello Power-Up
- Fixes resize vertex with touch events
- Uses mxGraph 3.7.7 beta 2
27-NOV-2017: 7.7.6
- Removes Trello option from splash screen (use Power-Up)
- Fixes import of SVG with no width, height and viewbox
- Adds undo for global shadow switch
- Uses mxGraph 3.7.7 beta 1
- Fixes select after paste
24-NOV-2017: 7.7.5
- Even faster startup time for offline app
- Fixes cache manifest for offline app
24-NOV-2017: 7.7.4
- Uses mxGraph 3.7.6
- Checks existing filename in Trello Power-Up
- Adds root dialog for cancel in Google picker
- Faster startup time for offline app
- Validates page format input
22-NOV-2017: 7.7.3
- Improves Gliffy importer
20-NOV-2017: 7.7.2
- Fixes stack layout and adds styles
- Uses mxGraph 3.7.6 beta 10
16-NOV-2017: 7.7.1
- Adds switches for SVG shadow
- Fixes tags dialog size
- Fixes action states
15-NOV-2017: 7.7.0
- Fixes alt+mousewheel in lightbox mode
15-NOV-2017: 7.6.9
- Adds predefined filters for Trello picker
- Fixes picker for GDriveConnector and Google Docs Add-on
- Fixes UTF8 strings in imported SVG images
- Adds context menu for links in hints
13-NOV-2017: 7.6.8
- Updates to latest AWS stencils
30-OCT-2017: 7.6.7
- Ignores invalid sources in embed mode
- Fixes auth flow in Trello Power-Up
30-OCT-2017: 7.6.6
- Uses mxGraph 3.7.6 beta 9
- Always shows Google folder dialog
28-OCT-2017: 7.6.5
- Fixes possible NPE in legacy embed mode
28-OCT-2017: 7.6.4
- Adds vector handles
- Fixes text style combo in Firefox
- Fixes text flow after word wrap change
- Uses mxGraph 3.7.6 beta 8
26-OCT-2017: 7.6.3
- Adds current style to CSV and text
- Uses mxGraph 3.7.6 beta 7
25-OCT-2017: 7.6.2
- Adds optional arguments for subclassers
25-OCT-2017: 7.6.1
- Fixes Google picker for certain file types
- Fixes text entries in general sidebar
- Uses mxGraph 3.7.6 beta 6
24-OCT-2017: 7.6.0
- Uses mxGraph 3.7.6 beta 5
24-OCT-2017: 7.5.9
- Uses mxGraph 3.7.6 beta 4
23-OCT-2017: 7.5.8
- Adds Team Drives support in GDriveConnector
- Fixes bug in mockups sidebar
22-OCT-2017: 7.5.7
- Adds support for team drives in google picker
- Removes image export after closing lightbox
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