forked from yousafgill/draw.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6358 lines (4363 loc) · 159 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
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
01-JUN-2018: 8.7.2
- Changes to Confluence Cloud image servlet
01-JUN-2018: 8.7.1
- Moves import CSV to insert menu
31-MAY-2018: 8.7.0
- Adds editableCssRules style
- Uses mxGraph 3.9.6
29-MAY-2018: 8.6.9
- Adds enableCustomLibraries switch
- Fixes math rendering timing bug
- Uses mxGraph 3.9.6 beta 1
- Uses MathJax 2.7.4
24-MAY-2018: 8.6.8
- Fixes math typesetting in PDF export
- Fixes NPE in minimal UI
- Uses mxGraph 3.9.5
23-MAY-2018: 8.6.7
- Adds #S parameter for loading from CSV source
- Adds support for VSD files in cloud storage
- Adds Lucidchart support for #U parameter
22-MAY-2018: 8.6.6
- Fixes enabled state for some menu items
- Moves SQL and PlantUML to insert menu
- Fixes loading libraries from OneDrive
- Adds reverse edge to context menu
17-MAY-2018: 8.6.5
- Fixes timing error for export in Safari
- Fixes change UI font size bug
- Uses mxGraph 3.9.4
- Fixes minor bugs
14-MAY-2018: 8.6.4
- Improvements to electron build
11-MAY-2018: 8.6.3
- Adds F5 icons plugin
09-MAY-2018: 8.6.2
- Replaces domain apex redirect
08-MAY-2018: 8.6.1
- Fixes links for transparent groups in viewer
- Fixes minimal UI for small screens
- Uses mxGraph 3.9.4 beta 6
06-MAY-2018: 8.6.0
- Fixes outline connect for BPMN shapes
- Adds opacity to default style
- Uses mxGraph 3.9.4 beta 5
- Adds minimal UI
01-MAY-2018: 8.5.15
- Fixes showing device when no other storage options available
- Fixes indexing with multiple diagrams on page in Confluence Cloud
30-APR-2018: 8.5.14
- Fixes XSS vulnerability in Trello Power-Up
27-APR-2018: 8.5.13
- Adds infographic library
- Adds device option in export dialogs
20-APR-2018: 8.5.12
- Adds test case for Google auth errors
20-APR-2018: 8.5.11
- Fixes plantuml insert
- Fixes PDF export size
- Uses mxGraph 3.9.4 beta 4
17-APR-2018: 8.5.10
- Disables autosave for realtime connect errors
- Fixes format panel background in dark theme
- Adds click on export option labels
- Adds namespace for CSV import
- Changes help links in dialogs
10-APR-2018: 8.5.9
- Reverts macro inconsistency check for Confluence Cloud
08-APR-2018: 8.5.8
- Adds logging for disconnect error
07-APR-2018: 8.5.7
- Improved handling for Google disconnect error
05-APR-2018: 8.5.6
- Revert export server for Desktop version to phantom until full fix found
05-APR-2018: 8.5.5
- Changes Plant export URL
- Adds JS redirect from http to https
05-APR-2018: 8.5.4
- Works around Chrome 65 bug with echo downloads
04-APR-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