-
Notifications
You must be signed in to change notification settings - Fork 81
/
readme.txt
2275 lines (1952 loc) · 91.2 KB
/
readme.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
=== Brizy - Page Builder ===
Contributors: themefuse
Tags: page builder, website builder, brizy, editor, visual editor, unyson, wysiwyg, landing page, drag-and-drop, design, landing page builder, front-end builder
Requires at least: 4.5
Tested up to: 6.6.2
Requires PHP: 7.2.24
Stable tag: 2.5.9
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
A page builder that is fast & easy, Brizy is a next-gen website builder that anyone can use. No designer or developer skills required. Once you go Brizy, nothing else feels easy!
More details on: https://brizy.io
== Description ==
https://vimeo.com/263343966
A page builder that is fast & easy, [Brizy](https://brizy.io/) is a next-gen website builder that anyone can use. No designer or developer skills required. Once you go Brizy, nothing else feels easy!
== Highlights ==
![Clutter free](https://brizy.io/wp-content/uploads/2018/04/Clutter-free.gif)
= Smart & clutter free =
Most page builder crowd all the options for a specific element in remote sidebars, making it hard to focus on the task at hand. Our website builder shows only what's needed, front & centre, close to the element you are editing.
![Drag & Drop](https://brizy.io/wp-content/uploads/2018/04/Drag-Drop.gif)
= Intuitive drag & drop =
Moving content elements, columns or rows is a breeze with our intuitive Drag & Drop feature. Just grab and drag them to the desired position and everything will instantly fall into place.
keyword
![Design Elements](https://brizy.io/wp-content/uploads/2018/04/Design-Elements.gif)
= Page Builder Design elements =
Text, buttons, images, icons, video, maps and many more are ready to help you create your page design in a snap.
![Pre-made blocks](https://brizy.io/wp-content/uploads/2018/04/Pre-made-blocks.gif)
= Over 500 pre-made blocks =
Expertly crafted with conversions in mind, the Brizy website builder design kit is a collection of 500+ blocks that will enable you to create websites in minutes.
![Icons](https://brizy.io/wp-content/uploads/2018/04/Icons.gif)
= Over 4000 icons included =
Available in both Outline and Glyph versions, even the most demanding icon needs are covered. Quickly find the icons you're after by filtering through categories or searching by keywords.
![Global styling](https://brizy.io/wp-content/uploads/2018/04/Global-styling.gif)
= Global styling =
Ever wanted to change all the similar colors in your web page with a single click? With Brizy page builder, you can! Not only that, but you can change all texts that share the same properties in one go, as well.
![Mobile friendly](https://brizy.io/wp-content/uploads/2018/04/Mobile-friendly.gif)
= Mobile Friendly =
Switch instantly to Mobile View mode, where you can make changes that will only apply to these type of devices. This gives you the power to differentiate your page design and optimise for smaller screens.
![Text Editor](https://brizy.io/wp-content/uploads/2018/04/Text-Editor.gif)
= Smart text editor =
Just click and type to edit all the texts in-place. Changing colors, fonts, alignments right there on the spot allows you to have a perfect representation of how the design will look like in the end.
![Images](https://brizy.io/wp-content/uploads/2018/04/Images.gif)
= Images done right =
The Brizy page builder lets you take full control over your website images by harnessing our powerful and easy-to-use options. Upload, focus, zoom and resize are all done effortlessly, in a matter of seconds.
![Content adjustments](https://brizy.io/wp-content/uploads/2018/04/Content-adjustments.gif)
= Content adjustments =
Just a couple of clicks are needed to make content adjustments in width, height and alignment. All done with intuitive options, placed where they should be.
![Resize columns](https://brizy.io/wp-content/uploads/2018/04/Resize-columns.gif)
= Undo / Redo =
Don't worry if you make a mistake or delete something that you shouldn't have. With Undo you can get everything back.
= Liked Brizy? =
- Join our [Facebook Group](https://www.facebook.com/groups/brizy).
== Installation ==
= Minimum Requirements =
* WordPress 4.5 or greater
* PHP version 5.4 or greater
* MySQL version 5.0 or greater
= We recommend your host supports: =
* PHP version 7.0 or greater
* MySQL version 5.6 or greater
* WP Memory limit of 64 MB or greater (128 MB or higher is preferred)
= Installation =
1. Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the `wp-content/plugins/` directory of your WordPress installation.
2. Activate the plugin through the 'Plugins' menu in WordPress.
3. Go to Pages > Add New
4. Press the 'Edit with Brizy' button.
= Terms of Service =
[Terms of use](https://brizy.io/terms/)
[Privacy policy](https://brizy.io/privacy/)
== Frequently Asked Questions ==
= Source Code, Suggestions & Issues =
**ON THE PUBLIC GITHUB YOU CAN**
- [Download the source code](https://github.com/ThemeFuse/Brizy)
- [Request a feature](https://github.com/ThemeFuse/Brizy/issues)
- [Submit an issue](https://github.com/ThemeFuse/Brizy/issues)
== Screenshots ==
1. **Add elements to create your own design**
2. **Add over 150 premade blocks**
3. **The interface shows only what's needed for the task at hand**
4. **You'll know where your elements will drop when you drag them**
5. **Smart text editor**
6. **Try different fonts and colors across your pages in a matter of seconds**
7. **What you edit in mobile view will be applied only on mobile devices**
8. **Brizy comes with a library of over 4000 icons separated in 27 categories**
9. **Image focus, zoom and resize are all done effortlessly**
10. **Adjust content to your liking**
11. **Resize columns by dragging the handle that appears in between**
== Changelog ==
= 2.5.9 - 2024-10-21 =
* Fixed: CSS styles in Hamburger Menu
* Fixed: File upload extension issues
* Fixed: Image links pointing incorrectly
* Improved: Page, Popup and Global Blocks dependencies
= 2.5.8 - 2024-09-19 =
* Fixed: Anchor link with dynamic ID placeholder
* Fixed: Missing Icon for help video
* Fixed: Global typography - Missing generate method in config
= 2.5.7 - 2024-09-18 =
* Fixed: Astra Pro compatibility issue
= 2.5.6 - 2024-09-18 =
* Fixed: Simplified the method that obtain the attachment by UID
= 2.5.5 - 2024-09-17 =
* Fixed: Simplified the method that obtain the attachment by UID
= 2.5.4 - 2024-09-17 =
* New: Hover animations for Buttons
* New: Paypal element
* New: Slideshow option for Section
* New: Text transform options for typography
* New: Subscript and superscript for Text element
* New: Background color option for Video element
* New: Background video for responsive modes for Section, Row and Column
* New: Regenerate Global styles with AI
* New: Ability to pin elements in left sidebar
* Improved: Ability to copy and paste effects and animations
* Improved: Box resizer restrictions for Map
* Improved: Removed "To dashboard" button
* Improved: After upload, Image element by default has original size
* Improved: Increase width of column resizer bar
* Improved: Tollbar options code base and migrate Map, Line and Video to new CSS generator
* Improved: Center "Styling" and "Effects" toolbar buttons:
* Fixed: Disabled zoom option for Section,Row and Column for respondive modes:
* Fixed: Background video error after cloning the container element:
* Fixed: Text selection opacity if mask/gradinent is set
* Fixed: Box resizer in responsive modes for all elements
* Fixed: Copya and paste styles for responsive modes
* Fixed: Bullet list alignment in Text element
* Fixed: Text formatting after clear in Story
* Fixed: Button size with default fill type
* Fixed: Size of typography text decoration icons
* Fixed: Background color does not remove on clear formatting on Text element
* Fixed: Paste style of font style in Text element
* Fixed: Section slider content snaps after slider load
* Fixed: Slider block hover arrow color
* Fixed: Slider block remains active after deleting
* Fixed: Close dropdown of internal link after selection
* Fixed: Compilation error
* Fixed: Excerpt recursion when using Brizy posts in post loops
* Fixed: Global block rule matching
= 2.5.3 - 2024-08-16 =
* Fixed: Send the form nonce on submit when the user is authenticated
= 2.5.2 - 2024-08-01 =
* Fixed: Assets not loading on subfolder WordPress instances
= 2.5.1 - 2024-07-26 =
* Fixed: Icons not loading on subfolder WordPress instances
* Fixed: 404 templates not displaying correctly
* Fixed: Restored backward compatibility support for Astra
* Fixed: reCAPTCHA issues for current users
* Fixed: Page content visibility in wp-admin when editing pages
= 2.5.0 - 2024-07-22 =
* New: HTML Compilation process for major page-loading improvements
* Fixed: Copy-Paste Styles for Text Element when using selected text
* Fixed: Various vulnerabilities
* Fixed: Global Styles not saving current state in some instances
* Fixed: Text multi-select with gradients bug
* Fixed: Section background displaying incorrect option
* Improved: Uploading images in WEBP format
* Improved: Moved Form element from FREE to PRO
* Improved: Added rich-text formatting clearance
* Improved: Reload the preview tab if already open instead of new tab
* Updated: Builder developer dependencies
= 2.4.45 - 2024-07-05 =
* Fixed: small fixes in how the uploaded files are hnadled
= 2.4.44 - 2024-05-14 =
* Fixed: Fixed vulnerabilities reported by Worldfence
= 2.4.43 - 2024-03-26 =
* Fixed: dynamic content
* FIxed: Embed element is not working
= 2.4.42 - 2024-03-20 =
* Fixed: Drag and drop functionality not working outside the visible viewport
* Fixed: Copy and Paste for Text element with color gradient
* Fixed: Selecting all text via shortcut then writing does not show new texts
* Fixed: Text element with selection for text-transform
* Fixed: Mask for Text element when using Dynamic Image not working
* Fixed: Screenshots for blocks inside Reorder sidebar
* Fixed: Global Typography in responsive viewports
* Fixed: Text element broken error
* Improved: Added fade option for Carousel element and Slider option in blocks
* Improved: Added 'Open in new tab' option for internal page links
* Improved: Added Underline for links on hover
* Improved: Changed UI for Dynamic population option
* Improved: Text element performance with color change
= 2.4.41 - 2024-02-13 =
* Fixed: Text color from hex when we have the type transparent
* Fixed: Text Copy and Paste
* Fixed: Added image content validator on import blocks
* Fixed: Directory Traversal on screenshot update
= 2.4.40 - 2024-02-07 =
* New: Help video functionality inside the builder
* New: Added variable fonts
* New: Text highlight color
* Improved: Custom Attributes position in the right sidebar
* Improved: Include Global Style when saving layouts
* Improved: Toolbar options arrow position on Rows
* Improved: Extract React from editor build, and add this as standalone script in HTML
* Improved: Disable shorten/extend actions for AI text in some cases
* Improved: Drag and drop for Icons and Buttons
* Improved: Tabs UI colors in right sidebar
* Fixed: Progress bar comes out of the wrapper
* Fixed: Text Link option pasted value doesn't save if instantly closing toolbar
* Fixed: Video player won't extend on mobile on IOS
* Fixed: Form Select arrow
* Fixed: Column align when Effects are enabled
* Fixed: Writing long texts in Form fields
* Fixed: Video element crashed when imported with a block
* Fixed: Column alignment doesn't work on Auto distribute option
* Fixed: Toolbar css issue when searching a Collection Type name
* Fixed: Copy Styles don't apply for Dynamic Content Rich Text
* Fixed: Background button and icon hover color didn't match preview
* Fixed: Video background for blocks and columns unable to pause
= 2.4.39 - 2024-01-17 =
* New: Add Right Click Context Menu to Tabs Element
* New: Added tooltip message when saving draft pages
* Improved: Speed when searching pages URL for Links
* Improved: Reduced file size of the Client API
* Improved: UI Translation
* Fixed: Link To option loses focus
* Fixed: Icon Background corner is not active
* Fixed: Save selected Page in Link option on any Text element
* Fixed: Scroll in toolbara and typography is not working when parallax effect is set
* Fixed: Some Saved Blocks thumbnails are not displayed
* Fixed: Styling Dividers Show thin line on some mobile devices
* Fixed: Background color on hover "Get a pro Plan" button
* Fixed: Drag & Drop for Posts, Accordion Tab elements
* Fixed: Drag & Drop Lines remain active randomly
* Fixed: Padding bottom for Video with Cover Image
= 2.4.38 - 2023-12-28 =
* Fixed: Small layout fixes in templates
= 2.4.37 - 2023-12-28 =
* New: Added 16 new templates.
= 2.4.36 - 2023-12-19 =
* New: Added corner radius styling for tabs in Tab Element
* New: Added ability to filter by keywords in the element panel
* New: Added ability to delete, duplicate all buttons or icons at once
* Improved: Added additional styling for the dynamic placeholder in Text elements
* Improved: Localisation strings for Icons tab
* Improved: Localisation strings for Audio element
* Improved: Localisation strings for Video element
* Improved: Localisation strings for Accordion element
* Improved: Localisation strings for Accordion tags
* Improved: Localisation strings for Block option translation
* Improved: Localisation strings for Form element
* Improved: Localisation strings for "View as" option in left sidebar
* Improved: Localisation for Right Sidebar
* Improved: Localisation for Posts element
* Improved: Localisation for Blocks popup
* Improved: Localisation for Counter element
* Improved: Localisation for Text
* Improved: Localisation for Right Sidebar effects
* Improved: Localisation for Shortcuts popup
* Improved: Hide longer title options in UI with elipse
* Fixed: Unable to delete title in Saved Blocks and Layouts
* Fixed: Youtube Shorts in Video element
* Fixed: Hover effects break column dimensions
* Fixed: Show explicit error messages when import saved blocks
* Fixed: Fix the JSON data before sending to compiler
= 2.4.35 - 2023-12-07 =
* Improved: Reduce text generation time
= 2.4.34 - 2023-12-05 =
* Fixed: Lightbox option on images is not working on frontend
* Fixed: Accordion icon size issue on front end
= 2.4.33 - 2023-12-01 =
* Fixed: Buttons width in preview
* Fixed: Overlay was visible under gradient color
= 2.4.32 - 2023-11-29 =
* New: Use system default fonts instead of Google or custom fonts
* Improved: Reduce icons size
* Improved: Save form checkbox value in preview
* Improved: Move "Show on Desktop" icon under the Basic tab in the right sidebar
* Improved: Delete dynamic content inside Text in one backspace
* Improved: Optimised code output for the Accordion element
* Improved: Optimised code output for the Tabs element
* Improved: Optimised code output for the Icon element
* Improved: Optimised code output for the Button element
* Improved: Reduced ID length in HTML attributes
* Improved: Removed "data-uid" and "name" attributes from section in preview
* Improved: Integrations API new data output format
* Fixed: Drag image with link
* Fixed: Icon sizes values in the Icon element
* Fixed: Dynamic content text color in preview
* Fixed: Sound of video with cover image plays twice
* Fixed: Custom video loop not working
* Fixed: Copy and Paste styles for hover overlay
* Fixed: Return empty for placeholders that are working with WooCommerce functions
= 2.4.31 - 2023-11-08 =
* Fixed: Malformed attribute selector data-brz-popup
* Fixed: Order By feature in Posts and Archive element is not displayed
= 2.4.30 - 2023-11-06 =
* New: Added title and tags for global blocks
* New: Added delete option for form integrations
* Improved: Brizy UI Library in Editor
* Improved: Added notification for outdated Safari browser (version 16.3 and below)
* Improved: Styling option for the Button element in responsive
* Improved: Removed Effects from the Text element in responsive
* Improved: Various option toolbars where the title of the label is too long
* Improved: Added scroll navigation to active element when device mode changes
* Improved: Added GET, POST for Form webhooks
* Improved: Prefixed all data-attributes
* Improved: Added width in PX for the Row element
* Improved: Removed the terms & conditions checkbox from authorization form
* Improved: Sidebar device mode titles
* Improved: Google Fonts updated to the latest version
* Fixed: HTML tags being removed from the Embed element
* Fixed: Autoplay for video background in block slider
* Fixed: Line element does not align if hover is set
* Fixed: Random Google Fonts were not displayed in the preview
* Fixed: Word break does not work correctly in the Alert element
* Fixed: Background video on block slider does not resize correctly
* Fixed: Updated Twitter icon to X
* Fixed: Hide background preview for popups
* Fixed: XSS vulnerability to Text Editor
* Fixed: Accordion tags not working correctly in preview
* Fixed: Version checking for zip files when moving blocks or layouts from WP to Cloud
* Fixed: Setup config data for help videos inside the builder
* Fixed: Added permission to download svg files
* Fixed: Default template display in preview
* Fixed: Jump to the second block by link
* Fixed: Sites give a 500 Error when Brizy Free is updated to latest version on WordPress.com
* Fixed: Gutenberg opens in iframe and the edit with brizy button is not displayed
= 2.4.29 - 2023-10-20 =
* Fixed: Login element error when try to register
= 2.4.28 - 2023-10-11 =
* New: Added Internal Link on the link option for all elements
* Improved: Removed getPage request added pageData inside config
* Improved: Sections container width was changed in 1170px
* Improved: Changed icon for the Webhooks integration on forms
* Improved: Removed the ability to change icons in responsive views for the icon element
* Improved: Button width for default fill type
* Improved: Rename Tags titles in Saved blocks
* Improved: Rearrange Global typography styles
* Improved: Responsive views change automatically when you select the devices in global typography styling
* Fixed: Text color picker on dynamic elements
* Fixed: Hover on certain elements that have motion effects set
* Fixed: Drag and Drop was not working on images with link
* Fixed: Lightbox preview
* Fixed: Toolbars label text length
* Fixed: Dynamic text with gradient color was not visible
* Fixed: Hover animation not working for the same item after sliding
* Fixed: Column content align when scroll animation is applied
* Fixed: Text space for ordered and unordered lists
* Fixed: The accordion element disappears after deleting tags
* Fixed: Opacity for Gradient color does not work correctly
* Fixed: Button Spacing incorrectly affects position and alignment
* Fixed: Global styling not changing
* Fixed: Audio element is still playing after the pop-up is closed
* Fixes: Global colors for Image shadow
* Fixes: Global colors for Image border
* Fixed: Tab and Accordion elements heading get hidden under Sticky/Fixed menu on mobiles
= 2.4.27 - 2023-08-08 =
* New: Added 26 new premade design templates
= 2.4.26 - 2023-07-12 =
* New: Added custom video URL for Block background
* New: Added copy/paste styles for Text element
* New: Added mask option for all containers: Rows, Columns, Blocks
* Improved: Display selected font at top of font list in the Typography options
* Improved: Hexagon Shape in the Mask options
* Improved: Updated icons library Font Awesome to version 6
* Fixed: Text crashed after population change
* Fixed: Block Slider on preview
* Fixed: Element with rotate motion effect moves when hovering on toolbar
* Fixed: Text alignment in the preview
* Fixed: Remove saved block tag
* Fixed: Label text pushing the options out of the UI
* Fixed: Container width in PX shows 1400px max slider value instead of 1170px
= 2.4.25 - 2023-07-03 =
* Fixed: Hot Fix - Redirect only in admin after activation of the plugin
= 2.4.24 - 2023-06-26 =
* Fixed: Scrollbar inside Popup
= 2.4.23 - 2023-06-22 =
* Fixed: Image sizes on the preview
* Fixed: Section Parallax
* Fixed: Section containers
= 2.4.22 - 2023-06-21 =
* New: Added option to sort tags alphabetically in the Accordion element
* New: Added vertical space option for Accordion element
* New: Add width in px for the boxed option on Blocks
* New: Tags and Titles for saved blocks and saved layouts
* Fixed: Builder UI Themes
* Fixed: W3C Accessibility issues: AA, AAA, W3C
* Fixed: Countdown timezone offset
* Fixed: Numbering unordered list in Text element
* Fixed: Image Alt Title option in Right Sidebar
* Fixed: Scroll for code Mirror in Right Sidebar
* Improved: Full width for WordPress Media gallery in tablet and mobile mode
* Improved: Codebase migrate to node 18
* Improved: Changed some elements positions and order in the elements panel
* Improved: Builder select option
* Improved: Added a helper icon for YouTube links in the Video element
* Improved: Omit 1 request for get project
= 2.4.21 - 2023-06-07 =
* Fixed: Button style fill
* Fixed: IconBox with hover effect
= 2.4.20 - 2023-06-01 =
* Fixed: Image resize on preview
* Fixed: Uploaded webp Image
= 2.4.19 - 2023-05-31 =
* New: Advanced Hover animation
* Improved: Button old options to new options
* Improved: Removed title attribute from HTML for the block slider .svg arrows
* Improved: Remove icon on global style in the left sidebar
* Improved: Added IST timezone in the Countdown element
* Improved: Youtube video in the Video element
* Improved: Made all UI scrollbars custom
* Improved: Added .min suffix for all css and js minified files
* Updated: Codemirror plugins
* Updated: Core-js library
* Fixed: Added support to escaping singe and double quotes
* Fixed: Link anchor is not working on the correct block if you scroll
* Fixed: Screenshots browser compatibility on Safari when saving blocks
* Fixed: Link option in a Row element
* Fixed: Escape backslashes in the form data json before inserting in the post content
* New: Added a Getting Started Page for easier onboarding
* New: Added left sidebar config (module groups in config)
* Fixed: Append text via parser by CSS class only
* Fixed: Click twice or more to close a pop-up
* Fixed: Starter template import
* Fixed: Remove the sufix from version compare when importing from archives
* Fixed: Restore WP revisions
= 2.4.18 - 2023-04-03 =
* Fixed: onclick Custom Attribute RightSidebar
* Fixed: Responsive brackground map
* Fixed: Reorder column - option
* Fixed: Background overflow && z-index auto
* Fixed: Tabs text on responsiveMode
* Fixed: Opacity for language switcher drop-down
* Fixed: Form input length validation
* Fixed: Flash on hover transition bg gradient
* Fixed: Text link
* Fixed: Global Style Colorpicker
* Fixed: Element Tabs icon
* Fixed: Form Email input length
* Fixed: Text with Mask
* Fixed: Option file upload remove
* Fixed: Resolve CSS conflicts with woo commerce products
* Fixed: Added dom encoding to utf-8
* Improved: ImageUpload canceling
* Improved: Countdown new timezone
* Improved: LeftSidebar Bottom panel
* Improved: Video Element options
* Improved: Text font size option increased to 200
* Improved: Multiline for Custom Attribute
* Updated: Slick Slider
= 2.4.17 - 2023-03-10 =
* Fixed: Screenshots
* Fixed: Section Background Image
= 2.4.16 - 2023-03-07 =
* New: New eye dropper feature for colors
* New: Preparations for future UI color themes
* Improved: Minified CSS in HTML
* Improved: Editor strings improvements
* Improved: Added Pro visual cues for PRO options inside the builder
* Fixed: Value for Form checkbox was sent in lead even if empty
* Fixed: Background Vimeo video is getting zoomed in preview mode
* Fixed: Right Sidebar advanced settings for icons and buttons
* Fixed: Losing global styling in Text element after refresh
* Fixed: Text on top of custom video is pushed under the video in preview
* Fixed: Made it more clear what video formats can be added for custom video URLs
* Fixed: Removed black strip on the top of the custom video
* Fixed: Broken Links checker is reporting incorrect image URLs
* Fixed: Compatibility with php 8.1
* Fixed: Conflicts with SiteGround Optimizer
* Fixed: The possibility to disable our meta tag viewport, viewport meta tag was duplicated in some cases
* Fixed: The disappearance of texts in the editor when TranslatePress is enabled
= 2.4.15 - 2023-01-31 =
* Fixed: Menu hamburger - items link on responsive mode
= 2.4.13 - 2022-11-17 =
* New: Added styles and more options for the Line element
* New: Added paddings for Counter, Embed, Video, Map, Audio & Countdown elements
* New: Added Mask option for the Image element
* New: Video element new options: Lazy Load, Privacy Mode, Suggested Videos, Muted
* Improved: Borders moved from toolbar to sidebar
* Improved: Color works under CSS variables in Text CSS classes
* Fixed: Column width changed when you click the column resize handle
* Fixed: Hover styles for Update toolbar icons
* Fixed: Border global color on Tabs
* Fixed: Hover styles on icons from Effects
* Fixed: Right Click on Row element
* Fixed: Added new rule matches for current page
= 2.4.11 - 2022-10-12 =
* Fixed: Images URL
= 2.4.10 - 2022-10-11 =
* Fixed: Using SVGs in Image element
* Fixed: Image URLs when using Sync
* Fixed: Fonts when missing fontFamilyType
* Improved: Prefetch for Bunny Fonts
* Improved: Rename Base category to Essentials in element panel
* Improved: Grid elements moved to the top in the element panel
= 2.4.9 - 2022-10-03 =
* Fixed: Global Blocks rules for the Archive template
= 2.4.8 - 2022-09-28 =
* Fixed: The crash when the WooComerce plugin is disabled.
= 2.4.7 - 2022-09-28 =
* Improved: Get fonts from https://fonts.bunny.net instead of https://fonts.googleapis.com to address GDPR font issues
* Improved: Saved blocks pagination 50 blocks
* Improved: Deleting request when you delete saved block or saved layout
* Improved: Removed Math.random for security
* Fixed: Map - popup is not closed when the cover on map is clicked
* Fixed: Parallax in responsive mode
* Fixed: Menu element - Icon size option
* Fixed: Product Archive template shows posts instead of products
* Fixed: Wp Optimize plugin compatibility
= 2.4.6 - 2022-09-17 =
* New: Infinite animation option
* New: Added select All option for custom post types in Global blocks conditions
* Fixed: Lag when you select colors in Global styles
* Fixed: Added from category display condition for global blocks
* Fixed: Made mouse pointer when you hover the color option on block dividers
* Fixed: Undo and Redo in Text element
* Fixed: Empty column crash on Editor role
* Fixed: Mute video when you set the cover option in Video element
* Fixed: Divider on Section
* Fixed: Parallax in responsive views
* Fixed: Enable update button on undo or redo
* Fixed: Diacritics are converted to unicode characters
* Fixed: Image crashing when clicking the resize pointers
* Fixed: Counter style 2-3-4 in Story
* Fixed: Countdown height in Story
* Fixed: Form submit button in Story
* Fixed: Button border in Story
* Fixed: Accordion - border-radius on tags
* Fixed: Tabs - Title in responsive views
* Fixed: Carousel - Working with text breaks the carousel
* Fixed: Fast scroll on Blocks that have Parallax option on
* Improved: UI improvement to accommodate long text translation
* Improved: Minify global typography CSS variables
* Improved: Root window referrer request
* Improved: Color picker gradient issues
* Improved: LeftSidebar icon position in dropdown menu
* Improved: Added First Name and Last Name in Authorization form with Cloud when you save blocks layouts
= 2.4.5 - 2022-08-30 =
* Fixed: Mute on video with cover
* Fixed: Recaptcha keys not saving in the contact form
= 2.4.4 - 2022-08-16 =
* Fixed: Copy/Paste RichText
* Fixed: Global Style LetterSpacing
= 2.4.3 - 2022-07-20 =
* New: New Templates
= 2.4.2 - 2022-06-15 =
* Fixed: Template Conditions
* Fixed: Polylang fix home url in breadcrumbs
* Fixed: Remove logs for cropping images
* Fixed: Escape the script contents for non adminstrators users. This vulnerability was discovered by Vishnupriya Ilango of Fortinets FortiGuard Labs
* Fixed: Fix autoupdate of the pro version, added an admin notice in the plugins list page when a major update is available
= 2.4.1 - 2022-06-02 =
* Improved: Saved blocks lazy load
* Improved: Performance on columns drag and drop
* Improved: Performance on videos and images resize
* Improved: Performance on column resize
* Improved: Section padding resize
* Fixed: Column issue when is inside a Tab element
* Fixed: Featured image on columns hover did not inherit image from normal state
* Fixed: The right sidebar on Tab element was messed up
* Fixed: Endless spinning on the Video element
* Fixed: Block margin in px and %
* Fixed: Block border radius on color hover
* Fixed: YouTube header script
* Fixed: Do not render PRO elements in preview
* Fixed: Added controls option for Vimeo videos
= 2.4.0 - 2022-05-18 =
* New: Counter width changing the location in color section of toolbar
* New: Possibility to add URL for video like .mp4 URLs
* New: Added block bg. options: auto, contain, cover and bg. repeat
* New: More options for SoundCloud
* New: Added background map and video for columns
* New: Added Overlay color for image
* New: Added example for Shortcode element
* New: Added reorder option for columns
* New: Added new line styles
* New: RichText Matching HTML tag with typography font style
* New: Added new align option for column, auto and custom height
* New: Created possibility to change default font
* New: Added order to tabs
* New: Section Added slider reorder
* New: Counter added text shadow
* New: Added Form reorder option
* New: Add New Block Divider
* New: Added Accordion Title padding
* New: Added reorder option to accordion
* New: Moved entrance animation effects functionality in right sidebar
* New: Added vh and em suffixes to Spacer
* New: Add new style blending mode for certain elements
* New: Added Column width option
* New: Added status badge in the block display conditions popup
* New: Added support for placeholders in email templates
* Improved: Added new shortcut Ctrl+M opens Styling right panel
* Improved: Added new shortcut Ctrl + K opens Effects right panel
* Improved: All options in the builder were refactored
* Improved: Publish Update button state
* Improved: Added input value change on scroll
* Improved: Toolbar option for shortcode element
* Improved: Added additional animation styles for tabs and accordions
* Improved: Added new icon for breadcrumbs
* Improved: Added Autoplay and loop for Youtube and Vimeo
* Improved: Removed separator option for Counter types Empty and Pie
* Improved: Can change name for All tag in Accordion element
* Improved: Reply-to user email placeholder for contact forms
* Improved: More settings icon alignment
* Improved: Added typography value boundaries
* Improved: Added loading icon when importing a Layout
* Improved: Enabled swipe option for slider
* Improved: Working with code in Embed element
* Improved: Opacity value for colors is displayed on hover
* Improved: Tabs hover transition
* Fixed: Sidebar update for Switcher, Table, Tabs
* Fixed: The scale option for Rating appears only for desktop view
* Fixed: Counter suffix option when working with dynamic values
* Fixed: Filters Hover for certain elements
* Fixed: Rename size to width for Map element
* Fixed: Overlay option for Images appears only for desktop view
* Fixed: Countdown redirect label
* Fixed: Accordion item head align and css
* Fixed: Responsive slider dots option with a lot of slides
* Fixed: Outline border when resizing an element from the resize dots
* Fixed: Remove Products from single template type
* Fixed: Added option to allow json file upload
* Fixed: Fixed placeholder strip on post save.
* Fixed: Cast rule values to int on serialization
* Fixed: Refactor post_type to postType in editor config
* Fixed: Show Products post type in global block rules
* Fixed: Send post_term_parents as an array not object when the array is not empty
* Fixed: Added additional data about the post in editor config.
* Fixed: Return all global block ignoring the status
* Fixed: Added post_status in brizy_get_posts actions
* Fixed: Change the Pages group name to Main Content in template rule form
= 2.3.37 - 2022-05-05 =
* Fixed: Section dividers on Firefox
* Fixed: Tab background color on mobile responsive view
* Fixed: Unexpected token h in JSON at position 0 error when saving a layout
= 2.3.36 - 2022-05-03 =
* Improved: Improved performance when you have a lot of columns on the page
* Improved: Improved performance when you change global styling
* Improved: Improved performance when you copy paste styles
* Fixed: Mouse cursor when hovering the UI on the left sidebar
* Fixed: Moved layout Ekstra to PRO
* Fixed: Import Blocks button in Safari
* Fixed: Buttons conflicts with GTM
= 2.3.35 - 2022-04-21 =
* Fixed: Text blink
* Fixed: Section Dividers
= 2.3.34 - 2022-04-20 =
* New: Added hover Transition for elements: Accordion, ProgressBar and Tabs
* New: Added cover image option for the Map element
* Fixed: Cover images not displaying in Playlist element
* Fixed: YouTube loop when you set start-end options
* Fixed: Changed size for Image option upload field
* Fixed: Text element blinks when changing align options
* Fixed: Layout Carwash was changed to PRO
* Fixed: Layout Scooter Rental was changed to PRO
* Fixed: Active border size for element Tabs
* Fixed: Style 3 for Tabs element
* Fixed: Center align option for arrows in the Accordion element
* Fixed: Cover image repeat issue
* New: Auto install for Brizy Starter Templates
* Fixed: Fixed attachment post type exclusion
* Fixed: Remove attachment post type from post type list from editor config
* Fixed: Lost global colour styling
* Fixed: Include inline JS scripts depending on their priority
* Fixed: Preventing directory traversal on get icon
= 2.3.33 - 2022-03-10 =
* New: Import and Export Saved Blocks, Popups, Layouts
* New: Show progress on story when autoplay is on
* Improved: Increased the number of history snapshots from 10 to 20. Happy Ctrl-Z-ing
* Improved: SEO for Video element
* Improved: Plugin Cross-Site Scripting
* Fixed: Link to slide in Web Stories
* Fixed: Undo and redo in Text element
* Fixed: Text styles after pasting text from outside the builder
* Fixed: Random global blocks are not saved in Global block list
* Fixed: Posts include and exclude select
* Fixed: Style for Counter element in Firefox
* Fixed: Vimeo video background loop
* Fixed: Countdown restart after finished
= 2.3.32 - 2022-03-04 =
* Fixed: Security fix
= 2.3.31 - 2022-03-02 =
* New: Collaboration tool option in left sidebar
* Improved: Changed max value for counter element
* Improved: Selecting dropdown options in Post filter option
* Improved: Cache for dynamic content images
* Improved: Performance on extracting images, avoid creating duplicate of images when the sizes are bigger than image, removed functions and all data sent to editor regards to download_images from s3
* Improved: SQL query for attachment id
* Improved: Optimize save global blocks
* Fixed: Avoid load duplicates images in the editor
* Fixed: Original image width and height
* Fixed: Width for sidebar custom attributes
* Fixed: Links on buttons when global blocks are missing
* Fixed: Gradient color for buttons
* Fixed: External Popups font assets
* Fixed: Form hidden field send only label
* Fixed: Premade popup designs available only in PRO
* Fixed: View as for membership roles in builder
* Fixed: Separators in responsive and hamburger dropdowns in the left sidebar
* Fixed: Accordion active tags
* Fixed: Hide go to dashboard for reseller partners
* Fixed: Removed dependency asset storage of asset proxy processor
* Fixed: Custom fonts endpoint
= 2.3.30 - 2022-02-09 =
* Improved: Form element - added Loading animation to button after submit
* Fixed: Form element - Hidden field not working correctly
* Fixed: Video element - gets muted after cover image is added
* Fixed: Tabs element - options not working on responsive views
* Fixed: Tabs element - orientation and style not working on responsive views
* Fixed: Tabs element - duplicate options in right sidebar on responsive views
* Fixed: Blocks get reordered when only global blocks exist in page
* Fixed: Menu element - jumping on hover when border opacity is 0 in normal mode
* Fixed: Columns and Rows - image background hover not working
* Fixed: Global blocks conditions in custom post types
* Fixed: Section Background Video error when loop is enabled
* Fixed: Slider and Carousel element - dots not positioned correctly
= 2.3.29 - 2022-02-03 =
* Fixed: Font url validation
* Fixed: Do shortcode on render brizy content of the shop page
* Fixed: Brizy and Complianz – GDPR/CCPA Cookie Consent plugin incompatibility
* Fixed: Saves scripts relative to the plugin main folder
* Fixed: WPML menu switcher, WPML sync menu, WPML fatal error on duplicate non brizy posts
* Fixed: Brizy Overview dashboard widget
* Fixed: Allow br tags on render lead list in admin dashboard
= 2.3.28 - 2022-01-17 =
* Fixed: Color and align for text element
= 2.3.27 - 2022-01-14 =
* New: Added border, background-color and shadow for content
* New: Added Image width px unit for svg and gif type
* Improved: XSS in RichText and all Links
* Fixed: Login entered information error
* Fixed: Dashboard news
* Fixed: Update pot file and corrected some strings translations
* Fixed: Fatal error on duplicate page with wpml, restore asset url by wp option siteurl
= 2.3.26 - 2022-01-10 =
* Improved: Removed icon ids
* Fixed: Video with cover was not playing on click
* Fixed: Upload form field could not be edited if placeholder is off
* Fixed: Form error messages
* Fixed: Added compatibility with the plugin Perfmatters
* Fixed: On export templates check if the license key is valid
* Fixed: Tell the editor if the current user is admin
* Fixed: Do not load scripts in header and footer when they are build it with Astra Pro and template is brizy blank template
* Fixed: WPML Menu switcher is missing from Brizy pages
* Fixed: Escape the script contents for non adminstrators users (This vulnerability was discovered by Vishnupriya Ilango of Fortinets FortiGuard Labs)
= 2.3.25 - 2021-12-20 =
* Fixed: Image size select
* Fixed: Search by layout name
* Fixed: Custom css characters transformed to unicode in preview
* Fixed: Form select scroll
* Fixed: Increased the returned post count on brizy_get_pots
= 2.3.24 - 2021-12-13 =
* Fixed: Included all composer files
= 2.3.23 - 2021-12-13 =
* Fixed: Switching weights on custom uploaded fonts
* Fixed: Select dropdown width on Countdown
* Fixed: Responsive corrections in Seo Agency layout
* Fixed: Added brizy_attachment_uid to attachments
* Fixed: Show WooCommerce notices on templates for products
* Fixed: Menu improvement
* Improved: Need help URLs in Form app integrations
= 2.3.22 - 2021-12-02 =
* Fixed: Global blocks conditions
* Fixed: Black stripes after image crop
= 2.3.21 - 2021-11-30 =
* New: Size options when you upload .svg and .gifs files in Image element
* Fixed: Remove rel attributes for style to solve some plugin conflicts
* Fixed: Button align and width on Login element
* Fixed: Labels correspond with input id in the Form element
* Fixed: 505 error when you use extra large retina images
* Fixed: Text alignment when it is in a list for certain fonts
* Fixed: Color for bullet points
* Fixed: Removed the form placeholder name from dropdowns on the front end
* Fixed: Form pattern attribute
* Fixed: Individual IDs and CSS classes for Icons and Buttons
* Fixed: Decode html entity on export leads
* Fixed: Blurred images with TranslatePress plugin installed
* Fixed: Added display block by logged-in users
* Fixed: Show in preview blocks by role even the user has the role of administrator
* Fixed: Syntax error in CSS when you have custom CSS
* Improved: Drag and Drop performance
= 2.3.20 - 2021-11-10 =
* Improved: Added system check at the plugin startup
* Fixed: Black line on resized images
* Fixed: Avoid using the WP image functions for getting image sizes
= 2.3.19 - 2021-11-09 =
* New: Select original image in the Image Element
* New: Select original image for the dynamic image element
* Improved: Updated the Google fonts library
* Fixed: Google fonts search option was not working correctly
* Fixed: Image is cut in full height option
* Fixed: The fonts no longer intersect for element tabs
* Fixed: End option on Vimeo videos
* Fixed: Border Shadow options display
* Fixed: Border top on tabs in responsive
* Fixed: Media file upload position
* Fixed: Counter goes only to 100 in preview
* Fixed: Text sometime data-href is empty (Internal 500 error on the front-end)
* Fixed: Select drop-down options in the contact form are not showing the selected font
* Fixed: Allowing redirects on loading our iframe, so you can use theme default templates
= 2.3.18 - 2021-10-18 =
* New: 3 design layout packs
* Improved: Added autoplay and loop options for the Video element
* Improved: Drag and Drop between columns
* Improved: Compatibility WP Ultimo plugin. Edit brizy pages with remapping domain
* Improved: Compatibility with Page Optimize plugin
* Improved: Moved HTML Tag option back on the main toolbar on Text element
* Fixed: PostTitle added title hover transition
* Fixed: Contact form text arrangement in dropdown
* Fixed: Contact form dropdown border
* Fixed: Nested accordions collapse issue
* Fixed: Alignment in Login element
* Fixed: Fonts for Tabs
* Fixed: Styles issues for nested tabs
* Fixed: Styles issues for nested accordions
* Fixed: Vimeo bg video starting with a delay
* Fixed: Nested accordions animation
* Fixed: Displays negative values for the Counter element
* Fixed: Hexa color code in gradient background for Blocks
* Fixed: Countdown styles size and color
* Fixed: Empty links in Text element in preview
* Fixed: Negative spread values for shadows
* Fixed: Double options in right sidebar for certain elements in responsive views
* Fixed: Images are not rendered on a non default language URL
* Fixed: Use Brizy_Public_AssetProxy::get_mime instead of native function
= 2.3.17 - 2021-09-21 =
* Fixed: Revert optimization for assets, conflicts with plugins
* Fixed: Recompile popups on update
= 2.3.16 - 2021-09-16 =
* New: Added vertical align for icon in IconBox
* New: Import and Export for Saved blocks
* Improved: Page loading speed on preview when you have custom fonts on your page
* Fixed: CSS with theme Zita for wooPrice
* Fixed: Popups on Text links
* Fixed: Block screenshots not looking properly in Chrome
* Fixed: Text element with Google translate extensions
* Fixed: Image light-box
* Fixed: False positives malware File Found notifications
* Fixed: Some bugs with meta brizy_post_uid on attachments
* Fixed: Cache related issue when the page appeared broken in preview
= 2.3.15 - 2021-09-09 =
* Fixed: Broken home page url
* Fixed: Asset manager for pages that contains popups
= 2.3.14 - 2021-09-06 =
* Fixed: Icons in the Tabs element
* Fixed: Cover images for the Video element
* Fixed: CSS in Countdown element
* Improved: Brizy works better with caching plugins
* Fixed: Some default options values in the builder
= 2.3.13 - 2021-08-26 =
* Fixed: Editor for Internal Popup
= 2.3.12 - 2021-08-24 =
* New: Hide Section icon when not in focus on tablet and mobile
* Fixed: Anchor scroll when block not found
* Fixed: Form multi-select close
* Fixed: Richtext styles
* Fixed: Global blocks in page compiler error
* Fixed: Deprecate function is_user_allowed from Brizy_Editor class
* Fixed: Load popup on non Brizy pages
* Fixed: Popup code refactoring
* Fixed: Check user permissions by current_user_can
* Fixed: Moved the screenshot validation in screenshot manager class
* Fixed: Validate the uid on save block screenshot
* Fixed: Avoid recursion when including assets
* Fixed: Load all script using wp enqueue functions
= 2.3.11 - 2021-08-18 =
* Fixed: Recompile pages when the Pro plugin is upgraded or disabled
= 2.3.10 - 2021-08-17 =
* Fixed: Dash separated value name for custom attributes
* Fixed: Cache assets on Brizy websites
* Fixed: Added the version of the plugin at the end of the included scripts
* Fixed: Merge uploaded fonts to one URL
* Fixed: Allow to call register scripts on priority 10 for compatibilities like Astra theme
* Fixed: Enqueue scripts through WordPress
= 2.3.9 - 2021-08-06 =
* Fixed: Replace global style when import some template