forked from jgraph/drawio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
4513 lines (3200 loc) · 120 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
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
- Alt+Drop ignores highlighted drop target
07-NOV-2016: 6.0.1.2
- Adds new electrical shapes
- Minor improvements for find plugin
04-NOV-2016: 6.0.1.1
- Adds consistent location for insert and sidebar
- Adds support for pages in publish actions
- Adds search for metadata in find plugin
- Uses lightbox for Imgur redirects
- Fixes HTML export for multiple pages
- Fixes shape detection for multiple pages
02-NOV-2016: 6.0.1.0
- Updates shapes in embed servlet
- Uses new Iconfinder API
- Uses mxGraph 3.7.0.0 beta 9
- Uses first unlocked layer for all diagrams
31-OCT-2016: 6.0.0.0
- Adds multiple pages per file
31-OCT-2016: 5.7.2.5
- Makes recent colors persistent
- Uses first unlocked layer for multiple pages
28-OCT-2016: 5.7.2.4
- Fixes Gliffy line imports with less than 2 waypoints
28-OCT-2016: 5.7.2.3
- Prepares multiple pages per file
- Simplifies UX for tags plugin
27-OCT-2016: 5.7.2.2
- Adds page view state to realtime
- Uses mxGraph 3.7.0.0 beta 8
- Adds diagram option in From Text dialog
- Adds incremental find plugin
26-OCT-2016: 5.7.2.1
- Uses mxGraph 3.7.0.0 beta 7
- Adds page format option in print dialog
- Shift+alt+rubberband removes selection cells
- Shift+click adds edges for delete in toolbar
18-OCT-2016: 5.7.2.0
- Uses mxGraph 3.7.0.0 beta 6
- Adds experimental sql plugin
13-OCT-2016: 5.7.1.3
- Fixes mxFile import with page disabled
07-OCT-2016: 5.7.1.2
- Adds import for multiple pages
- Fixes german spelling errors
06-OCT-2016: 5.7.1.1
- Adds warning for model size limit exceeded error
05-OCT-2016: 5.7.1.0
- Adds support for pages in embed mode
- Embed save uses mxFile rather than GraphModel in pages mode
04-OCT-2016: 5.7.0.9
- Adds experimental tags plugin
- Fixes page scale in print preview
- Adds new colorset
03-OCT-2016: 5.7.0.8.2
- Adds tolerance, uses fewer cells in scissors tool
27-SEP-2016: 5.7.0.7
- Adds filename for editors in Atlassian cloud plugins
- Fixes encoding of filenames in Atlassian cloud plugins
- Adds optional title parameter to load message
- Uses mxGraph 3.7.0.0 beta 5
- Fixes possible empty pages in PDF export
27-SEP-2016: 5.7.0.6
- Fixes redirect error in IE
26-SEP-2016: 5.7.0.5
- Adds publish to Facebook, Twitter
21-SEP-2016: 5.7.0.4
- Minor logging changes
21-SEP-2016: 5.7.0.3
- Uses mxGraph 3.7.0.0 beta 4
- Logging changes to use standard Java logging
21-SEP-2016: 5.7.0.2
- Uses mxGraph 3.7.0.0 beta 3
- Fixes possible NPE for markup editor
20-SEP-2016: 5.7.0.1
- Fixes minor bug with autosave
- Uses mxGraph 3.7.0.0 beta 2
20-SEP-2016: 5.7.0.0
- Sets initial state of sidebar to invisible
- Adds support for scratchpad in Chrome App
- Disables default value for exporting selection only
- Adds square and circle shapes, hints for special searches
- Uses mxGraph 3.7.0.0 beta 1
- Creates temporary blank diagram if splash dialog is closed
- Removes "all changes saved" message for device files
- Adds snapToPoint custom attribute
- Fixes enabled state of publish menu and link item
- Adds scope to set and get placeholder variable
- Fixes current revision in dialog during autosave
13-SEP-2016: 5.6.0.5
- Adds multiple (previous) predefined color sets
- Adds Alt+(Shift+)Tab for select parent/child
12-SEP-2016: 5.6.0.4
- Uses mxGraph 3.6.0.1 beta 1
- Adds reset for undo history of in-place editor
- Fixes inconsistent selection check for cursor keys
- Adds hash listener for pages with url parameters
- Fixes PDF, image with XML export for multiple pages
- File ID has precedence over create, url parameters
- Adds validation for grid size in page setup dialog
- Fixes fullscreen toggle in embed mode for Kennedy
- Adds keyboard shortcuts in toolbar tooltips
- Uses mxfile wrapper for embedded HTML files
- Adds optional callback argument in App.main
07-SEP-2016: 5.6.0.3
- Uses mxGraph 3.6
- Fixes authentication error in Dropbox
- Adds workaround for Confluence cloud expand macro in Chrome
06-SEP-2016: 5.6.0.2
- Fixes Confluence Cloud plugin
06-SEP-2016: 5.6.0.1
- Uses mxGraph 3.5.1.6 beta 6
06-SEP-2016: 5.6.0.0
- Fixes cursor scrolling for empty selection
- Adds Alt+Shift+Cursor to connect and clone
- Adds placeholders for custom shape text
- Ctrl+A selects all cells recursively
- Uses new (de)compression algorithm
- Adds language option in Chrome App
- Enables relative links in labels
- Shift+Escape cancels editing
- Uses mxGraph 3.5.1.6 beta 5
- Pre-loads custom libraries
- Fixes object error in IE6
01-SEP-2016: 5.5.6.2
- Adds new predefined color schemes
30-AUG-2016: 5.5.6.1
- Uses mxGraph 3.5.1.6 beta 4
- Escape while editing applies new text value
- Fixes bounds for zoomed markup in-place editor
- Fixes JIRA cloud integration for Safari
25-AUG-2016: 5.5.6.0
- Uses mxGraph 3.5.1.6 beta 3
- Ignores scale for guides
- Fixes ignored background image in realtime
- Removes clipping for general text in grapheditor example
- Adds workaround for image printing in Chrome
- Fixes cropped labels in sidebar tooltips
- Adds entries argument in MoreShapes dialog
- Removes unused code and resources
- Simplified licensing check
- Adds new office, archimate3 shapes
- Finnish translation improvements
- Persian translation improvements
12-AUG-2016: 5.5.5.8
- i18n updates
10-AUG-2016: 5.5.5.7
- Minor changes
08-AUG-2016: 5.5.5.6
- Fixes malformed XHTML meta element used in HTML save
07-AUG-2016: 5.5.5.5
- Adds encoding for new HTML file format
04-AUG-2016: 5.5.5.4
- Marketing text changes
02-AUG-2016: 5.5.5.3
- Fixes export via Advanced dialog
29-JUL-2016: 5.5.5.2
- Fixes cloud export for UTF characters
29-JUL-2016: 5.5.5.1
- Mousewheel zoom centered around mouse cursor
28-JUL-2016: 5.5.5.0
- Adds embedded image support for .vsdx import
- Adds File, Publish submenu, GitHub option
- Fixes capitalized keys in tooltips
- Uses mxGraph 3.5.1.6 beta 2
26-JUL-2016: 5.5.4.0
- Adds placeholder metadata variable
25-JUL-2016: 5.5.3.8
- Fixes templates for new HTML file format
- Fixes image export for new HTML file format
- Uses mxGraph 3.5.1.6 beta 1
23-JUL-2016: 5.5.3.7
- Uses Ctrl+Shift+Z for redo on Linux
- Adds Ctrl+,/. for subscript/superscript
- Uses new embed code for HTML files and export
- Fixes embed iframe dialog
21-JUL-2016: 5.5.3.6
- Fixes lazy loading of shapes in Chrome App
21-JUL-2016: 5.5.3.5
- Simplifies footer
20-JUL-2016: 5.5.3.4
- Adds Contact Us link in footer
20-JUL-2016: 5.5.3.3
- Uses mxGraph 3.5.1.5
- Adds browser in splash for offline mode
- Fixes splash screen in offline mode
- Adds padding for pages in print preview
- Removes voice assistant in Extras menu
15-JUL-2016: 5.5.3.2
- Uses mxGraph 3.5.1.5 beta 2
- Fixes waiting for clients in Create dialog
11-JUL-2016: 5.5.3.1
- Adds tag for RSS feed
- Adds page scale to realtime model
- Page scale change triggers autosave
09-JUL-2016: 5.5.3.0
- Adds elbow and isometric edge styles
- Uses single redirect for non-SSL apex domain
- Adds View, Page scale option
- Uses letter paper size in US, Canada and Mexico
08-JUL-2016: 5.5.2.8
- Adds timeout for clients in splash screen
- Fixes loading of JS shapes in new embed mode
- Fixes loading of unused clients in chromeless mode
- Adds embed link dialog, simplifies embed html dialog
- Renames responsive to fit in embed dialogs
- Removes image, adds retina option in embed image dialog
- Updates French, Taiwanese translations
- Fixes enterGroup action for normal groups
06-JUL-2016: 5.5.2.7
- Fixes selection of child cells in groups
06-JUL-2016: 5.5.2.6
- Adds navigation for all groups
- Fixes spinner for unsupported clients
- Adds redirect for cdn.draw.io in splash screen
06-JUL-2016: 5.5.2.5
- Adds lazy loading for clients with splash screen
04-JUL-2016: 5.5.2.4
- Fixes to .vsdx import
23-JUN-2016: 5.5.2.3
- Fixes loading of Drive files with disabled splash screen
23-JUN-2016: 5.5.2.2
- Improves startup time for Chrome App
23-JUN-2016: 5.5.2.1
- Adds Citrix networking shapes
- Fixes possible loop for autosize in graph viewer
- Removes zoom buttons in viewer for JIRA Cloud add-on
- Fixes inline hover state, position for toolbar in graph viewer
- Removes open image button in Confluence Cloud add-on toolbar
19-JUN-2016: 5.5.2.0
- Adds open image button in Confluence Cloud add-on toolbar
- Adds links for selected label text in P2 add-on
- Adds fullscreen toggle in P2 add-on
- Fixes default storage for make copy in Google Drive
- Adds template json message, dialogs in connect plugins
- Fixes ignored grid for image drop location
- Adds new templates dialog for creating diagrams
- Fixes image export if math enabled in Chrome App
- Fixes drag preview in library dialog for Google Chrome
- Fixes paste for images from Lucidchart
- Adds Ctrl+N, Ctrl+O in Chrome App
- Adds new print dialog with custom zoom
08-JUN-2016: 5.5.1.6
- Fixes horizontal/vertical flip in mxText
- Fixes handling of fill/stroke with no shape
- Fixes version string in about dialog
- Uses mxGraph 3.5.1.5 beta 1
07-JUN-2016: 5.5.1.5
- Moves grid color from Extras menu to format panel
- Fixes gradients for print/PDF output in Chrome App
06-JUN-2016: 5.5.1.4
- Fixes loading of client libraries in atlas.min.js
- Simplifies build for Chrome App, app.min.js
05-JUN-2016: 5.5.1.3
- Fixes insert of diagram via {drawio} macro name
- Fixes utf8 characters in Confluence cloud add-on
02-JUN-2016: 5.5.1.2
- Disables revision parsing in Confluence Cloud
- Uses mxGraph 3.5.1.4
01-JUN-2016: 5.5.1.1
- Fixes Confluence cloud expand macro integration
01-JUN-2016: 5.5.1.0
- Adds fullscreen button, persistent libraries in embed mode
- Adds new viewer for JIRA cloud integration
- Removes collapse/expand option in HTML embed dialog
- Adds filename in toolbar for Confluence cloud viewer
- Enables folding in Confluence cloud integration
31-MAY-2016: 5.5.0.2
- Fixes layers button in Confluence cloud lightbox toolbar
- Fixes custom protocol absolute links in embedded HTML
- Lightbox no longer shows layers button for single layer
- Fixes click handling for embedded HTML on touch devices
13-MAY-2016: 5.5.0.1
- Fixes dynamic shape loading in Confluence Cloud viewer
- Enables Extras, Edit Diagram in embed mode
- Add shift-hover in chromeless mode to hide toolbar
- Adds highlight, target URL params for chromeless mode
- Adds link handling in chromeless mode
12-MAY-2016: 5.5.0.0
- Uses new HTML embed code and dialog
- Adds viewer for Confluence cloud
- Adds fullscreen and format switch in Atlas theme
- Adds transparency for layers dialog in embedded and lightbox mode
- Uses mxfile in PNG/SVG+XML file formats
- Adds parsing for new embedded HTML files
- Fixes lightbox click for links in embedded SVG
- Fixes relative images in new HTML embed
- Uses mxGraph 3.5.1.4 beta 1
09-MAY-2016: 5.4.4.5
- Adds fullscreen button
- Blocks possible javascript: shape links
- Fixes handling of edit URL parameter
- Uses mxGraph 3.5.1.3
06-MAY-2016: 5.4.4.4
- Fixes UI language in Chrome App
- Fixes File, Make Copy in IE9-
- Allows non-integer font sizes
- Uses mxGraph 3.5.1.3 beta 6
04-MAY-2016: 5.4.4.3
- Fixes persistence of current libraries
04-MAY-2016: 5.4.4.2
- Removes debug output
04-MAY-2016: 5.4.4.1
- Fixes binary file export in Chrome App
- Fixes SVG namespace for groups in svgdata plugin
02-MAY-2016: 5.4.4.0
- Writing files in Chrome app replaces existing content
- Adds layers option in iframe/SVG/image embed dialogs
- Adds layers URL parameter in chromeless mode
- Adds ctrl+shift+connect to disable connections
- Uses mxGraph 3.5.1.3 beta 5
30-APR-2016: 5.4.3.9
- Moves application code to JS files
- Adds icon for help link in menus
29-APR-2016: 5.4.3.8
- Removes gridcolor attribute in file, URL parameter
- Adds peristent grid color option in Extras menu
- Fixes resize of background page in outline dialog
- Disables context menu on touch devices on folding icon
- Fixes hover icons for overlapping cell in all directions
- Adds logging for file loading errors
- Uses mxGraph 3.5.1.3 beta 4
27-APR-2016: 5.4.3.7
- Switches JIRA Cloud to attachment writes via client
- Fixes ignored config in embed script
- Renames File to DrawioFile
- Uses mxGraph 3.5.1.3 beta 3
26-APR-2016: 5.4.3.6
- Fixes version in about dialog
26-APR-2016: 5.4.3.5
- Fixes possible bug with cached JS and uncached HTML
25-APR-2016: 5.4.3.4
- Removes old stylesheet
- Fixes bug for edges between layers
- Fixes embedding with custom shapes
- Fixes logging of domains with database entry
- Moves createSpinner, setFileData to EditorUi
- Adds lightbox parameter for chromeless mode
- Uses single click for lightbox in embed
22-APR-2016: 5.4.3.3
- Fixes naming issues in PlantUML render mode
22-APR-2016: 5.4.3.2
- Adds render mode to PlantUML
18-APR-2016: 5.4.3.1
- Fixes Confluence Cloud new page diagram insertion
- Uses mxGraph 3.5.1.3 beta 2
17-APR-2016: 5.4.3.0
- Removes macro parameter from plantUML
17-APR-2016: 5.4.2.5
- Adds previous UML shapes
15-APR-2016: 5.4.2.4
- Fixes double click on layer to rename
- Uses mxGraph 3.5.1.2
13-APR-2016: 5.4.2.3
- Changes plant export URL to https
13-APR-2016: 5.4.2.2
- Changes baseURL of plantUML to plant.draw.io
13-APR-2016: 5.4.2.1
- Changes baseURL of plantUML to https
13-APR-2016: 5.4.2.0
- Adds tooltips, svgdata plugin (p=tips;svgdata)
- Uses standard print dialog in Chrome App
- No longer repaints label while editing
- Uses mxGraph 3.5.1.1
11-APR-2016: 5.4.1.8
- Adds line height in text format panel
- Fixes possible NPE when updating shapes
- Uses mxGraph 3.5.1.1 beta 4
11-APR-2016: 5.4.1.7
- Fixes font size change with no text selection
- Fixes isConsumed not defined in MS Edge
- Fixes change of text opacity
- Uses mxGraph 3.5.1.1 beta 3
09-APR-2016: 5.4.1.6
- Changes default edge length to 80
- Fixes anchor links for embedded HTML and SVG
- Adds expiry to license logging
- Adds Alt+/Shift+/Ctrl+Click in sidebar
08-APR-2016: 5.4.1.5
- Adds imgur redirect servlet
- Fixes offline mode
- Fixes reset of comic style in connect preview
08-APR-2016: 5.4.1.4
- Fixes global spacing ignored if overridden
- Adds logging in JIRA servlet to avoid data loss
- Fixes click on unselected edge label moves label
- Fixes thumbnail for disabled autosave in Drive
- Adds recovery from backup in revision history
- Uses mxGraph 3.5.1.1 beta 2
06-APR-2016: 5.4.1.3
- Uses mxGraph 3.5.1.1 beta 1
- Fixes File, Publish menu item
- Fixes iOS app icons
06-APR-2016: 5.4.1.2
- Uses mxGraph 3.5.1.0
- Uses new logo with no black bar
- Fixes export for certain AWS 3D shapes
- Fixes action states for read-only and restricted files
05-APR-2016: 5.4.1.1
- Adds comic, text background color to default style
- Adds outline keyboard shortcut in chromeless mode
- Adds labelMovable style for vertex labels
- Uses mxGraph 3.5.1.0 beta 6
- Adds selection only option for XML export
- Adds persistent settings for Chrome App
03-APR-2016: 5.4.1.0
- Removes certain AWS 3D shapes
01-APR-2016: 5.4.0.9
- Adds isometric AWS shapes
01-APR-2016: 5.4.0.8
- Adds more dotted line styles
- Adds isometric shapes and connectors (beta)
- Updates handler after style change of cell
- Uses mxGraph 3.5.1.0 beta 5
31-MAR-2016: 5.4.0.7
- Hides toolbar after mouse move in chromeless mode
- Adds keyboard shortcuts in read-only and chromeless mode
- Fixes highlight in realtime for large strokewidths
- Fixes update of text shape after change of overflow style
- Uses mxGraph 3.5.1.0 beta 5
- Fixes vertical alignment for Component shape
- Enables comic style for various shapes
- Uses filename for dropped files in libraries
26-MAR-2016: 5.4.0.6
- Removes shadow URL parameter
- Smaller jiggle effect for diamond shapes
- Adds global shadow option in View menu (beta)
- Removes bug tracking code for MS Edge
25-MAR-2016: 5.4.0.5
- Adds image option in embed SVG dialog
- Fixes embedded images in HTML labels
24-MAR-2016: 5.4.0.4
- Restores bug tracking code for Edge
- Adds app icons for various devices
24-MAR-2016: 5.4.0.3
- Uses mxGraph 3.5.1.0 beta 4
- Fixes word wrap change for existing text
- Removes bug tracking code for MS Edge
23-MAR-2016: 5.4.0.2
- Fixes possible NPE for import
- Removes crc32 for email logging
- Adds bug tracking code for MS Edge
23-MAR-2016: 5.4.0.1
- Adds Extras, Show Start Screen option
- Uses mxGraph 3.5.1.0 beta 3
- Resets text shape state before using new style
- Removes extension from published diagram title
- Fixes rendering of comic rectangles in VML
- Fixes expand of Misc sidebar in IE6/8
22-MAR-2016: 5.4.0.0
- Uses XML to convert from old realtime
- Fixes gradients for certain URLs in IE11/Edge
- Adds comic style and shapes
- Fixes move preview offset
- Uses mxGraph 3.5.1.0 beta 2
- Fixes library title editing on iOS
- Makes autosave optional in Chrome App
18-MAR-2016: 5.3.5.2
- Adds delete URL to publish confirmation
- Adds warning dialog before Publish
- Adds File, Embed, Image menu option
- Adds Email address to Drive user info
- Click on app icon opens Drive folder
17-MAR-2016: 5.3.5.1
- Simplifies status messages for saving
- Adds UI for editing sidebar titles
- Disables publish action in IE9-
- Fixes possible infinite loop in Drive client
17-MAR-2016: 5.3.5.0
- Adds File, Publish for uploading to Imgur
- Moves moreShapes from File to View menu
- Moves createShape from File to Extras menu
- Removes create shape option from sidebar
- Adds confirmation after copy in SVG embed
- Adds copy button in embed iframe dialog
16-MAR-2016: 5.3.4.3
- Enables licensing for Confluence Cloud
- Removes second macro for GDrive Connector
- Fixes custom shapes for embedded diagrams
- Updates MS Azure, Cloud + Enterprise icons
15-MAR-2016: 5.3.4.2
- Adds File, Embed, SVG menu option
- Uses client mode for making a copy
- Hash has precedence over client parameter
14-MAR-2016: 5.3.4.1
- Adds support for embedded PNG data URI in client mode
- Fixes ignored grid for XML drag and drop
- Fixes decoding of base64 encoded embedded SVG
- Fixes embedded PNG character encoding in Safari
10-MAR-2016: 5.3.4.0
- Uses mxGraph 3.5.1.0 beta 1
09-MAR-2016: 5.3.3.9
- Uses mxGraph 3.5.0.1 beta 3
09-MAR-2016: 5.3.3.8
- Fixes double encoding for PNG+XML in embed mode
08-MAR-2016: 5.3.3.7
- Uses mxGraph 3.5.0.1 beta 2
04-MAR-2016: 5.3.3.6
- Fixes insertTextAt call in importFile()
04-MAR-2016: 5.3.3.5
- Uses mxGraph 3.5.0.1 beta 1
- Redirects apex domain to www.draw.io
- Fixes loading spinner for converted Dropbox files
03-MAR-2016: 5.3.3.4
- Fixes offset of imports with no mouse event
- Adds configurable edit button in chromeless mode
- Ignores public URL for Drive files in public folders
- Adds upload tab in Google picker dialog
- Makes hierarchical folder picker default
- Puts new Google files into root folder
- Adds folder picker for new libraries
03-MAR-2016: 5.3.3.3
- Changes BaseURL for Google Drive Connector
02-MAR-2016: 5.3.3.2
- Adds responsive UI for small screens
- Adds voice assistance for text input
01-MAR-2016: 5.3.3.1
- Fixes grid rounding errors for common cases
01-MAR-2016: 5.3.3.0
- Uses mxGraph 3.5.0.0
- Adds voice assistant in Extras menu
- Adds experimental shadow URL parameter
- Ignores transparent stroke color for default style
29-FEB-2016: 5.3.2.3
- Adds Ctrl+Shift+Drag to create/remove space
- Fixes licensing in chromeless mode
- Fixes bug in reset graph
28-FEB-2016: 5.3.2.2
- Uses mxGraph 3.4.1.3 beta 9
- Removes Export PNG+XML menu item
- Uses MathJax from CDN, lighter config
- Adds selection option for remote export
- Fixes timing problem for printing with math
- Adds text fallback for SVG export (experimental)
- Improved text rendering for image and SVG export
- Fixes artifacts for embedded math diagrams in Chrome
- Fixes Open in new window for IE10/11, MS Edge, Safari
26-FEB-2016: 5.3.2.1
- Uses MathJax 2.6 to fix artifacts in Chrome
- Fixes import of edges in separate layers
- Import of file appends multiple layers
- Changes logging for Google accounts
- Fixes drop of file URL into editor
- Uses mxGraph 3.4.1.3 beta 8
25-FEB-2016: 5.3.2.0
- Adds licensing server and client
25-FEB-2016: 5.3.1.0
- Uses mxGraph 3.4.1.3 beta 7
- Adds gridcolor URL parameter
- Adds scaled grid, replaces grid dots with grid lines
- Fixes anchors open in same page for embedded diagrams
- Moves Search, Scratchpad from Extras menu to View menu
22-FEB-2016: 5.3.0.6
- Updates Confluence Connect to use new page context mechanism
- Uses mxGraph 3.4.1.3 beta 6
- Adds rt, grid parameters for chromeless mode
- Fixes export dialog width, adds help button
- Detects data URI with XML in drag source
- Enables embed image menu in test mode
07-FEB-2016: 5.3.0.5
- Fixes direction, align, distribute menu states
- Adds tap and hold to add to selection
06-FEB-2016: 5.3.0.4
- Fixes possible NPE in plugins warning dialog
06-FEB-2016: 5.3.0.3
- Adds delayed quick start footer ad
- Removes voice assistant from help menu
- Moves ctrl+shift+j shortcut to two pages
- Disables hover icons while space is pressed
- Adds tooltips for buttons in format panel
- Fixes button label overflow in sidebar
05-FEB-2016: 5.3.0.2
- Replaces numeric keyboard shortcuts
05-FEB-2016: 5.3.0.1
- Fixes asynchronous loading of plugins
05-FEB-2016: 5.3.0.0
- Adds optional converter argument for canvas export
- Adds asynchronous loading for resources
- Uses mxGraph 3.4.1.3 beta 5
03-FEB-2016: 5.2.9.1
- Changes Confluence Cloud footer
03-FEB-2016: 5.2.9.0
- Ignores panning trigger to change edges
- Fixes sidebar rendering in math mode
- Uses mxGraph 3.4.1.3 beta 4
01-FEB-2016: 5.2.8.9
- Updates AWS icons
01-FEB-2016: 5.2.8.8
- Fixes offset for drag and drop of diagram data
- Fixes drop of SVG data URI with embedded XML
- Fixes download and export SVG to new window in Safari
- Fixes SVG export in older versions of IE
- Fixes drop shadow in SVG export for Safari
- Adds control-resize for centered resize of vertices
- Fixes import of SVG with embedded XML graph model
- Adds selection, transparent background for SVG export
- Adds include diagram option for image and SVG export
- Fixes open library file as diagram in Google Drive
- Adds pseudo-hierarchical view in Google library picker
29-JAN-2016: 5.2.8.7
- Fixes ignored background color for image export
- Fixes update of outline after changing page format
- Fixes edit shape button after insert of new shape
27-JAN-2016: 5.2.8.6
- Adds shadow option for image and SVG export
26-JAN-2016: 5.2.8.5
- Adds pseudo-hierarchical view in Google file picker
- Adds fallback for failed local image export
- Fixes lost connect preview after remote change
- Uses mxGraph 3.4.1.3 beta 3
25-JAN-2016: 5.2.8.4
- Fixes disabled transparent background export option
- Adds touch support for Microsoft Edge
- Adds pseudo-hierarchical view in Google folder picker
- Clean up for templates and more shapes dialog
- Adds selection only option in image export dialog
- Ungroup no longer deletes non-transparent groups
- Fixes paste via menu after ctrl/cmd+c
- Fixes hiding of all sidebar entries
- Uses mxGraph 3.4.1.3 beta 2
19-JAN-2016: 5.2.8.3
- Fixes collapse/expand for sidebars
19-JAN-2016: 5.2.8.2
- Fixes concurrent loading of custom libraries
- Improves initial sidebar rendering speed
18-JAN-2016: 5.2.8.1
- Uses mxGraph 3.4.1.4 beta 1
- Adds File, Move to Folder for OneDrive files
- Adds File, Rename menu item for all files
- Fixes spinner status for create revision
- Fixes edit as new for remote embedded diagrams
- Fixes minor bugs in search sidebar
- Fixes open in new window for save dialog
- Fixes edit diagram, search in Chrome app menubar
- Adds support for HTML tooltips in embedded diagrams
- Adds transparent background option for image export
15-JAN-2016: 5.2.8.0
- Uses mxGraph 3.4.1.3 beta 1
- Adds timeout for save revision in Drive