-
Notifications
You must be signed in to change notification settings - Fork 23
/
ChangeLog
9800 lines (6617 loc) · 241 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
27-JAN-2022: 16.4.11
- Fixes build process to deploy teams.html
27-JAN-2022: 16.4.8
- [desktop] Fixes draft files removal when auto-save is enabled
- Edit connection points dialog can now only be closed via the dialog button
- [conf cloud] Disables editing if confluence page is opened inside another service (e.g, Jira project pages)
- Shows label in edit connection points dialog https://github.com/jgraph/drawio/issues/864
- Fixes touch event handling on Android https://github.com/jgraph/drawio/issues/2579
- [desktop] Sets offline and offlineApp true
- [desktop] Display meaningful error when content is imported that requires server
https://github.com/jgraph/drawio/issues/2117
- Fixes drag from picker for Chrome on touch devices
25-JAN-2022: 16.4.7
- Improves output validation of AbsAuthServlet [DND-371]
- Improves redirect url validation [DND-370]
- Changes child-src from none to self
- Fixes two windows with disabled start screen https://github.com/jgraph/drawio-desktop/issues/883
- Fixes handling of hidden stroke in RoughCanvas
- Fixes order and start point for circle layout
- Removes tags and layers icon in sketch footer
- [conf cloud] Replaces deprecated dialog.on('close', ...)
- [conf cloud] Forces sketch mode even when config sets ui
- Improves connection points dialog
24-JAN-2022: 16.4.6
- Fixes border for waypoint shape with sketch style
- [conf cloud] Added support for "new line" in page name in PageIds Export
- Fixes configurations not saving https://github.com/jgraph/drawio-desktop/issues/873
21-JAN-2022: 16.4.5
- Corrects SHA for bootstrap
21-JAN-2022: 16.4.4
- Fixes undeclared variable idx
- Adds a confirmation step to public Github deployment
- Enables reverse action for edges https://github.com/jgraph/drawio/issues/2569
- Switches to dev branch of i18n submodule
- [conf cloud] Uses content.id instead of the deprecated page.id
- [conf cloud] Fixes errors of spaces in diagram name and NPE in GraphViewer
20-JAN-2022: 16.4.3
- [jira cloud] Adds refresh button to diagram search page
- Fixes duplicate flipEdge function
- Adds unknownStyle option for CSV import
- Uses new app path in Dropbox
19-JAN-2022: 16.4.2
- Fixes NPE on destroyParentHighlight
19-JAN-2022: 16.4.1
- Fixes NPE in CropImageDialog
- Expands format window on large screens in sketch
- Fixes parent highlight after change of parent
19-JAN-2022: 16.4.0
- Adds helper function for tree layouts
- Fixes inkscape svg export size
- Adds support for special characters and html entities in string properties
- Adds sketch default font to PWA cache
- Fixes crop button state
- Adds insert menu in sketch sidepanel
- Bypasses proxy for Google fonts, adds font mapping
- Fixes local folder for Google font in cell style
- Adds mapping from font CSS URLs to font-face CSS
18-JAN-2022: 16.3.0
- Fixes hardcoded textarea dialog size
- Adds snapToGrid action
- Adds flip for groups and edges https://github.com/jgraph/drawio/issues/1895 /1139
- Fixes copySize enabled state for edges
- Embeds sketch default font (Architects Daughter)
- Clears background image with background color
- Fixes mouse wheel zoom in Brave for Windows https://github.com/jgraph/drawio/issues/2528
- Adds support for enumerating edges
14-JAN-2022: 16.2.7
- Adds enumerateValue property
- Adds peristent scratchpad and search in sketch
- Updated for modified inline CSS
- Fixes realtime zoom on iPad with sketch https://github.com/jgraph/drawio/issues/2545
12-JAN-2022: 16.2.6
- Fixes NPE
12-JAN-2022: 16.2.5
- Fixes reset of grid color
- Adds File submenu, windows=0 test URL parameter
- Adds enumerate property to replace number plugin
- Adds non-destructive image cropping https://github.com/jgraph/drawio/issues/73
- Adds Advanced submenu in Import from
- Adds mailto for short text sharing
- Adds ellipsis for Comments menu item
- Fixes broken background page links after import
07-JAN-2022: 16.2.4
- Fixes duplicate edges in CVS import
- Adds Convert labels to SVG option to SVG export
07-JAN-2022: 16.2.3
- Uses tableRow in ERD shapes
- Handles special title sizes in table
- Adds labels checkbox in More Shapes dialog
05-JAN-2022: 16.2.2
- Disables merging for merged cells
- [conf cloud] Adds support for anchor importing from server + support for adding links to anchors in old editor
- Adds precedence for alt on mouse down
- Adds Shift+Click for table range selection
- Fixes insertRow/Column for selected cell range
04-JAN-2022: 16.2.1
- Fixes cell divider event handling
04-JAN-2022: 16.2.0
- Fixes MathJax anti-aliasing in CLI export https://github.com/jgraph/drawio/issues/2253
03-JAN-2022: 16.1.4
- Fixes possible NPE
03-JAN-2022: 16.1.3
- Fixes highlight for table shapes
30-DEC-2021: 16.1.2
- Adds fillStyle dropdown for image background
29-DEC-2021: 16.1.1
- Avoids creating Blob for parseFile
- Fixes dimension shape with large stroke size https://github.com/jgraph/drawio/issues/271
- Hides foreign object warnings in background pages
- Fixes overflows in minimal and sketch theme https://github.com/jgraph/drawio/issues/2509
- Fixes freehand mode for Apple pencil on iOS https://github.com/jgraph/drawio/issues/2510
- Adds tableRow shape, fixes events for merged cells
- Uses clip path attribute for SVG image clipping
- Fixes default label background for imported images
- Fits image to clipPath bounding box
- Fixes collapsed table foreground https://github.com/jgraph/drawio/issues/2512
- Fixes overflow in LinkDialog
- Disables child layout for collapsed cells
23-DEC-2021: 16.1.0
- Fixes inconsistent event cursors on table lines
- Fixes default lanecolor for UML frame
- [conf cloud] Reduces number of comments requests
- Refactor structure of WEB-INF folder
21-DEC-2021: 16.0.3
- Adds Share and Comments in sketch File menu
- Fixes no stroke in Roughjs, adds swimlaneHead/Body
- Uses persisted default grid color
- Fixes rendering and tooltips for special colors
- Fixes initial placement of shapes window
- Uses Pusher 7.0.3 to fix NPE
21-DEC-2021: 16.0.2
- Re-build
21-DEC-2021: 16.0.1
- Fixes possible NPE
17-DEC-2021: 16.0.0
The reason for going to version 16 is there is a breaking change in the docker image. The
default base image used has been changed because the previous image was not supported. There
is no breaking change in the editor codebase, but the docker images follow the same numbering.
- Fixes clipping on initial arrow drop down https://github.com/jgraph/drawio/issues/2482
- Fixes table and template icon in sketch mode
- Restores sync problem icon
- Hides Cmd+R keyboard shortcut in Safari https://github.com/jgraph/drawio/issues/1757
- Moves selection state to EditorUi
- Added scrollbar to layersDialog in GraphViewer https://github.com/jgraph/drawio/issues/1347
- Added dark mode support for Mermaid https://github.com/jgraph/drawio-desktop/issues/785
- [conf cloud] Added minorEdit for page changes just in case it is effective
13-DEC-2021: 15.9.6
- Fixes NPE for wheel event in outline window
13-DEC-2021: 15.9.5
- Ctrl disables copy if enabled by default
- Uses action state for (un)group buttons
- Altered AWS group styles for better usability
- Fixes no pointerEvents for no (fill)opacity
- Fixes for AWS container usability
- Uses lazyZoom and adds trackpad in outline window
- Fixes dark mode support in browser picker
- Fixes ignored stroke option in SVG getBBox https://github.com/jgraph/drawio/issues/2484
-
08-DEC-2021: 15.9.4
- Adds mxShape.intersectsRectangle
- Shows row-/colspan property for table cells
- Fixes style processing issues https://github.com/jgraph/drawio-desktop/issues/843
08-DEC-2021: 15.9.3
- Adds commons-lang3 3.12.0 for commons text dependency
08-DEC-2021: 15.9.2
- Keeps only window title inside viewrect
- Fixes handling of defaults in copy/paste style
- Removes GoogleGadgetServlet
- Improves handling of special style values
- Uses map in signature of Graph.updateCellStyles
- Fixes possible unresolved values in default style
- Fixes unresolved colors in style thumbnail
- Fixes background page for PDF export in dark mode
- Fixes line cap for partial rectangle https://github.com/jgraph/drawio-desktop/issues/813
- Fixes ignored model for change of cells in event
03-DEC-2021: 15.9.1
- Fixes build error
03-DEC-2021: 15.9.0
- Fixes possible hidden tool windows in sketch
- [conf cloud] Fixes page ids export error log
- [conf cloud] Adds fallback for the viewer when a file returns 403 for a specific version
- Fixes in-app help search query
- Improves pinch to zoom on trackpad https://github.com/jgraph/drawio/issues/2469
- Updates GCP icons
02-DEC-2021: 15.8.9
- Adds Shift+Click on Zoom in Sketch theme
- Add table divider handles with col/rowspan
- Fixes text selection with inline OneDrive picker https://github.com/jgraph/drawio/issues/2444
30-NOV-2021: 15.8.8
- Hides xml extension in library title https://github.com/jgraph/drawio/issues/2448
- [vsdx] Improves font-size and line height and links to internal pages
- Fixes file exists check in GitHub
29-NOV-2021: 15.8.7
- Fixed string replace when label has a new line https://github.com/jgraph/drawio/issues/2015
- Removes dots fill pattern https://github.com/jgraph/drawio/issues/2443
- Fixes parsing of base64 PNG with XML and no prefix
- Hides empty table section in Arrange panel
- Ignores cached style in table background
- Shows error if popup is blocked in Google Drive
- Adds 2px between scrollbar and elements
- Uses rgb for default colors in output https://github.com/jgraph/drawio/issues/2445
- Fixes rgb values in SVG gradient IDs [DID-3797]
24-NOV-2021: 15.8.6
- Adds support for refresh token to github
- Adds authorize, refresh and help buttons in GitHub
- [conf cloud] Fixes NPE in page ids import/export
24-NOV-2021: 15.8.5
- Removes alignment from current style
- Handles combined row- and colspans
- Adds Ctrl+Enter in text and data dialog https://github.com/jgraph/drawio/issues/2438
- Removes last row and column line
- Conf Cloud: Added custom templates preview https://github.com/jgraph/drawio/issues/2436
- Handles resource not accessible in GitHub
- Fixes reset of configuration, adds tooltip
22-NOV-2021: 15.8.4
- Fixes move of edge labels after ungroup https://github.com/jgraph/drawio/issues/2433
- [conf cloud] Added space filtering to page collection to avoid CONFCLOUD-73202
- Fixes default color and other possible rgba colors in vsdx export
- [conf cloud] Added revision history to Board macro
19-NOV-2021: 15.8.3
- Removes whitespace in resource values
- Uses SVG for folding icons https://github.com/jgraph/drawio/issues/2359
- Matches folding icon gradient colors
- Ignores icon search response with error code
- Fixes broken check for supported domain https://github.com/jgraph/drawio/issues/2426
- Adds check for enabledLibraries
- Moves page setup and scale to preferences in sketch
- Ignores disabled libraries in search https://github.com/jgraph/drawio/issues/1838
- Moves page setup to file menu
17-NOV-2021: 15.8.2
- [conf cloud] Fixes diagrams with non-English characters in name
17-NOV-2021: 15.8.1
- Changes Trello API key
- Adds drawiolib files in OneDrive inline picker
- Fixes preview for libraries in OneDrive picker
- Fixes connectable for multiple vertices https://github.com/jgraph/drawio/issues/2383
- Update to kr translations, thanks to Hochul cho
17-NOV-2021: 15.8.0
- Switches to command line deployment script
- Uses API for inline styles
- Fixes chrome extension link color
- Replaces inline CSS styles with DOM API
- Uses larger handles for line end https://github.com/jgraph/drawio/issues/1683
- [conf cloud] Allows page ids import to continue when Confluence fails to list all pages
- Fixes event handling for Chrome on Linux https://github.com/jgraph/drawio/issues/2392
- Fixes clear waypoints keyboard shortcut https://github.com/jgraph/drawio/issues/2420
- Fixes handling of PNG data URL with charset
15-NOV-2021: 15.7.4
- Adds titlebar to desktop sketch mode
- Adds styles config type check
- Adds rowspan for row line rendering
10-NOV-2021: 15.7.3
- [teams] Fixes shapes rendering in picker
10-NOV-2021: 15.7.2
- Fixes pointer events in sketch mode https://github.com/jgraph/drawio-desktop/issues/760
- Fixes undo history after table insert
- Fixes delayed style change in table shape
08-NOV-2021: 15.7.1
- Makes all C4 shapes attributes editable
- Enables transparent default page background color
- Separate cell style for dark mode no longer needed
- Applies AWS stencil colors for light background
05-NOV-2021: 15.7.0
- Add missing GCP3 file to build
05-NOV-2021: 15.6.9
- Adds new GCP icons
- Limits Google and disabled editing in mobile apps (webview) to MS Teams only
- Fixes line visible in ERzeroToMany marker https://github.com/jgraph/drawio/issues/22386
- Adds additional SVG sanitizing
- Fixes zero to one/many marker fill color https://github.com/jgraph/drawio/issues/2386
03-NOV-2021: 15.6.8
- Fixes handling of transparent default colors
03-NOV-2021: 15.6.7
- Fixes overridden colors in UI update callback
02-NOV-2021: 15.6.6
- Fixes scrolling with css transforms [DID-3588]
- Fixes hardcoded default colors
01-NOV-2021: 15.6.5
- Fixes change of default style
01-NOV-2021: 15.6.4
- Moves resolve default colors to cell style https://github.com/jgraph/drawio/issues/2370
- Adds default text border color
- FIxes handling of Atlas mode and default colors
- Updates default color via prototype
- Fixes sticky scrollbar in FF on Windows [DID-3588]
- Restores previous Notion embed menu
31-OCT-2021: 15.6.3
- Hides dragHandle while editing diagram
- Fixes inline embed resize moves format panel
- Fixes handling of default colors in SVG output
- Notion extension improvements
28-OCT-2021: 15.6.2
- Fixes bounding box scale for SVG clipping https://github.com/jgraph/drawio/issues/2257
- Uses default style for thumbnails
- Improves handling for background colors in Notion
- Fixes remove rounded diagram style for line https://github.com/jgraph/drawio/issues/2066
- Adds sidebarTitles, sidebarTitleSize config https://github.com/jgraph/drawio/issues/1893
- Adds drag and drop to swap UML lifelines https://github.com/jgraph/drawio/issues/982
- Adds exit point for inline embed protocol
- Hides dragHandle while editing diagram
- Fixes inline embed resize moves format panel
27-OCT-2021: 15.6.1
- Handles of dark mode change for diagram styles
- Uses waypoint shapes, removes hardcoded colors
- Ignores some edge styles when inserting templates
- [jira cloud] Hide draw.io button when no diagrams are in the issue
- Uses default not current style for import
- [conf cloud] Log viewer xml errors
- Fixes OneDrive inlinePicker config error
- [conf cloud] Added simpleViewer global config
26-OCT-2021: 15.6.0
- First release of Notion Chrome extension
- Add trigger of release on push of VERSION to release branch
- Adds embed viewport
- [conf cloud] Stops unnecessary viewer refreshes
- Keeps windows inside embed viewport
22-OCT-2021: 15.5.9
- Fixes stroke and font color in dark mode https://github.com/jgraph/drawio/issues/2338
21-OCT-2021: 15.5.8
- Fixes NPE in OneDrive inline picker
- [conf cloud] Fixes JSON validation CSP no-eval restriction
- Improves error handling for inline embed mode
- Fixes ignored configured styles in sketch mode
20-OCT-2021: 15.5.7
- Fixes rendering of row lines https://github.com/jgraph/drawio/issues/2332
- Fixes hardcoded dark mode colors
- Adds oneDriveInlinePicker switch https://github.com/jgraph/drawio/issues/2330
- Adds settingsName config
- Fixes color override for non-formatted text
- Changes for conf server to use sketch mode
- Fixes in-place editor default color
- Adds Graph.defaultForegroundColor
- Fixes background page default foreground
19-OCT-2021: 15.5.6
- [conf Cloud] Adds Config JSON Schema validation and error check in viewer
- Minor fix for inline embed mode
18-OCT_2021: 15.5.5
- Adds support for "primary key (PK)" SQL syntax #DID-3505
- Fixes crop to selection in export https://github.com/jgraph/drawio/issues/2324
15-OCT-2021: 15.5.4
- Fixes NPE in TableShape.paintForeground
15-OCT-2021: 15.5.3
- Fixes background clipping, in-place bounds changes
- Fixes clipping in EmbedDialog
- Updates C4 shapes
- Fixes new page defaults, adds stepper shift+click
- Fixes possible getAttribute is not a function
- Fixes export to GitLab https://github.com/jgraph/drawio/issues/1784
- Removes save and import servlet
- Fixes ignored edge source for metadata [DID-3512]
12-OCT-2021: 15.5.2
- Disables plugins, shows sketch for inline embed
- Adds fullscreenExitImage
- Adds Editor.enableExportUrl
- Updates current style for fillStyle change
- Uses shift+click for stroke, alt+click for fill
- Fixes logic for alt and shift click
- Adds defaultGridEnabled/-PageVisible config https://github.com/jgraph/drawio/issues/2306
- Stops editing on exit inline embed mode
11-OCT-2021: 15.5.1
- Adds embedInline URL parameter
- Uses system dark mode for default
- Fixes library depends on current edge style https://github.com/jgraph/drawio/issues/2308
- Fixes handling of inlineFullscreen iframe
08-OCT-2021: 15.5.0
- Adds inches and meters as units
- Fixes date formatted labels on vsdx import
- Fixes possible NPE in Gitlab client
- Fires CELLS_ADDED for duplicating cells https://github.com/jgraph/drawio/issues/2298
- Adds embed fonts option in SVG export
- Fixes fonts for embedded SVG files with callback
- Ports resource generation to JS (Node)
- Fixes clipping for longer button labels
- Fixes possible clipping in download PDF dialog
- Fixes pointer events with no fill color in sketch
- Adds numbered property, fixed for sketch theme
- Fixes math output in JSON protocol export
- i18n update Lambda function
- Adds i18n resources as a submodule in internal repo
05-OCT-2021: 15.4.3
- Tides NPEs from logging
05-OCT-2021: 15.4.2
- [conf/jira cloud] Changes theme to Kennedy
- Adds grid URL parameter https://github.com/jgraph/drawio/issues/1882
- Adds table actions for child cells in stacks
- Fixes PDF export with background page in dark mode
- Adds preview for moved cells with arrow key https://github.com/jgraph/drawio/issues/1146
- [conf cloud] Adds embed from GitHub
- Improves CSV import for groups, values and sizing
- Fixes ignored zoom for arrows keys
01-OCT-2021: 15.4.1
- [gliffy] Hides shapes fully in -ve coord
- Fixes lineheight and regex https://github.com/jgraph/drawio/issues/2280, adds rowspan
- Fixes possible getAttribute is not a function
- Fixes update of current style for label editing https://github.com/jgraph/drawio-desktop/issues/727
- Fixes update of color button, handling of rgba
30-SEP-2021: 15.4.0
- Adds pages switch for sketch mode
- Fixes format panel styling in sketch mode
- Fixes stroke tolerance for disabled pointer events
- Adds Double Block arrow end style
- [lucidchart] Improves freehand stencil import
- Fixes connection point contrast https://github.com/jgraph/drawio/issues/712
- Fixes text shape size
- Fixes ignored current styles
- Fixes autosize for groups https://github.com/jgraph/drawio/issues/509
- Fixes clipping in Safari in chromeles mode https://github.com/jgraph/drawio/issues/2277
- Adds Alt+Drag to select intersection https://github.com/jgraph/drawio/issues/297
- Uses shadowModified for saving storage files
- Changes active page tab text color
29-SEP-2021: 15.3.8
- Fixes width for list dropdown on the arrow heads
- Switches search to use www.diagrams.net
- Improves error handling of invalid config values
- Fixes text inconsistencies in sketch mode
- Adds dark mode and fullscreen to preferences menu
28-SEP-2021: 15.3.7
- Ignores floating terminal points for snapping
- Improved lollipop notation https://github.com/jgraph/drawio/issues/2270
- Fixes for sketch toggle
- Fixes sketch mode used in non-sketch themes
28-SEP-2021: 15.3.6
- Replaces cssText with DOM API
- Replaces cssText and innerHTML with DOM API
-[conf cloud] Fixes duplicate name of copied diagrams
27-SEP-2021: 15.3.5
- Fixes inconsistent styling in format panel
- Fixes scrollbar dependency for some format options
- Fixes NPE of localStorage.setItem
26-SEP-2021: 15.3.4
- Moves sketch option to preferences menu
- Fixes mxSetting NPE
25-SEP-2021: 15.3.3
- Fixes update of zoom label
- Invokes cellsInserted for table rows and cells
- Fixes user panel styles
- Uses Alt+Wheel for zoom in sketch theme
- Fixes update of background page image
- Adds sketch toggle, moves options to context menu
- Fixes zIndex for user panel over format window
- Fixes for Teams app
- Uses sketch theme on small screens
- Fixes encoding of tags URL parameter
24-SEP-2021: 15.3.2
- Fixes NPE in ODPicker
- Fixes NPE in notifications
23-SEP-2021: 15.3.1
- Improves extra pages in PDF export
- Self-host JQuery for Trello and removing its CDN from CSP header
- Adds table controls for stacks https://github.com/jgraph/drawio/issues/2260
- Fixes inconsistent event handling with no stroke
- Fixes default font size and vertical alignment
- Adds insert table option in sketch toolbar
- Fixes shift+drag for column handle in table https://github.com/jgraph/drawio/issues/2262
22-SEP-2021: 15.3.0
- Fixes handling folder error while loading preview
- Fixes svg/png with dark theme, background pages
- Escapes HTML entities in file titles
- Escaped innerHTML when mxResources is used in ODPicker
- Fixes cellToClone is not defined
- Adds electrical shapes
- Updates pt-br translation. Thanks to Marcelo Filho.
16-SEP-2021: 15.2.9
- Fixes OneDrive inline picker script not loaded
16-SEP-2021: 15.2.8
- Moves enableWebFonts switch to Editor
- Fixes inconsistent naming for shadowOptionEnabled
- Adds more label flexibility to C4 Database shape
- Uses SVG for spinner in sketch and min theme
- Hides title and container option for HTML table
- Adds colspan in test mode
- Fixes duplicate rounded style for flexArrow
- [gliffy import] Fixes svg image clipping (#DID-1443 and #DID-3137)
- Adds comment for embedded SVG files
- Using OneDrive inline picker by default
14-SEP-2021: 15.2.7
- Fixes possible use of undefined FontDialog
14-SEP-2021: 15.2.6
- Fixes SVG export in IE, adds more status hashes
- Removes inline styles for status messages
- Adds FontDialog.enableWebFonts switch
- Removes unsafe-inline style-src for se CSP outputs
- [electron] Fixes issue using old remote in Init.js (disabled localStorage)
13-SEP-2021: 15.2.5
- Uses DOM API for SVG gradients
- Uses unsafe-inline style-src for se in production
- Fixes possible NPE on cssText
13-SEP-2021: 15.2.4
- Internal build
13-SEP-2021: 15.2.3
- Fixes background color issues for some shapes
13-SEP-2021: 15.2.2
- Fixes possible NPE due to getAllTags scope
- Fixes drop target detection with live preview and guides
- Adds safe-style-src URL parameter
12-SEP-2021: 15.2.1
- Uses icon to toggle layer visibility
- Hides tooltip when entering chromeless toolbar
- Handles default color in dialogs
- Improves handling of default colors for dark mode
- Fixes inconsistent modifier keys for connections
10-SEP-2021: 15.2.0
- Consolidates icons
- Fixes scrollbars in dialog for iOS
- Fixes CSS selector for chromeless toolbar controls
- Fixes default label background color for vertices https://github.com/jgraph/drawio/issues/2238
- Adds default, fixes lane color in dark mode https://github.com/jgraph/drawio/issues/2239
- Uses OS font for application user interface https://github.com/jgraph/drawio-desktop/issues/514
- Enables tags in all viewers, removes unused images
- Disables dark mode in IE
- [lucid import] Fixes issues with group ordering and freehand stencils
- Removes double click handling in tags dialog
09-SEP-2021: 15.1.4
- Fixes spacing and sizes in tags dialog
- Adds tags to viewer, SVG icons to layers dialog
- [vsdx import] Fixes invalid attribute error when input data is not suitable for html
- Fixes text overflow in dialogs
- Uses static viewer with no dynamic loading
08-SEP-2021: 15.1.3
- Internal release
08-SEP-2021: 15.1.2
- Adds tags option for export to lightbox
- Adds SVG icons for some markers
- Ignores ghosted waypoints in context menu
- Fixes edge context menu on some devices DID-3284
- Adds tags in view menu
- Makes tags case-sensitive
- Moves tag click handler to table cell
- Moves tag double click handler to table cell
- Shows all tags after double click or shift click
- Fixes initial dialog size
- Fixes scrollbar in dialog
07-SEP-2021: 15.1.1
- Uses SVG for large toolbar icons
- Adds createTagsDialog and double click handler
- Uses dbl click for selection or highlight
- Adds tags URL parameter for lightbox (beta)
- Disables sketch style for specific shapes by default
- Adds support for tags in lightbox
- [o365] Updates Office.ui.messageParent with targetOrigin
- Fixes possible duplicate cells, event names
- Fixes tags in custom actions https://github.com/jgraph/drawio/issues/2228
06-SEP-2021: 15.1.0
- Fixes link handling in viewer https://github.com/jgraph/drawio/issues/2220
- Improvements to tags dialog https://github.com/jgraph/drawio/issues/2208
- Fixes missing background page dropdown
- Removes link if graph disabled or no cells selected
- Highlights selection cells in disabled graphs
- Fixes placeholders in PDF export
- Fixes background pages and clipping https://github.com/jgraph/drawio/issues/2223
- Adds tags custom action
- Adds checks for valid tags
- Fixes ignored background image bounds in lightbox
02-SEP-2021: 15.0.6
- Fixes NPE for PDF export with single page https://github.com/jgraph/drawio/issues/2221
- Fixes padding for buttons in CustomDialog
- Adds zoomWheel config option https://github.com/jgraph/drawio-desktop/issues/175
01-SEP-2021: 15.0.5
- Adds hover handler for blue arrows
- Fixes PDF export with background pages
- Adds page range for PDF export
- Fixes possible charAt is not a function
31-AUG-2021: 15.0.4
- Fixes offset for background pages
- Fixes dash color for sketch theme in dark mode
- Adds .drawio.xyz extension to embedded files
- Adds includeDiagram config option
- Adds app icon click handler, removes debug output
- Adds support for background pages in PDF export
27-AUG-2021: 15.0.3
- Fixes missing background images in thumbnails
- [conf cloud] Adds page edit comment when a diagram is saved from direct edit
- Fixes issue with application of constraints
- Updates background image after relevant events
26-AUG-2021: 15.0.2
- Fixes special cases for default page format https://github.com/jgraph/drawio/issues/2202
- Adds type check to avoid charAt is not a function in format panel color
- [teams] Fixes auth error and upgraded manifest and JS sdk
- [teams] disable EditorUi.nativeFileSupport in teams
26-AUG-2021: 15.0.1
- Adds configuration for page format https://github.com/jgraph/drawio/issues/2202
- Fixes background page image offset
26-AUG-2021: 15.0.0
- Adds file properties dialog to sketch mode
- Adds Shift+Click for color button
- Adds ability to include page(s) as background to other pages on diagrams
24-AUG-2021: 14.9.9
- Updates AWS stencils to latest set
- Reports curved edges as not fully supported in Lucidchart import
- Updates ru translations. Thanks to Ash Ed.
18-AUG-2021: 14.9.8
- Fixes preview domain in trello powerup
- [conf cloud] Undo check name fix to consider 404 error as success
16-AUG-2021: 14.9.7
- Prevents NPE in style format dialog
- Fixes new attachment download auth errors in Trello power up
- [conf cloud] Fixes an error when checkName api returns 404 when list of attachments are requested
10-AUG-2021: 14.9.6
- [jira cloud] Adds Metrics publish API to log app load time or failure
- [conf cloud] Adds Metrics publish API to log app load time or failure
- Fixes possible NPE in StyleFormatPanel (colorset.title)
06-AUG-2021: 14.9.5
- Adds shift/alt to extract data on copy data button
- Adds barrier for parallel async custom actions
- Adds background page support
- Fixes ignored background image size for image export
- Adds colorNames and titles for color schemes
- Adds edit geometry in sketch theme context menu
- Fixes inconsistent cut and delete actions https://github.com/jgraph/drawio/issues/1978
- Uses shift+click to paste data with label
- Adds edit submenu in min and sketch themes
- Adds popup for additonal color models https://github.com/jgraph/drawio/issues/2150
- Handles page links in background image dialog
03-AUG-2021: 14.9.4
- Executes actions in sequence, adds animation custom actions https://github.com/jgraph/drawio/issues/1861
- Fixes update of cell IDs in style actions
- Adds stopping for custom action sequences
- Fixes naming for parallel animations
- [conf cloud] Adds timeout config
- Updates it translations. Thanks to Vincenzo Reale
- Fixes cloning for actions, final animation state
- [jira cloud] Adds back Confluence embed using new API
- Fixes update of custom actions for copy, duplicate and recursion
- Hides tooltip if mouse enters link hint
- Fixes loading SVG from OneDrive https://github.com/jgraph/drawio/issues/2161
- Adds data extraction to props plugin
28-JUL-2021: 14.9.3
- Fixes pointer events for table cells in sketch theme
- Adds title and container option for insert table drop down
- Fixes possible cropping in SVG export https://github.com/jgraph/drawio/issues/1216
- Fixes e.data.indexOf is not a function in OneDrive client
- Adds edit tooltip in context menu for sketch mode
- Adds dash line jump style https://github.com/jgraph/drawio/issues/1852
- Fixes rough URL parameter, possible missing sidebar preview
- [conf cloud] Fixes multiple embedded diagrams with the same name editing issue
- Disables plugins action for plugins=0 https://github.com/jgraph/drawio/issues/2148
- [conf cloud] Adds a fallback for AP is undefined error
- Updates it tranlsations. Thanks to Vincenzo Reale
- Updates el tranlsations. Thanks to Io Papadimitriou
22-JUL-2021: 14.9.2
- [conf cloud] Fixes scroll bars with hidden toolbar
- [conf cloud] Fixes incorrect height of simple viewer
- Adds DRAWIO_LIGHTBOX_URL https://github.com/jgraph/drawio/issues/2149
- Creates draft while saving local file to fix possible data loss
- Adds support for radial gradients https://github.com/jgraph/drawio/issues/1472
21-JUL-2021: 14.9.1
- [conf cloud] Fixes pending updates of embedded macros
- Fixes autosize for wrapped text, ignored aspect
16-JUL-2021: 14.9.0
- Adds support for se.diagrams.net domain
- Fixes clipping in viewer with initial hidden layers https://github.com/jgraph/drawio/issues/DID-2617
- Adds autoOrigin option https://github.com/jgraph/drawio/issues/DID-2617
- Updates cs translations. Thanks to Pavel Borecki
- Updates el tranlsations. Thanks to Io Papadimitriou
- [conf cloud] Improves viewer load time
12-JUL-2021: 14.8.6
- Disables pointerEvents style for images https://github.com/jgraph/drawio/issues/2121
- [jira cloud] Disables Confluence embed option due to changes in auth token valdation
- Improvements to Lucidchart import
07-JUL-2021: 14.8.5
- Fixes XSS attack on GoogleGadgetServlet. Thanks to Alfred Berg for report.
- Updates to cs translations
02-JUL-2021: 14.8.4
- Fixes drag and drop for edge labels with selected parents
- [conf cloud] Fixes recent and search in embed diagrams
30-JUN-2021: 14.8.3
- [conf cloud] Fixes save settings with current viewer status
- Adds function for image export in viewer
- Fixes possible NPE https://github.com/jgraph/drawio/issues/2115
25-JUN-2021: 14.8.2
- [conf cloud] Adds lightbox to simple viewer
- [conf+jira cloud] Fixes export downloads https://github.com/jgraph/drawio/issues/2107
- [conf cloud] Updates self import to support data:confluence/id and links
24-JUN-2021: 14.8.1
- Clones existing SVG for outline rendering
- Fixes possible ignored gesture end in outline
- Fixes unconnected edges z-index order in vsdx import
- Fixes line jump handling in vsdx import
- Improves locking https://github.com/jgraph/drawio/issues/2069
- Fixes action states and cursors for locked cells
- Fixes selection in locked layers
- Updates French translations
17-JUN-2021: 14.8.0
- Adds bringForward and sendBackward actions
- Fixes GraphViewer toolbar and border hiding in FF
16-JUN-2021: 14.7.10
- [jira cloud] Adds support for uploading zipped format diagrams
- Fixes ignored locked layers, hover icons, shape picker clipping
15-JUN-2021: 14.7.9
- Adds minimize to shape picker in sketch theme
- Fixes unicode char to HTML entity on some JVMs from Gliffy
14-JUN-2021: 14.7.8
- [conf cloud] Adds custom templates to sketch macro add template dialog
- [conf cloud] Fixes minor issues with templates dialog
- Prevents showing an empty viewer when configured layers are incorrect
- [conf cloud] Fixes template and new dialog bugs and added no file type option
- [conf cloud] Fixes Link dialog attachment links
- [conf cloud] Fixes centering with hidden toolbar or simple viewer
- Adds preview button in templates dialog
- Adds pinch to zoom CSS preview for iOS (beta)
- Prevents scrollbars on PDF and Image Export
- [conf cloud] Fixes settings dialog hidden buttons with certain diagram height
09-JUN-2021: 14.7.7
- Fixes event handling for template previews
- Adds modified check for open browser file in standalone mode
- Adds select edges option in context menu
- Adds delay for double tap edit trigger before context menu
- Hides template preview when dialog is closed
- Adds padding for touch events on window controls
- Fixes status bar partially visible behind buttons
- Fixes fit icon in minimal theme
- Fixes window position constraints in sketch theme
- Fixes ghost cells after resume in outline
- Fixes event timing after freehand insert
- Fixes initial stroke width and folding for outline
- Adds context menu options for sketch theme on touch devices
- Reduces use of formatted text in swimlane titles
- Fixes background page and dark mode toggle in outline
- Fixes zOrder after dialog click in sketch theme
- Fixes order of graph relative to dialogs
- Fixes in-place editor width after markup toggle
- Fixes panning with freehand on touch in minimal theme
04-JUN-2021: 14.7.6
- Adds delete button in sketch theme
03-JUN-2021: 14.7.5
- Removes padding in outline
- Enables decimal stokewidths
- Fixes delayed preview issue
- Adds outline option in sketch theme
- Hides tooltip on scroll wheel events
- Shift+tab stops editing with no selection
- Fixes inconsistent mouse down handling for template preview
- Fixes inconsistent gesture start for blank template entry
- Fixes minor style issues for sketch theme
- Adds previews for templates
- Fixes picker toolbar overlap on small screens for sketch theme
- Adds padding for window controls in sketch and minimal theme
- Uses tab key to insert tabs in labels
- Handles tab key based on text selection while editing
02-JUN-2021: 14.7.4
- Sets fonts color for note shape in sketch theme