forked from yousafgill/draw.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4848 lines (3417 loc) · 128 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
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
- 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