-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
4868 lines (4697 loc) · 301 KB
/
changelog.txt
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
version 2.18.4 ( updated 12-10-2018 )
- Improved support for media buttons in the TinyMCE control.
- Fixed complex options copy/paste when some settings have no values.
- Fixed incompatibility with Wordpress MU Domain Mapping plugin.
- Prevent rendering Full Width Portfolio title in visual builder when the title is empty.
- Fixed Divi Builder loading on Library pages.
- Fixed an issue where the color picker script wasn't properly loaded with the Divi Builder.
- Fixes builder not being correctly loaded under some circumstances.
* includes/builder/core.php
* includes/builder/frontend-builder/assets/scripts/preboot.js
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/functions.php
* includes/builder/plugin-compat/wordpress-mu-domain-mapping.php
* includes/builder/scripts/builder.js
* styles/common-pre.less
version 2.18.3 ( updated 12-08-2018 )
- Fixed the new Divi Builder Experience being stuck closed if the builder interface has been closed in the Classic Builder before switching.
- Fixed Divi Extras Plugin which Crashes BFB & VB due to custom renderer attribute on its field which is not properly unset when populating static definition file.
- Fixed "Load Layout" Modal position calculation when Page Settings Bar is on top.
- Fixed VB top margin calculation in various cases with snapped modal.
- Fixed Content Area overflow by Bottom snapped Settings Modal.
- Fixed transitions of the navigation tabs of the Tab Module while switching to hover mode and back in Visual Builder.
- Fix a PHP error that occurred when loading the Divi Builder.
- Fixed PHP warning regarding use on continue inside of switch statement.
* includes/builder/class-et-builder-element.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/functions.php
version 2.18.2 ( updated 12-07-2018 )
- Fixed issues with the currently broken WordPress 5.1 beta build that was affecting some customers.
* includes/builder/functions.php
version 2.18.1 ( updated 12-06-2018 )
- Fixed BFB not loading when https was used in backend but not in frontend.
- Fixed the issue when changes of the Tab Font Size or Tab Line Height options of the Tab Module did not displayed within Visual Builder in some cases.
- Fixed PHP errors in Yoast Page Sitemap.
- Fixed a case where removing Divi Builder support for a Custom Post Type could generate an error in Gutenberg.
- Fixed Duplicate ID Validator Error for Contact Form Module.
- Fixed Button module hover transition.
- Fixed a fatal error in the Customizer in certain cases.
- Fixed warnings in Yoast SEO sitemaps related to Dynamic Content.
- Fixed administrators always having access to the "Dynamic Content Custom Fields" capability on non-multisite environments.
* includes/builder/class-et-builder-element.php
* includes/builder/class-et-builder-settings.php
* includes/builder/core.php
* includes/builder/feature/BlockEditorIntegration.php
* includes/builder/feature/dynamic-content.php
* includes/builder/framework.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/functions.php
* includes/builder/main-structure-elements.php
* includes/builder/module/Button.php
* includes/builder/module/ContactForm.php
* includes/builder/module/ContactFormItem.php
* includes/builder/module/FilterablePortfolio.php
* includes/builder/module/FullwidthPortfolio.php
* includes/builder/module/FullwidthPostSlider.php
* includes/builder/module/Portfolio.php
* includes/builder/module/PostSlider.php
* includes/builder/module/SliderItem.php
* includes/builder/scripts/frontend-builder-global-functions.js
version 2.18 ( updated 12-05-2018 )
- Fixed the issue when background options can't be copied in some situations.
- Fixed superadmins not having access to Dynamic Content custom fields if their user role on the current subsite did not have access to them.
- Fixed custom row width being overridden when using the fullwidth layout for posts.
- Fixed copying and pasting of hover options.
- Fixed comment styles on custom post types where comments are used outside the builder content (i.e. not inside a Comments module).
- Fixed post meta showing a trailing separator character when comments are closed for a post.
- Disable Gutenberg Divi Placeholder for new posts/pages when the User (role) can't Toggle Divi Builder.
- Fixed a bug where the form on Contact Form module could be submitted multiple times which would sent email multiple times.
- Fixed excluded options loading for Global Modules in Backend Builder.
- Fixed the "Current Date" dynamic content option not respecting the current site language.
- Fixed grid styling for Blog Module for RTL.
- Fixed editing of Global Rows and Sections which became not Global.
- Fixed a logic bug in the Divi Roles related code used to check if a user is allowed to access Divi features as defined in the Role Editor.
- Fixed Dynamic Content icon overlapping long text inside text fields in the Visual Builder settings modal.
- Fixed a bug where Video added on Code module were not responsive.
- Fixed text hover styles not applying if they are the same as default.
- Fixed a bug where Circle Color Opacity option for Circle Counter module can be set to invalid value in VB.
- Fixed Dynamic Content support in the PRO version of Advanced Custom Fields.
- Fixed Admin Label option reset.
- Disabled column height equalization in responsive mode.
- Fixed a Visual Builder display bug where browser zoom or OS display scaling sometimes resulted in incorrect height calculations for empty columns.
- Added reset button to font style control.
- Fixed custom field dynamic content not resolving in the Visual Builder on certain server configurations.
- Improved handling of Specialty section gutters at tablet & phone breakpoints.
- Disabled lightbox links in Images/Gallery to open in BFB and VB.
- Fixed a bug where Gutter Width option could be set to invalid value from VB settings.
- Fixed failure_notice.js being loaded with 2 different version numbers in certain cases.
- Fixed an issue where clicking on Disabled Top Tier Menu Links caused the page to jump to the top.
* core/admin/css/core.css
* core/admin/css/portability.css
* core/admin/js/core.js
* core/components/data/init.php
* core/components/post/Query.php
* epanel/css/panel.css
* epanel/shortcodes/shortcodes.php
* framework/admin/admin.php
* framework/admin/post-formats.php
* includes/admin/admin.php
* includes/admin/scripts/page-template.js
* includes/admin/scripts/post-format.js
* includes/admin/styles/admin.css
* includes/admin/styles/less/admin.less
* includes/builder/.editorconfig
* includes/builder/class-et-builder-element.php
* includes/builder/class-et-builder-settings.php
* includes/builder/class-et-global-settings.php
* includes/builder/core.php
* includes/builder/feature/BlockEditorIntegration.php
* includes/builder/feature/dynamic-content.php
* includes/builder/framework.php
* includes/builder/frontend-builder/assets.php
* includes/builder/frontend-builder/assets/css/fb-top-window.css
* includes/builder/frontend-builder/assets/css/responsive-preview-wrapped.css
* includes/builder/frontend-builder/assets/scripts/preboot.js
* includes/builder/frontend-builder/assets/vendors/plugins/wpview/plugin.min.js
* includes/builder/frontend-builder/bfb-template.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/frontend-builder/init.php
* includes/builder/frontend-builder/view.php
* includes/builder/functions.php
* includes/builder/main-structure-elements.php
* includes/builder/module/Accordion.php
* includes/builder/module/AccordionItem.php
* includes/builder/module/Audio.php
* includes/builder/module/Blog.php
* includes/builder/module/Blurb.php
* includes/builder/module/Button.php
* includes/builder/module/CircleCounter.php
* includes/builder/module/Comments.php
* includes/builder/module/ContactForm.php
* includes/builder/module/ContactFormItem.php
* includes/builder/module/CountdownTimer.php
* includes/builder/module/Cta.php
* includes/builder/module/Divider.php
* includes/builder/module/FilterablePortfolio.php
* includes/builder/module/FullwidthMenu.php
* includes/builder/module/FullwidthPortfolio.php
* includes/builder/module/FullwidthPostSlider.php
* includes/builder/module/FullwidthPostTitle.php
* includes/builder/module/FullwidthSlider.php
* includes/builder/module/Gallery.php
* includes/builder/module/Login.php
* includes/builder/module/NumberCounter.php
* includes/builder/module/Portfolio.php
* includes/builder/module/PostSlider.php
* includes/builder/module/PostTitle.php
* includes/builder/module/PricingTables.php
* includes/builder/module/PricingTablesItem.php
* includes/builder/module/Signup.php
* includes/builder/module/Slider.php
* includes/builder/module/SliderItem.php
* includes/builder/module/Tabs.php
* includes/builder/module/TabsItem.php
* includes/builder/module/Testimonial.php
* includes/builder/module/Toggle.php
* includes/builder/module/VideoSlider.php
* includes/builder/module/field/Border.php
* includes/builder/module/field/BoxShadow.php
* includes/builder/module/field/Divider.php
* includes/builder/module/field/TextShadow.php
* includes/builder/module/settings/migration/OptionsHarmony.php
* includes/builder/plugin-compat/advanced-custom-fields-pro.php
* includes/builder/plugin-compat/advanced-custom-fields.php
* includes/builder/plugin-compat/autoptimize.php
* includes/builder/plugin-compat/wp-smushit.php
* includes/builder/scripts/bfb_admin_script.js
* includes/builder/scripts/builder.js
* includes/builder/scripts/ext/media-library.js
* includes/builder/scripts/frontend-builder-global-functions.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/scripts/page-settings-metabox.js
* includes/builder/styles/bb_bfb_common.css
* includes/builder/styles/frontend-builder-global-style.css
* includes/builder/styles/notification_popup_styles.css
* includes/builder/styles/roles_style.css
* includes/builder/styles/style.css
* includes/modules.php
version 2.17.6 ( updated 11-02-2018 )
- Fixed JavaScript error when trying to edit non-existing Global Module in BB.
- Fixed a issue where module styles cannot be pasted.
* includes/builder/frontend-builder/bundle.js
* includes/builder/scripts/builder.js
version 2.17.5 ( updated 11-02-2018 )
- Fixed JavaScript error when trying to edit non-existing Global Module in BB.
- Fixed a issue where module styles cannot be pasted.
- Prevent Custom CSS code from being removed when hover options is used.
- Fixed modules with hover styles applied not getting proper z-index in VB preview.
- Fixed bar counter item titles inadvertently displaying html tags.
- Fixed a bug in Email Optin module where Redirect URL had Question Mark at end of the URL.
- Fixed a issue where Contact Form module incorrectly set Reply-To email header when no Email field has been set for the module.
- Fixed Backend Builder not being able to import premade layouts.
- Removed HTML escaping recently added to Filterable Portfolio module post titles.
- Fixes a PHP warning when importing layouts.
- Fixed some aspects of modules being editable even if the relevant capability has been disabled in the Role Editor.
- Fixed CSS for VB Wireframe View when Vertical Navigation is enabled.
- Removed Design and Advanced settings for Pin Settings of Map module.
- Improved timer separator display in Countdown Timer modules.
- Fixed issue affecting border field's generated styles.
- Added label for reset button in Page Settings.
- Fixed issue where modules with partial support were not visible in VB.
* includes/builder/class-et-builder-settings.php
* includes/builder/core.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/functions.php
* includes/builder/module/BarCountersItem.php
* includes/builder/module/ContactForm.php
* includes/builder/module/CountdownTimer.php
* includes/builder/module/FilterablePortfolio.php
* includes/builder/module/MapItem.php
* includes/builder/module/field/Border.php
* includes/builder/module/settings/migration/DiscontinueHtmlEncoding.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-style.less
* styles/common-pre.less
version 2.17.4 ( updated 10-31-2018 )
- Fixed the internal server error that occurred when the Yoast SEO plugin was activated.
- Fixed paragraphs encoding issue when multiple Code Module were added in the same page.
- Fixed a PHP Warning caused by the Post Slider Module.
- Fixed broken shortcode rendering on code and fullwidth module caused by late line break stripping.
* includes/builder/functions.php
* includes/builder/core.php
* includes/builder/class-et-builder-element.php
* includes/builder/module/PostSlider.php
* includes/builder/module/Code.php
* includes/builder/module/FullwidthCode.php
version 2.17.3 ( updated 10-30-2018 )
- Important Security Update. Following an internal code audit, various security improvements were made and several minor security vulnerabilities were patched. For more information, please refer to the disclosure here: https://us7.campaign-archive.com/?u=9ae7aa91c578052b052b864d6&id=a9763c15f2
- Fixed Right-click controls missing in empty fullwidth sections.
- Added missing extend options to border styles and background tabs.
- Fixed languages using quote characters different from the ones in English causing Dynamic Content to not render properly in the front-end.
version 2.17.2 ( updated 10-17-2018 )
- Fixed issue with rendering dynamic content in Global Modules in some cases.
- Fixed the issue where Button Text option can't be copied between Button modules.
- Fixed VB select control to only fire onChange event when necessary.
- Fixed output of inner box shadow in VB.
- Fixed Blurb module title link not being applied to the title.
- Fixed HTML being incorrectly filtered in Dynamic Content's Before and After settings.
- Fixed Autoptimize incompatibility with the Visual Builder, causing the rich text control to crash.
- Fixed JS error which breaks some modules in BB while checking for dynamic content.
- Fixed Bar Counter amount not changing on hover for small % amounts.
* includes/builder/class-et-builder-element.php
* includes/builder/feature/dynamic-content.php
* includes/builder/framework.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/module/BarCountersItem.php
* includes/builder/module/Blurb.php
* includes/builder/module/Image.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-global-functions.js
* includes/builder/styles/frontend-builder-style.less
version 2.17.1 ( updated 10-12-2018 )
- Fixed error occurring in Team Member module.
- Fixed circle counter not showing up in the front end when there was an animation set for it.
- Fixed the Divider height value being picked from Desktop height, when the tablet or/and phone values are set to the default 100px.
- Fixed Dynamic Content background image preview in Extend Styles.
- Fixed support for PHP 5.2 and 5.3 in Dynamic Content.
- Fixed responsive tabs for row column padding settings not showing up in BB.
- Fixed Social Media Follow module link text duplication when read through assistive technologies.
- Added i18n support for visual builder toggle buttons.
* core/ui/components/controls/toggle/toggle.jsx
* core/ui/components/controls/toggle/toggle.scss
* includes/builder/class-et-builder-element.php
* includes/builder/feature/dynamic-content.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/module/Blurb.php
* includes/builder/module/Button.php
* includes/builder/module/Cta.php
* includes/builder/module/FullwidthHeader.php
* includes/builder/module/PricingTablesItem.php
* includes/builder/module/SliderItem.php
* includes/builder/module/SocialMediaFollowItem.php
* includes/builder/module/Testimonial.php
* includes/builder/scripts/frontend-builder-scripts.js
version 2.17 ( updated 10-11-2018 )
- Added Dynamic Content to the Divi Builder.
- Fixed Style Type, Position and Indent Option for Lists (OL/UL) in Text module for Post.
- Removed certain instances of hover icon that should not be present.
- Fixed a bug where Shop modules failed to display products sorted by price or date (ascending).
- Prevent adding max-width: 100% to modules when the sizing is not changed.
- Fixed incorrect history state for bulk editing hover options.
- Fixed alignment issue in Firefox for the first field in Email Optin module.
- Fixed the bug where Play Icon color option in VIdeo module were not working only in Visual Builder for a Post.
- Fixed Custom CSS removing CSS when hover is enabled.
- Fixed testimonial portrait margin on 1/5 and 1/6 columns.
- Fixed CSS for Grid columns For Smartphone.
- Fixed specialty column styles for 1/6 columns inside a 1/2 column.
- Fixed the issue where Favicon from old Theme Option setting were printed on page, even if Site Icon has been uploaded from WordPress Customizer.
- Fixed post_max_size megabytes conversion.
- Fixed a issue where Your Save Has Failed Modal Hides Wordfence's Blocked Request Notification.
* core/admin/css/core.css
* core/components/Portability.php
* epanel/custom_functions.php
* includes/builder/class-et-builder-element.php
* includes/builder/class-et-builder-value.php
* includes/builder/core.php
* includes/builder/feature/dynamic-content.php
* includes/builder/feature/post-content.php
* includes/builder/framework.php
* includes/builder/frontend-builder/assets/css/responsive-preview-wrapped.css
* includes/builder/frontend-builder/assets/css/responsive-preview.css
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/functions.php
* includes/builder/module/AccordionItem.php
* includes/builder/module/Audio.php
* includes/builder/module/BarCountersItem.php
* includes/builder/module/Blog.php
* includes/builder/module/Blurb.php
* includes/builder/module/Button.php
* includes/builder/module/CircleCounter.php
* includes/builder/module/ContactForm.php
* includes/builder/module/CountdownTimer.php
* includes/builder/module/Cta.php
* includes/builder/module/FullwidthHeader.php
* includes/builder/module/FullwidthImage.php
* includes/builder/module/FullwidthPortfolio.php
* includes/builder/module/FullwidthPostSlider.php
* includes/builder/module/Image.php
* includes/builder/module/Login.php
* includes/builder/module/MapItem.php
* includes/builder/module/NumberCounter.php
* includes/builder/module/PostSlider.php
* includes/builder/module/PricingTablesItem.php
* includes/builder/module/Search.php
* includes/builder/module/Shop.php
* includes/builder/module/Signup.php
* includes/builder/module/SliderItem.php
* includes/builder/module/SocialMediaFollowItem.php
* includes/builder/module/TabsItem.php
* includes/builder/module/TeamMember.php
* includes/builder/module/Testimonial.php
* includes/builder/module/Text.php
* includes/builder/module/Toggle.php
* includes/builder/module/Video.php
* includes/builder/module/VideoSliderItem.php
* includes/builder/module/type/PostBased.php
* includes/builder/plugin-compat/advanced-custom-fields.php
* includes/builder/plugin-compat/woocommerce.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-global-style.css
* includes/builder/styles/style.css
* includes/builder/template-preview.php
version 2.16.1 ( updated 10-05-2018 )
- Fixed Responsive Tabs, Hover Tabs and reset button support for multiselect.
- Added missing blurb icon transitions.
- Fixed Login Module issue where form field background color and text color was not applied to Password Field.
- Fixed circle counter behavior when custom padding on hover exists.
- Fixed Hover tabs rendering in combination with responsive tabs for Section Dividers.
- Fixed an issue with background controls in the Visual Builder that incorrectly only allowed background color to be edited in certain situations.
- Fixed heading 2 text size in VB that rendered differently than previous version (3.14 compared to 3.15).
- Fixed Fullwidth Post-Title module issue where background disappeared when section background set as parallax.
- The Divi Builder meta box will now take priority over other meta boxes on the post edit screen.
- Fixed inconsistent mobile display of embedded videos in Blog module blocks.
- Fixed a Visual Builder bug that prevented editing in Internet Explorer 11.
- Fixed a Visual Builder bug where non-Latin characters were ignored when determining whether a block of text was empty.
- Fixed double click issue when opening modal settings for selected items.
- Fixed 1/6 column wrap on certain viewports.
- Fixed global element children so that they stay colored as a global when moved outside their global containers.
- Fixed issue with dragging specialty columns.
- Fixed font field group visibility when options filter is active.
* includes/builder/frontend-builder/assets/css/responsive-preview.css
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/functions.php
* includes/builder/module/Blurb.php
* includes/builder/module/CircleCounter.php
* includes/builder/module/Login.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-grid.less
* includes/builder/styles/frontend-builder-style.less
version 2.16 ( updated 10-4-2018 )
- Added Hover Options to the Divi Builder.
* core/components/data/Utils.php
* includes/builder/framework.php
* includes/builder/frontend-builder/assets.php
* includes/builder/frontend-builder/helpers.php
* includes/builder/functions.php
* includes/builder/main-structure-elements.php
* includes/builder/module/Accordion.php
* includes/builder/module/AccordionItem.php
* includes/builder/module/Audio.php
* includes/builder/module/BarCounters.php
* includes/builder/module/BarCountersItem.php
* includes/builder/module/Blog.php
* includes/builder/module/Blurb.php
* includes/builder/module/Button.php
* includes/builder/module/CircleCounter.php
* includes/builder/module/Comments.php
* includes/builder/module/ContactForm.php
* includes/builder/module/ContactFormItem.php
* includes/builder/module/CountdownTimer.php
* includes/builder/module/Cta.php
* includes/builder/module/Divider.php
* includes/builder/module/FilterablePortfolio.php
* includes/builder/module/FullwidthHeader.php
* includes/builder/module/FullwidthImage.php
* includes/builder/module/FullwidthMap.php
* includes/builder/module/FullwidthMenu.php
* includes/builder/module/FullwidthPortfolio.php
* includes/builder/module/FullwidthPostSlider.php
* includes/builder/module/FullwidthPostTitle.php
* includes/builder/module/FullwidthSlider.php
* includes/builder/module/Gallery.php
* includes/builder/module/Image.php
* includes/builder/module/Login.php
* includes/builder/module/Map.php
* includes/builder/module/MapItem.php
* includes/builder/module/NumberCounter.php
* includes/builder/module/Portfolio.php
* includes/builder/module/PostSlider.php
* includes/builder/module/PostTitle.php
* includes/builder/module/PostsNavigation.php
* includes/builder/module/PricingTables.php
* includes/builder/module/PricingTablesItem.php
* includes/builder/module/Search.php
* includes/builder/module/Shop.php
* includes/builder/module/Sidebar.php
* includes/builder/module/Signup.php
* includes/builder/module/Slider.php
* includes/builder/module/SliderItem.php
* includes/builder/module/SocialMediaFollow.php
* includes/builder/module/SocialMediaFollowItem.php
* includes/builder/module/Tabs.php
* includes/builder/module/TeamMember.php
* includes/builder/module/Testimonial.php
* includes/builder/module/Text.php
* includes/builder/module/Toggle.php
* includes/builder/module/Video.php
* includes/builder/module/VideoSlider.php
* includes/builder/module/VideoSliderItem.php
* includes/builder/module/field/Border.php
* includes/builder/module/field/BoxShadow.php
* includes/builder/module/field/Divider.php
* includes/builder/module/field/TextShadow.php
* includes/builder/module/field/template/Tabbed.php
* includes/builder/module/helpers/HoverOptions.php
* includes/builder/module/helpers/TransitionOptions.php
* includes/builder/module/settings/Migration.php
* includes/builder/module/settings/migration/HoverOptions.php
* includes/builder/module/settings/migration/TeamMemberIconHover.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-style.less
* includes/builder/styles/style.css
* includes/builder/class-et-builder-element.php
* includes/builder/class-et-global-settings.php
version 2.15 ( updated 09-13-2018 )
- Added Multiselect and Bulk Editing to the Visual Builder.
- Fixed missing "Reply To" in Contact Form module email when the email field is not set to required.
- Fixed Grid Mode UI being shown from hovered section/rows/modules even after it is turned off.
- Fixed a bug where the wrong information was given in a debug message.
- Included the missing screen-reader-text class style in Divi.
- Fixed contact form not accepting 0 (zero) as a valid field value for required fields.
- Added shift key support for the range control.
- Fixed a bug where the Drag & Drop File Upload system was rejecting some files that should have been accepted due to file extension not being all lowercase.
- Fixed issue with inability to set tablet and phone responsive options to their default values.
- Fixed the font dropdown overlap with the options underneath in VB.
- Fixed Tooltip Modals animation when opening new modal from Page Settings Bar while another modal is not closed and vice versa.
- Fixed the inverted view on the Row Builder button group in the VB.
- Updated custom fields retrieval and processing functions for Mailchimp to make it work with custom field names.
- Fixed LifterLMS sidebar support on course and lesson pages.
* core/components/api/email/MailChimp.php
* functions.php
* includes/builder/class-et-builder-element.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/module/ContactForm.php
* includes/builder/styles/frontend-builder-style.less
* includes/plugins-lifterlms-support.php
version 2.14 ( updated 09-06-2018 )
- Added "Extend Styles" right click option to menus for Modules, Option Groups and Individual Options.
* includes/builder/class-et-builder-element.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/functions.php
* includes/builder/main-structure-elements.php
* includes/builder/module/Accordion.php
* includes/builder/module/AccordionItem.php
* includes/builder/module/Audio.php
* includes/builder/module/BarCounters.php
* includes/builder/module/BarCountersItem.php
* includes/builder/module/Blog.php
* includes/builder/module/Blurb.php
* includes/builder/module/Button.php
* includes/builder/module/CircleCounter.php
* includes/builder/module/Code.php
* includes/builder/module/Comments.php
* includes/builder/module/ContactForm.php
* includes/builder/module/ContactFormItem.php
* includes/builder/module/CountdownTimer.php
* includes/builder/module/Cta.php
* includes/builder/module/Divider.php
* includes/builder/module/FilterablePortfolio.php
* includes/builder/module/FullwidthCode.php
* includes/builder/module/FullwidthHeader.php
* includes/builder/module/FullwidthImage.php
* includes/builder/module/FullwidthMap.php
* includes/builder/module/FullwidthMenu.php
* includes/builder/module/FullwidthPortfolio.php
* includes/builder/module/FullwidthPostSlider.php
* includes/builder/module/FullwidthPostTitle.php
* includes/builder/module/FullwidthSlider.php
* includes/builder/module/Gallery.php
* includes/builder/module/Image.php
* includes/builder/module/Login.php
* includes/builder/module/Map.php
* includes/builder/module/MapItem.php
* includes/builder/module/NumberCounter.php
* includes/builder/module/Portfolio.php
* includes/builder/module/PostSlider.php
* includes/builder/module/PostTitle.php
* includes/builder/module/PostsNavigation.php
* includes/builder/module/PricingTables.php
* includes/builder/module/PricingTablesItem.php
* includes/builder/module/Search.php
* includes/builder/module/Shop.php
* includes/builder/module/Sidebar.php
* includes/builder/module/Signup.php
* includes/builder/module/SignupItem.php
* includes/builder/module/Slider.php
* includes/builder/module/SliderItem.php
* includes/builder/module/SocialMediaFollow.php
* includes/builder/module/SocialMediaFollowItem.php
* includes/builder/module/Tabs.php
* includes/builder/module/TabsItem.php
* includes/builder/module/TeamMember.php
* includes/builder/module/Testimonial.php
* includes/builder/module/Text.php
* includes/builder/module/Toggle.php
* includes/builder/module/Video.php
* includes/builder/module/VideoSlider.php
* includes/builder/module/VideoSliderItem.php
version 2.13.1 ( updated 09-1-2018 )
- Fixed broken font uploader modal.
- Fixed unwanted padding in font uploader modal.
* includes/builder/frontend-builder/bundle.js
version 2.13 ( updated 08-30-2018 )
- Added new column structures to the Divi Builder.
- Improved the Visual Builder tooltip modal automatic sizing and positioning.
- Fixed a bug that prevented loading premade layouts on some servers.
- Removed extra space that appeared in the Visual Builder when there was an empty TinyMCE area on the page.
- Fixed an error that occurred when subscribing to a MailPoet list due to malformed custom fields.
- Fixed broken accordion module animation in Safari.
- Removed dashes from contact form field titles in the Visual Builder.
- Fixed a bug that caused the portability tooltip to open in the wrong location when triggered by drag and drop file upload.
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/class-et-builder-element.php
* includes/builder/functions.php
* includes/builder/main-structure-elements.php
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-global-style.css
* includes/builder/styles/frontend-builder-grid.less
* includes/builder/styles/frontend-builder-shared-conditional-style.css
* includes/builder/styles/frontend-builder-shared-conditional-style.less
* includes/builder/styles/frontend-builder-style.css
* includes/builder/styles/frontend-builder-style.less
* includes/builder/styles/style.css
* includes/builder/frontend-builder/assets/css/responsive-preview-wrapped.css
* includes/builder/frontend-builder/assets/css/responsive-preview.css
* includes/builder/feature/Library.php
* core/components/api/email/_MailPoet3.php
version 2.12.2 ( updated 08-16-2018 )
- Fixed a bug that caused animations to remove module design styles such as background colors.
* includes/builder/scripts/frontend-builder-scripts.js
version 2.12.1 ( updated 08-13-2018 )
- Updated translation files.
- Fixed issue with partial support for modules with child modules.
- Fixed playback issues of Facebook videos in the Video module.
- Fixed display issue with Video Module, with animation applied, in when playing the video in fullscreen, in Chrome.
- Fixed fullwidth mobile menu not working in Visual Builder.
- Updated Testimonial module so that it doesn't show the "," when Job Title is empty.
- Fixed ability to find and replace Gutter Width setting.
- Fixed Visual Builder tooltips and modals from appearing behind the floating navbar on custom post types in certain cases.
- Fixed the Tabs module from malfunctioning when triple clicked on the Tab module content as soon as it was added on the page using VB.
- Fixed a bug where the Drag & Dropload interface would process files already being processed by the WP Media Library upload system.
- Fixed a PHP warning related to Post / Project tag/category.
- Fixed BB not loading when Gutenberg and Classic Editor plugins were both active.
- Fixed inconsistency between the front-end and visual builder's button module when using an icon and the margins didn't match.
- Fixed the issue when Visual Builder was not correctly initiated on WordPress sample pages.
- Fixed unwanted horizontal scroll when specialty section options are fullwidth and gutter 1 and height equalized.
- Fixed the background image being covered up when Parallax is enabled when using Fullwidth Slider Module.
- Corrected German translation of button text in WP Admin.
* core/languages/de_DE.mo
* core/languages/de_DE.po
* epanel/core_functions.php
* includes/builder/class-et-builder-settings.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/functions.php
* includes/builder/languages/ar.mo
* includes/builder/languages/ar.po
* includes/builder/languages/bg_BG.mo
* includes/builder/languages/bg_BG.po
* includes/builder/languages/cs_CZ.mo
* includes/builder/languages/cs_CZ.po
* includes/builder/languages/da_DK.mo
* includes/builder/languages/da_DK.po
* includes/builder/languages/de_DE.mo
* includes/builder/languages/de_DE.po
* includes/builder/languages/el.mo
* includes/builder/languages/el.po
* includes/builder/languages/en_US.pot
* includes/builder/languages/es_ES.mo
* includes/builder/languages/es_ES.po
* includes/builder/languages/fi.mo
* includes/builder/languages/fi.po
* includes/builder/languages/fr_FR.mo
* includes/builder/languages/fr_FR.po
* includes/builder/languages/he_IL.mo
* includes/builder/languages/he_IL.po
* includes/builder/languages/hu_HU.mo
* includes/builder/languages/hu_HU.po
* includes/builder/languages/id_ID.mo
* includes/builder/languages/id_ID.po
* includes/builder/languages/it_IT.mo
* includes/builder/languages/it_IT.po
* includes/builder/languages/ja.mo
* includes/builder/languages/ja.po
* includes/builder/languages/ko_KR.mo
* includes/builder/languages/ko_KR.po
* includes/builder/languages/ms_MY.mo
* includes/builder/languages/ms_MY.po
* includes/builder/languages/nb_NO.mo
* includes/builder/languages/nb_NO.po
* includes/builder/languages/nl_NL.mo
* includes/builder/languages/nl_NL.po
* includes/builder/languages/pl_PL.mo
* includes/builder/languages/pl_PL.po
* includes/builder/languages/pt_BR.mo
* includes/builder/languages/pt_BR.po
* includes/builder/languages/ro_RO.mo
* includes/builder/languages/ro_RO.po
* includes/builder/languages/ru_RU.mo
* includes/builder/languages/ru_RU.po
* includes/builder/languages/sk_SK.mo
* includes/builder/languages/sk_SK.po
* includes/builder/languages/sr_RS.mo
* includes/builder/languages/sr_RS.po
* includes/builder/languages/sv_SE.mo
* includes/builder/languages/sv_SE.po
* includes/builder/languages/th.mo
* includes/builder/languages/th.po
* includes/builder/languages/tl.mo
* includes/builder/languages/tl.po
* includes/builder/languages/tr_TR.mo
* includes/builder/languages/tr_TR.po
* includes/builder/languages/uk.mo
* includes/builder/languages/uk.po
* includes/builder/languages/vi.mo
* includes/builder/languages/vi.po
* includes/builder/languages/zh_CN.mo
* includes/builder/languages/zh_CN.po
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-style.css
version 2.12 ( updated 8-9-2018 )
- Added new Drag & Drop File Upload system to the Divi Builder.
* includes/builder/core.php
* includes/builder/frontend-builder/helpers.php
version 2.11.1 ( updated 07-30-2018 )
- Added support for using the Divi Builder when Gutenberg is enabled.
- Fixed JavaScript Error: "TypeError: E.AllHtmlEntities is not a constructor".
* includes/builder/class-et-builder-settings.php
* includes/builder/frontend-builder/assets.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/functions.php
* includes/builder/plugin-compat/gutenberg.php
* includes/builder/scripts/ext/media-library.js
* includes/builder/styles/frontend-builder-shared-conditional-style.css
* includes/builder/styles/frontend-builder-style.css
version 2.11 ( updated 07-26-2018 )
- Added a new option, Find & Replace, to right click menus on individual options.
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/functions.php
version 2.10.2 ( updated 07-23-2018 )
- Fixed a jQuery error that occurred in the VB when various third party plugins were installed.
- Fixed 1/4 column rows with gutter widths of 1 having unwanted margin bottom on mobile.
- Fixed the issue where padding was not removed when Use Background Color option was disabled in Login Module.
- Fixed PHP notice that was occurring since introduction of rollback feature.
- Fixed custom code color picker not appearing in the Visual Builder settings.
- Fixed gutter width issues on mobile that occurred due to CSS priority changes in the previous Divi feature release.
* core/components/VersionRollback.php
* includes/builder/frontend-builder/bundle.js
* style.css
version 2.10.1 ( updated 07-16-2018 )
- Fixed Visual Builder responsive preview in the TwentySeventeen theme.
- Fixed TinyMCE dropdowns not being visible in Visual Builder modals.
- Fixed section padding not taking effect on custom post types.
- Fixed column margin regression for pages in Visual Builder.
- Fixed button hover interaction in Visual Builder.
- Added in the ability to copy, paste and reset individual Text module heading levels.
* includes/builder/frontend-builder/assets/css/responsive-preview.css
* includes/builder/frontend-builder/bundle.js
version 2.10 ( updated 07-12-2018 )
- Created a system for enabling the Divi Builder on custom post types.
- Automatically enabled the Divi Builder on popular post types that we have tested.
- Updated MailChimp API wrapper to properly handle resubscribing a previously unsubscribed and/or deleted subscriber.
- Fixed the issue where "Use Custom Styles for Button" option was disabled after pasting any button custom style options.
- Fixed incorrect ability to add new row/module even when the parent module is locked in VB Click View.
- Fixed issues with some styles are not working in Divi Builder Plugin because of error in minification function.
- Removed favicon option from epanel.
- Added checkerboard pattern to palette and currently selected color swatches in to Divi Color Manager.
- Reverted back the visual appearance of color picker launcher when no color/default is selected.
* core/components/PageResource.php
* core/components/api/email/MailChimp.php
* core/components/data/Utils.php
* core/functions.php
* core/ui/components/controls/sortable-list/sortable-list.scss
* epanel/core_functions.php
* epanel/css/panel.css
* epanel/js/functions-init.js
* functions.php
* includes/admin/admin.php
* includes/builder/class-et-builder-element.php
* includes/builder/class-et-builder-settings.php
* includes/builder/core.php
* includes/builder/framework.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/frontend-builder/webpack.config.js
* includes/builder/frontend-builder/webpack.production.config.js
* includes/builder/functions.php
* includes/builder/module/Toggle.php
* includes/builder/plugin-compat/easy-digital-downloads.php
* includes/builder/plugin-compat/eventon.php
* includes/builder/plugin-compat/events-manager.php
* includes/builder/plugin-compat/the-events-calendar.php
* includes/builder/plugin-compat/woocommerce.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-global-style.css
* includes/builder/styles/frontend-builder-shared-conditional-style.css
* includes/builder/styles/frontend-builder-shared-style.css
* includes/builder/styles/frontend-builder-style.css
* includes/builder/styles/preview.css
* includes/builder/template-preview.php
* includes/customizer.php
* includes/layouts.php
* includes/plugins-eventon-support.php
* scripts/theme-customizer.js
version 2.9 ( updated 06-28-2018 )
- Added new color manager to the Visual Builder, including new recent colors and suggested colors systems.
* includes/builder/frontend-builder/helpers.php
* includes/builder/images/no-color.png
version 2.8.1 ( updated 06-26-2018 )
- Fixed "$ is not a function" error that occurred when editing some layouts in the Visual Builder.
- Fixed alignment of custom fields when using the half width option inside of the Email optin module.
- Fixed react warning on contact form module that occurred only in dev environment.
- Fixed an issue where responsive tabs would get updated randomly when editing a row's column spacing.
- Fixed an inconsistency where a contact form with an empty field ID would be output on the VB but not on the front end.
- Fixed no results notice for filtered search still being visible after undoing changes.
- Fixed Divi shortcuts conflicts with Yoast Snippet Editor.
- Fixed a compatibility issue where WooCommerce taxonomy pages would not have a sidebar area.
- Fixed a compatibility issue with GD bbPresss Tools and GD bbPress Toolbox where the forum quote was not using the correct markup.
- Fixed display issue with Facebook videos when using an overlay.
- Fixed bug that caused search filters to be cleared on all keyboard keystrokes.
- Fixed a bug that allowed keyboard shortcuts to fire while using the modal search bar.
- Fixed a dispatch error that occurred when closing a settings modal using the ESC key while a quick access outline was being rendered on the page.
* core/languages/ar.po
* core/languages/bg_BG.po
* core/languages/cs_CZ.po
* core/languages/da_DK.po
* core/languages/de_DE.po
* core/languages/el.po
* core/languages/en_US.po
* core/languages/en_US.pot
* core/languages/es_ES.po
* core/languages/fi.po
* core/languages/fr_FR.po
* core/languages/he_IL.po
* core/languages/hu_HU.po
* core/languages/id_ID.po
* core/languages/it_IT.po
* core/languages/ja.po
* core/languages/ko_KR.po
* core/languages/ms_MY.po
* core/languages/nb_NO.po
* core/languages/nl_NL.po
* core/languages/pl_PL.po
* core/languages/pt_BR.po
* core/languages/ro_RO.po
* core/languages/ru_RU.po
* core/languages/sk_SK.po
* core/languages/sr_RS.po
* core/languages/sv_SE.po
* core/languages/th.po
* core/languages/tl.po
* core/languages/tr_TR.po
* core/languages/uk.po
* core/languages/vi.po
* core/languages/zh_CN.po
* epanel/shortcodes/shortcodes.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/module/ContactFormItem.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-style.css
version 2.8 ( updated 06-21-2018 )
- Added new Quick Access design system to the Visual Builder.
* includes/builder/frontend-builder/bundle.js
version 2.7.1 ( updated 06-20-2018 )
- Security Update: Added permission checks on all heartbeat callbacks. For more information, please read: https://us7.campaign-archive.com/?u=9ae7aa91c578052b052b864d6&id=3b5811b076
- Separated page fetching into a separate ajax call to reduce peek memory usage during post.php loading.
- Fixed a bug that caused Theme Customizer button padding to overwrite custom button module padding added in the Divi Builder.
- Exclude current post/page from Existing Pages in Divi Library.
- Fixed an error that could sometime happen in Divi Library when loading a layout.
- Fixed a bug that could cause the 'Add Module' modal to show no content.
- Added in page creation UI animation dependency on builder settings.
- Decreased PHP memory usage to avoid possible server errors.
- Updated styling for contact module's checkbox field.
- Fixed never-before-published draft pages not showing up in Existing Pages in Library.
- Fixed an issue where dragging a section to the very top while in wireframe mode was not easy.
- Fixed a Javascript error that occurred when changing a value in a numeric input field and clicking out of the field quickly.
- Fixed tooltip still visible after the module buttons clicked.
- Fixed a bug where Post Carousel module disappeared while changing the browser window size.
- Fixed an error that would create a PHP warning on versions 7.1 and up.
* includes/admin/admin.php
* includes/builder/core.php
* includes/builder/feature/Library.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/functions.php
* includes/builder/module/Button.php
* includes/builder/scripts/builder.js
* includes/builder/styles/frontend-builder-style.css
* scripts/scripts.js
version 2.7 ( updated 06-14-2018 )
- Added new page creation workflow for the Visual Builder
- Any page can now be duplicated/imported into the builder.
- Added in ability to copy individual font options across different type of modules.
- Fixed selector used for custom CSS styles targeting form fields in the Email Optin module.
- Fixed an issue where the tooltip modal would not align correctly while in wireframe mode on the VB.
- Fixed an issue when zooming would cause a 1 pixel line when using section dividers.
- Fixed js error occurring in Blog and Portfolio modules when using pagination in Divi Builder Plugin.
- Fixed bug CSS selectors syntax when Divi Builder plugin is active.
- Updated the styling of the error message within the optin module.
- Fixed a PHP compatibility issue for version 5.2 where a function did not exist.
- Fixed Mailchimp newsletter subscribe option resulting in double optin even when single optin was chosen.
- Fixed an issue in the Constant Contact API Wrapper that made it impossible to subscribe an existing subscriber to any additional lists.
- Fixed a PHP error that was triggered on some AJAX calls when ET_DEBUG constant was set to true.
* core/components/Logger.php
* core/components/api/email/ConstantContact.php
* core/components/api/email/MailChimp.php
* core/components/init.php
* includes/builder/class-et-builder-element.php
* includes/builder/core.php
* includes/builder/feature/Library.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/frontend-builder/helpers.php
* includes/builder/frontend-builder/i18n/library.php
* includes/builder/frontend-builder/webpack.config.js
* includes/builder/frontend-builder/webpack.production.config.js
* includes/builder/functions.php
* includes/builder/images/clone.gif
* includes/builder/images/clone.png
* includes/builder/images/existing.gif
* includes/builder/images/existing.png
* includes/builder/images/premade.gif
* includes/builder/images/premade.png
* includes/builder/images/scratch.gif
* includes/builder/images/scratch.png
* includes/builder/module/Signup.php
* includes/builder/module/settings/migration/ContactFormItemOptionsSerialization.php
* includes/builder/scripts/builder.js
* includes/builder/scripts/frontend-builder-scripts.js
* includes/builder/styles/frontend-builder-style.css
* includes/builder/styles/style.css
version 2.6 ( updated 06-07-2018 )
- Added rollback feature which allows users to rollback to the version of Extra that they previously had installed before updating.
- Fixed Javascript error when configuring Global Modules selective sync in Visual Builder.
- Updated behavior of numeric controls so that they increment by the appropriate interval for the control.
- Fixed an issue where the bottom modal position option wouldn't display the correct setting.
- Fixed an issue with CSS style generation for Divi Builder modules that use another module's render method.
- Adjusted the settings modal's border radii to prevent rough edges displaying on the corners against dark backgrounds.
- Fixed fullwidth header responsive preview for desktop when setting a center layout design.
- Fixed ability to delete a module while the module settings modal is open when in wireframe mode in Visual Builder.
- Fix issue in the Email Optin module where description and footer content that included links would be lost upon saving the page in the classic Divi Builder.
- Fixed an error caused by contact form checkbox, radio and select fields with quotes in their options' labels.
- Fixed display issue with custom date and number inputs with CampaignMonitor provider for Email Optin Module.
- Enabled conditional parent options If child styles are copied & pasted.
- Fixed email optin migration bug where description disappears after being saved on VB without any modification.
- Fixed migration inconsistencies when the migrated value is being migrated to the same attribute name.
* core/admin/css/core.css
* core/admin/css/version-rollback.css
* core/admin/js/core.js
* core/admin/js/version-rollback.js
* core/components/README.md
* core/components/VersionRollback.php
* core/components/api/ElegantThemes.php
* core/components/api/email/CampaignMonitor.php
* core/components/lib/SilentThemeUpgraderSkin.php
* core/functions.php
* core/languages/ar.mo
* core/languages/ar.po
* core/languages/bg_BG.mo
* core/languages/bg_BG.po
* core/languages/cs_CZ.mo
* core/languages/cs_CZ.po
* core/languages/da_DK.mo
* core/languages/da_DK.po
* core/languages/de_DE.mo
* core/languages/de_DE.po
* core/languages/el.mo
* core/languages/el.po
* core/languages/en_US.mo
* core/languages/en_US.po
* core/languages/en_US.pot
* core/languages/es_ES.mo
* core/languages/es_ES.po
* core/languages/fi.mo
* core/languages/fi.po
* core/languages/fr_FR.mo
* core/languages/fr_FR.po
* core/languages/he_IL.mo
* core/languages/he_IL.po
* core/languages/hu_HU.mo
* core/languages/hu_HU.po
* core/languages/id_ID.mo
* core/languages/id_ID.po
* core/languages/it_IT.mo
* core/languages/it_IT.po
* core/languages/ja.mo
* core/languages/ja.po
* core/languages/ko_KR.mo
* core/languages/ko_KR.po
* core/languages/ms_MY.mo
* core/languages/ms_MY.po
* core/languages/nb_NO.mo
* core/languages/nb_NO.po
* core/languages/nl_NL.mo
* core/languages/nl_NL.po
* core/languages/pl_PL.mo
* core/languages/pl_PL.po
* core/languages/pt_BR.mo
* core/languages/pt_BR.po
* core/languages/ro_RO.mo
* core/languages/ro_RO.po
* core/languages/ru_RU.mo
* core/languages/ru_RU.po
* core/languages/sk_SK.mo
* core/languages/sk_SK.po
* core/languages/sr_RS.mo
* core/languages/sr_RS.po
* core/languages/sv_SE.mo
* core/languages/sv_SE.po
* core/languages/th.mo
* core/languages/th.po
* core/languages/tl.mo
* core/languages/tl.po
* core/languages/tr_TR.mo
* core/languages/tr_TR.po
* core/languages/uk.mo
* core/languages/uk.po
* core/languages/vi.mo
* core/languages/vi.po
* core/languages/zh_CN.mo
* core/languages/zh_CN.po
* epanel/css/panel.css
* includes/builder/class-et-builder-element.php
* includes/builder/frontend-builder/bundle.js
* includes/builder/functions.php
* includes/builder/module/Signup.php
* includes/builder/module/settings/Migration.php
* includes/builder/module/settings/migration/Animation.php
* includes/builder/module/settings/migration/BackgroundUI.php
* includes/builder/module/settings/migration/BorderOptions.php