forked from jgraph/drawio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7030 lines (4767 loc) · 172 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
11-JUN-2019: 10.7.6
- Removes fallback to print dialog if offline in Electron
- Fixes broken link if Google Drive is not loading
04-JUN-2019: 10.7.5
- Fixes Math rendering in graph viewer
03-JUN-2019: 10.7.4
- Adds MathJax codebase
31-MAY-2019: 10.7.3
- Enabling saving diagrams when the associated custom content is deleted or not found
31-MAY-2019: 10.7.2
- Fixes loading custom plugins in embed mode with configure URL parameter
- Fixes math rendering with no scrollbars
29-MAY-2019: 10.7.1
- Adds JSON string for layouts in CSV import
- Fixes zoomed position for data store label
- Fixes changing of link colors in Firefox
- Fixes limitations for Google docs add-on
28-MAY-2019: 10.7.0
- Replaces octet-stream with vnd.jgraph.mxfile in Drive
- Fixes opaque background for server-side PNG export
- Fixes line jump rendering with child edge labels
- Fixes loading of large images via Insert dialog
- Adds support to show/hide layers via tags
- Adds edge flow to animation plugin
- Fixes saving of OneDrive libraries
25-MAY-2019: 10.6.9
- Fixes missing VSDX import in stealth mode
22-MAY-2019: 10.6.8
- Add VMware stencils
- VSDX import improvements
07-MAY-2019: 10.6.7
- Fixes first input element not firing change event
02-MAY-2019: 10.6.6
- Adds MS Active Directory stencils
- Improvements to GCP stencils
- Adds Confluence Cloud translations
24-APR-2019: 10.6.5
- Fixes style variation logic in VSDX import
24-APR-2019: 10.6.4
- Adds VSDX import improvements
- Adds new IBM stencils and template
- Add Cumulus stencils
16-APR-2019: 10.6.3
- Fixes handling of Infinity in geometries and points
- Uses mxGraph 4.0.1 beta 7
15-APR-2019: 10.6.2
- Adds generic layout menu item
10-APR-2019: 10.6.1
- Fixes issues with CSV import
- Adds pointerEvents style for stencils and AWS groups
- Uses new language locale API in Confluence cloud
- Uses mxGraph 4.0.1 beta 6
01-APR-2019: 10.6.0
- Adds configuration section for Confluence for cloud
- Free GDrive/OneDrive connector for Confluence cloud
- Adds show with draw.io option in OneDrive connector
- Improves handling of files with no extensions in GDrive connector
27-MAR-2019: 10.5.9
- Change to connection points and arrows trigger autosave
- Adds style options for edge labels in Arrange panel
- Fixes scroll during Alt+mouse wheel in Chrome
- Uses mxGraph 4.0.1 beta 5
26-MAR-2019: 10.5.8
- Hides icon in Confluence cloud for resolved comments
- Uses mxGraph 4.0.1 beta 4
26-MAR-2019: 10.5.7
- Adds comments in Confluence cloud viewer
- Improves Google file not found dialog
25-MAR-2019: 10.5.6
- Adds file ID and mime type in GDriveConnector macro editor
- Removes convert warning, cache alive check in lightbox
- Improves handling of redirects and invalid responses
- Removes connection arrows for edge labels
25-MAR-2019: 10.5.5
- Improvements for Gliffy import
- Uses mxGraph 4.0.1 beta 3
22-MAR-2019: 10.5.4
- Adds custom libraries for Confluence cloud
21-MAR-2019: 10.5.3
- Fixes timing issue in graph viewer
- Fixes date formats in VSDX import
- Fixes possible cropping for PDF export
20-MAR-2019: 10.5.2
- Fixes bug for comments in Confluence cloud
19-MAR-2019: 10.5.1
- Adds comments for Confluence cloud
18-MAR-2019: 10.5.0
- Uses .drawio extension in desktop app
- Removes spacers for rack layouts
- Uses mxGraph 4.0.1 beta 2
17-MAR-2019: 10.4.9
- Adds comments for Google Drive (beta)
15-MAR-2019: 10.4.8
- Adds autosaveDelay and defaultEdgeLength to drawio-config
15-MAR-2019: 10.4.7
- Realtime warning can be permanently closed
- Ignores read-only files in auto conversion
- Adds new issue viewer for Jira cloud
- Fixes Atlas theme in Safari
14-MAR-2019: 10.4.6
- Adds warning dialog for failed autosave after 10 minutes
- Improves error logging in Google Drive client
- Improves error handling for auto conversion
- Fixes shadow for PNG export in dark mode
13-MAR-2019: 10.4.5
- Fixes bug in Confluence cloud
- Fixes error handling
- Improves logging
12-MAR-2019: 10.4.4
- Adds blob.core.windows.net to known CORS urls
- Fixes loading of Visio templates via proxy
12-MAR-2019: 10.4.3
- Uses mxGraph 4.0.1 beta 1
11-MAR-2019: 10.4.2
- Adds logging
09-MAR-2019: 10.4.1
- Uses mxGraph 3.9.13 beta 18
09-MAR-2019: 10.4.0
- Handles timeouts in realtime convert tool
- Fixes bugs for older versions of IE
08-MAR-2019: 10.3.9
- Adds warning for Google Drive legacy files
- Adds language menu in Atlas theme
08-MAR-2019: 10.3.8
- Fixes possible NPEs
- Fixes possible clipping bugs
- Uses mxGraph 3.9.13 beta 17
08-MAR-2019: 10.3.7
- Creates revision for every autosave in Google Drive
- Fixes new Confluence editor issues
07-MAR-2019: 10.3.6
- Improves error handling for Google Drive
- Adds realtime file conversion tool
05-MAR-2019: 10.3.5
- Reduces possible number 403 errors in Drive
05-MAR-2019: 10.3.4
- Fixes possible NPE in plugin error handler
05-MAR-2019: 10.3.3
- Changes default extension to .drawio
- Updated UI styles
04-MAR-2019: 10.3.2
- Fixes Confluence Cloud Direct Edit Saving
02-MAR-2019: 10.3.1
- Fixes loading spinner for Trello
- Uses magic numbers for templates
01-MAR-2019: 10.3.0
- Adds validation step for Google file saving
- Adds last saved delay to status bar
- Adds page-id URL parameter
28-FEB-2019: 10.2.9
- Moves Confluence Cloud viewer settings to format panel
- Allows all content from docs.google.com via proxy
- Adds menu for moving selection to other layers
- Adds simple viewer option for Confluence Cloud
- Fixes bad CRC in PNG exports
25-FEB-2019: 10.2.8
- Fixes import of multiple pages into empty file
- Fixes macro shortcut handling in Confluence cloud
25-FEB-2019: 10.2.7
- Adds orthogonal loop, no jump property for edges
- Fixes default stylesheet for export in dark mode
- Fixes events for transparent swimlane titles
- Uses mxGraph 3.9.13 beta 16
22-FEB-2019: 10.2.6
- Adds page ID export for Confluence Cloud
- Fixes colored AWS19 icons library ID
20-FEB-2019: 10.2.5
- Adds fallback for unavailable sharing in Google Drive
- Fixes possible timing issues with open URL parameter
- Fixes link handling in legacy embedded diagrams
18-FEB-2019: 10.2.4
- Adds Microsoft Office add-ins
- Adds open URL parameter
15-FEB-2019: 10.2.3
- Adds interactive help for file name input fields
- Fixes handling of revisions for PNG files in Drive
- Adds shift click for Drive file details on app icon
- Adds Embed, Live image for public PNG files on Drive and GitHub
- Uses mxGraph 3.9.13 beta 15
11-FEB-2019: 10.2.2
- Adds refresh, new window in Confluence Cloud connector toolbars
- App icon links to file preview for Google Drive
09-FEB-2019: 10.2.1
- Fixes loading of configuration for confluence cloud
- Adds template-filename URL parameter for binary templates
- Fixes browser refresh for converted lightbox files
08-FEB-2019: 10.2.0
- Adds vsd(x) and gliffy support in GDrive Connector
07-FEB-2019: 10.1.9
- Renames load event for configuration to configure
05-FEB-2019: 10.1.8
- Fixes property focus after save
- Updated AWS 2019 icon colors
04-FEB-2019: 10.1.7
- Adds auto-resolution for Google add-ons
- Fixes minimum height for empty viewer
- Fixes shadow in SVG export/embed
- Fixes possible 404 in GitHub
29-JAN-2019: 10.1.6
- Removes alert for link errors
- Removes sync button
28-JAN-2019: 10.1.5
- Uses mxGraph 3.9.13 beta 14
25-JAN-2019: 10.1.4
- Adds download button in save dialog
- Adds shift to ignore current style
- Uses mxGraph 3.9.13 beta 13
21-JAN-2019: 10.1.3
- Fixes possible NPEs
- Uses mxGraph 3.9.13 beta 12
18-JAN-2019: 10.1.2
- Adds debug output
18-JAN-2019: 10.1.1
- Fixes possible NPEs
17-JAN-2019: 10.1.0
- Adds auth token refresh for OneDrive
16-JAN-2019: 10.0.43
- Fixes possible NPE in hashValue
16-JAN-2019: 10.0.42
- Fixes handling of invalid files
- Uses mxGraph 3.9.13 beta 11
15-JAN-2019: 10.0.41
- Adds ignored page size in checksum
15-JAN-2019: 10.0.40
- Fixes possible use of undefined variable
15-JAN-2019: 10.0.39
- Fixes shadow change check
15-JAN-2019: 10.0.38
- Fixes inconsistency in collaborative editing
- Handles possible call stack errors
- Uses mxGraph 3.9.13 beta 10
- Adds IC shapes
14-JAN-2019: 10.0.37
- Improves error logging
14-JAN-2019: 10.0.36
- Uses mxGraph 3.9.13 beta 9
- Adds debug output
13-JAN-2019: 10.0.35
- Fixes device option in splash
- Adds Insert Template
12-JAN-2019: 10.0.34
- Fixes save dialog icon CSS flow
12-JAN-2019: 10.0.33
- Adds support for strikeThrough style (beta)
- Adds dark opacity styles for note and cube
- Enables device storage on iOS
11-JAN-2019: 10.0.32
- Adds page view in format panel for read-only files
- Minor fixes for collaborative editing
- Uses mxGraph 3.9.13 beta 8
11-JAN-2019: 10.0.31
- Fixes critical bug for cell lookups
- Ignores page size in checksum
- Uses mxGraph 3.9.13 beta 7
10-JAN-2019: 10.0.30
- Ignores page width in checksum
- Uses mxGraph 3.9.13 beta 6
10-JAN-2019: 10.0.29
- Improved error handling for CSV import
- Uses mxGraph 3.9.13 beta 5
10-JAN-2019: 10.0.28
- Uses mxGraph 3.9.13 beta 4
- Fixes root folder dialog
10-JAN-2019: 10.0.27
- Ignores mxObjectId in diffsync
09-JAN-2019: 10.0.26
- Uses mxGraph 3.9.13 beta 3
08-JAN-2019: 10.0.25
- Ignores previous attribute in checksum
08-JAN-2019: 10.0.24
- Fixes critical bug with collaborative editing
08-JAN-2019: 10.0.23
- Adds debug output for checksum errors
- Adds custom properties in diffsync
- Fixes possible ReferenceError
- Fixes for Jira cloud plugin
05-JAN-2019: 10.0.22
- Adds initial change check in sync protocol
- Ignores numeric JS errors in checksum
- Fixes pending sync on inactive window
04-JAN-2019: 10.0.21
- Adds debug output for checksum errors
04-JAN-2019: 10.0.20
- Adds debug output for checksum errors
04-JAN-2019: 10.0.19
- Adds debug output for checksum errors
04-JAN-2019: 10.0.18
- Fixes checksum errors in lightbox mode
03-JAN-2019: 10.0.17
- Fixes sync for PNG files in desktop app
- Fixes handling of auth error in Drive
- Uses main app ID for Drive viewer
- Fixes clipping in Google add-ons
- Uses mxGraph 3.9.13 beta 2
- Fixes redo button state
- Removes debug output
02-JAN-2019: 10.0.16
- Handles shadow change during catchup
01-JAN-2019: 10.0.15
- Fixes error logging
01-JAN-2019: 10.0.14
- Fixes possible timing issue
29-DEC-2018: 10.0.13
- Improved error handling for collaborative editing
28-DEC-2018: 10.0.12
- Fixes possible select of deleted page
28-DEC-2018: 10.0.11
- Adds parameter check for connect apps
28-DEC-2018: 10.0.10
- Fixes for error logging
27-DEC-2018: 10.0.9
- Fixes sync for unsaved files in Desktop
- Adds Google Slides to Embed menu
- Ignores page names in checksum
- Fixes handling of lost pages
21-DEC-2018: 10.0.8
- Ignores undefined page names in diffsync
21-DEC-2018: 10.0.7
- Fixes checksum handling in desktop
- Uses mxGraph 3.9.13 beta 1
20-DEC-2018: 10.0.6
- Performance fixes for collaborative editing
- Fixes collaboration conflict errors
19-DEC-2018: 10.0.5
- Fixes for collaborative editing
19-DEC-2018: 10.0.4
- Fixes for night mode and responsive UI
18-DEC-2018: 10.0.3
- Disables sync in Chrome OS
- Fixes CSS issues
17-DEC-2018: 10.0.2
- Adds inactivity timeout for collaborative editing
17-DEC-2018: 10.0.1
- Fixes Google auth for OneDrive files
17-DEC-2018: 10.0.0
- Enables collaborative editing
- Hides footer
16-DEC-2018: 9.6.6
- Adds darker stroke colors for metro palettes
15-DEC-2018: 9.6.5
- Fixes for collaborative editing (beta)
14-DEC-2018: 9.6.4
- Uses mxGraph 3.9.12
13-DEC-2018: 9.6.3
- Uses mxGraph 3.9.11 beta 10
12-DEC-2018: 9.6.2
- Uses mxGraph 3.9.11 beta 9
11-DEC-2018: 9.6.1
- Adds source-/targetPerimeterSpacing to default style
- Fixes font style button states in Edge, FF and IE
- Removes Google realtime API
- Fixes focus handling on iOS
10-DEC-2018: 9.6.0
- Fixes for collaborative editing (beta)
- Fixes minor bugs
06-DEC-2018: 9.5.9
- Uses PlantUML build 4
04-DEC-2018: 9.5.8
- Fixes focus handling in format panel
04-DEC-2018: 9.5.7
- Removes dummy href attributes
04-DEC-2018: 9.5.6
- Uses mxGraph 3.9.11 beta 8
03-DEC-2018: 9.5.5
- Adds unsaved status for new files in Desktop
- Fixes minor CSS issues
03-DEC-2018: 9.5.4
- Fixes possible NPE in Desktop
03-DEC-2018: 9.5.3
- Uses mxGraph 3.9.11 beta 7
02-DEC-2018: 9.5.2
- Fixes caching issue with GitHub file sync
30-NOV-2018: 9.5.1
- Fixes Gliffy import alignment issue
- Fixes properties panel focus issue
30-NOV-2018: 9.5.0
- Fixes tolerance for distance guides
- Adds collaborative editing (beta)
- Restores libraries after login
- Uses mxGraph 3.9.11 beta 6
28-NOV-2018: 9.4.7
- Adds multiple page PDF export option
- GraphML import improvements
- Adds addition IBM cloud stencils
- Adds Data Flow Diagram stencils
21-NOV-2018: 9.4.6
- Fixes corrupted chars in XML from JSON backup import
20-NOV-2018: 9.4.5
- Adds 2018 AWS icons
- Uses mxGraph 3.9.11 beta 5
16-NOV-2018: 9.4.4
- Adds GraphML import
15-NOV-2018: 9.4.3
- Internal release
12-NOV-2018: 9.4.2
- Fixes undoable edit when expanding Advanced sidebar
- Fixes handling of initial default background color
- Fixes shadow in client-side image and SVG export
- Adds realtime import and export in test mode
- Adds refresh menu item for all file types
- Removes static page text in lightbox mode
- Fixes keyboard shortcut for refresh file
- Restores view state after refresh file
- Adds distance guides
09-NOV-2018: 9.4.1
- Fixes links to revision history from status
- Hides static page text in embed mode
- Enables import from device on iOS
08-NOV-2018: 9.4.0
- Disables Google realtime on 11/12/2018 at 9:00am (UTC)
06-NOV-2018: 9.3.4
- Improves sanity check for Google Drive files
- Uses mxGraph 3.9.11 beta 4
02-NOV-2018: 9.3.2
- Adds sanity check for Google Drive files
26-OCT-2018: 9.3.1
- Adds current page index to JSON protocol
- Adds viewBox, target _top for SVG export
- Fixes selectDescendants keystroke
- Minor fixes for dark mode styles
- Uses mxGraph 3.9.11 beta 2
22-OCT-2018: 9.3.0
- Adds write permission in OneDrive client
- Adds link option in SVG export dialog
- Adds link to save status message
19-OCT-2018: 9.2.9
- Adds OneDrive for Business and Sharepoint integration
19-OCT-2018: 9.2.8
- Improves various Gliffy import issues
- Fixes inverted MovePage state after decoding
15-OCT-2018: 9.2.7
- Fixes local templates path
14-OCT-2018: 9.2.6
- Fixes possible NPE during delayed loading of plugins
14-OCT-2018: 9.2.5
- Adds customPresetColors, override config option
- Adds enabledLibraries, libraries config option
- Adds templateFile config option
- Uses mxGraph 3.9.11 beta 1
11-OCT-2018: 9.2.4
- Adds font, customFonts and -ColorSchemes config options
- Adds open page in Confluence Cloud lightbox toolbar
- Fixes property editing in minimal UI
08-OCT-2018: 9.2.3
- Adds shape properties panel (beta)
- Uses mxGraph 3.9.10
05-OCT-2018: 9.2.2
- Embed mode loads all supported formats
- Uses mxGraph 3.9.10 beta 2
- Adds vars URL parameter
03-OCT-2018: 9.2.1
- Ignores mode in Google Drive fallback
03-OCT-2018: 9.2.0
- Configurable ui and plugins for Confluence Cloud
- Fixes fallback for public Google Drive URLs
- Adds configure=1 URL parameter and protocol
- Ctrl+Shift connect sets source constraint
- Removes #C configuration switch
21-SEP-2018: 9.1.8
- Fixes minor constraint check bug for new connections
- Uses mxGraph 3.9.10 beta 1
21-SEP-2018: 9.1.7
- Adds flow plugin
- Uses mxGraph 3.9.9
- Adds metro color palette
- Fixes VSDX export in IE11
- Adds plugins menu in embed mode
18-SEP-2018: 9.1.6
- Updates connection arrows and handle colors
17-SEP-2018: 9.1.5
- Fixes folder picker callback
17-SEP-2018: 9.1.4
- Adds root option before Google folder dialog
- Adds arrows=new URL parameter for feedback
- Adds data-attributes in svgdata plugin
12-SEP-2018: 9.1.3
- Improvements to GCP stencils
- Fixes Gliffy import of UML frames
31-AUG-2018: 9.1.2
- Allows empty referer for proxy requests
30-AUG-2018: 9.1.1
- Simpler provided/required interface shapes
- Fixes comic style for filled swimlanes
- Fixes preview for general sidebar
- Uses mxGraph 3.9.9 beta 9
29-AUG-2018: 9.1.0
- Adds content inspection in proxy server
- Uses minimal UI for small screens
27-AUG-2018: 9.0.9
- Uses mxGraph 3.9.9 beta 8
- Adds new color palette
- GCP stencil updates
23-AUG-2018: 9.0.8
- Fixes XSS vulnerability in Trello Power-Up
- Fixes GCP service cards icon set
22-AUG-2018: 9.0.7
- Add expanded product and service cards to GCP icon set
17-AUG-2018: 9.0.6
- Changes to GCP icon set
14-AUG-2018: 9.0.5
- Fixes NPE in VSDX export
- Improves vsdx import layer support
- Improves GraphML import support
10-AUG-2018: 9.0.4
- Add filter to proxy servlet
01-AUG-2018: 9.0.2
- Adds missing rounded format option
- Fixes tolerance for connect arrows
- Uses mxGraph 3.9.9 beta 7
- Fixes docker build
31-JUL-2018: 9.0.1
- Fixes insert to GitHub with URL parameter
28-JUL-2018: 9.0.0
- Disables persisted default styles
- Fixes inserting files to GitHub
26-JUL-2018: 8.9.9
- Adds support for hierarchies in CSV import
- Updates colors for Atlas theme
- Uses mxGraph 3.9.9 beta 6
23-JUL-2018: 8.9.8
- Changes PlantUML autosize parameter to default to true
- Improves error handling, imports
- Uses mxGraph 3.9.9 beta 5
18-JUL-2018: 8.9.7
- Uses new PlantUML version
18-JUL-2018: 8.9.6
- Fixes vertical offset for text editing with small fonts
- Fixes repaint of placeholders in text for custom shapes
- Fixes lost cursor after certain keyboard shortcuts
- Fixes clipboard state after cut keyboard shortcut
- Fixes minor issues for Confluence Cloud
- Adds draft state for Trello attachments
- Uses mxGraph 3.9.9 beta 4
13-JUL-2018: 8.9.5
- Fixes clipping for MathJax print preview in Safari
- Uses mxGraph 3.9.9 beta 3
- Fixes minor memory leak
11-JUL-2018: 8.9.4
- Removes foreignObjects for MathJax
- Fixes adding rows to tables
- Uses mxGraph 3.9.9 beta 2
09-JUL-2018: 8.9.3
- Fixes rounded style option for containers
- Moves webcola plugin to layout menu
- Fixes minor errors in print preview
- Uses mxGraph 3.9.9 beta 1
06-JUL-2018: 8.9.2
- Enables tags dialog in read-only files
- Fixes cell detection in fast preview
- Fixes improved shape search index
- Fixes undo for webcola plugin
04-JUL-2018: 8.9.1
- Fixes initial scroll offset in minimal UI
- Fixes possible invalid height for viewer
04-JUL-2018: 8.9.0
- Faster preview in Chrome, Firefox and Edge (beta)
- Adds responsive menubar in minimal UI
- Add tickets and webcola plugins
- Adds #C configuration switch
- Uses mxGraph 3.9.8 beta 1
26-JUN-2018: 8.8.7
- Fixes custom content view in Confluence Cloud
- Disables click sidebar collapse
- Uses inline window for text plugin
- Adds showStartScreen in Chrome App
- Disables plantUML when offline
21-JUN-2018: 8.8.6
- Improves detection of gliffy macro in conf cloud
- Fixes inconsistent menus
21-JUN-2018: 8.8.5
- Fixes delete property in data dialog
- Improvements for Lucidchart import
- Improvements for minimal UI
- Uses mxGraph 3.9.7 beta 4
20-JUN-2018: 8.8.4
- Fixes plugins for minimal UI
- Fixes relative links in Confluence Cloud
19-JUN-2018: 8.8.3
- Fixes typo for Allied Telesis
19-JUN-2018: 8.8.2
- Adds Allied Telesys sidebar
- Removes clipart from default cache
- Adds copy/paste size in Arrange panel
- Adds support for tags in link actions
- Adds support for custom link actions
14-JUN-2018: 8.8.1
- Adds detection of object type in link action
14-JUN-2018: 8.8.0
- Fixes label link detection cases in Firefox
13-JUN-2018: 8.7.10
- Fixes possible NPE in Electron
13-JUN-2018: 8.7.9
- Fixes possible NPE
13-JUN-2018: 8.7.8
- Fixes scroll wheel zoom while panning
- Fixes print of white text in Chrome
- Adds cell ID in metadata dialog
- Adds support for custom links
- Uses mxGraph 3.9.7 beta 3
11-JUN-2018: 8.7.7
- Fixes editing nested links in Firefox after Gliffy import [7098]
06-JUN-2018: 8.7.6
- Fixes proxy servlet response headers
- Ignores invalid Iconfinder response
- Adds email in Google user info
05-JUN-2018: 8.7.5
- Uses mxGraph 3.9.7 beta 2
- Uses mxgraph-core 3.9.6
03-JUN-2018: 8.7.4
- Fixes possible SSRF in proxy servlet
02-JUN-2018: 8.7.3
- Fixes overridden layout menu
- Uses mxGraph 3.9.7 beta 1