-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathreadme.txt
More file actions
2683 lines (2294 loc) · 108 KB
/
readme.txt
File metadata and controls
2683 lines (2294 loc) · 108 KB
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.9.4
Requires PHP: 7.2.24
Stable tag: 2.8.12
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 ==

= 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.

= 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

= 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.

= 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.

= 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 =
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 =
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.

= 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 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 =
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.

= 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)
= How can I report security bugs? =
You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. [Report a security vulnerability.](https://patchstack.com/database/vdp/e5a90be1-c3fc-4382-b6f7-a309bd2081ee)
== 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.8.12 - 2026-04-09 =
* Fixed: form leads in admin panel
= 2.8.11 - 2026-04-08 =
* Fixed: Elements Accesibility
* Fixed: Thumbnail Not Loading in WP When Importing ZIP Archives
= 2.8.10 - 2026-04-06 =
* Fixed: Global block compilation bug
= 2.8.9 - 2026-04-01 =
* New: Accessibility improvements for Accordion element
* New: Accessibility improvements for Tabs element
* New: Button – added ARIA attributes
* New: Accessibility improvements for Map element
* New: Accessibility improvements for Video element
* New: Accessibility improvements for Audio element
* New: Accessibility improvements for Counter element
* New: Countdown – added ARIA attributes
* New: Accessibility improvements for Progress Bar element
* New: Accessibility improvements for Translation element
* New: Accessibility improvements for Section Slider
* New: Accessibility improvements for Tooltip
= 2.8.8 - 2026-03-27 =
* Fixed: Auth for multi site instances
= 2.8.7 - 2026-03-25 =
* Fixed: Templates category filter not working after adding AI banner in WP dashboard
= 2.8.6 - 2026-03-19 =
* Fixed: Templates category filter not working after adding AI banner in WP dashboard
= 2.8.5 - 2026-03-17 =
* Fixed: compilation checking for old global blocks
= 2.8.3 - 2026-03-16 =
* Fixed: Form submission button customization
= 2.8.2 - 2026-03-13 =
* fix: Bump min compiler version
= 2.8.1 - 2026-03-11 =
* New: Typography search
* New: Reveal animation effect
* Improved: Builder bundle size and overall performance
* Fixed: Rich text transform and decoration properties
* Fixed: Button gradient background color
* Fixed: Video element play icon display in Safari
* Fixed: Custom icon visibility
* Fixed: Section custom height
= 2.8.0 - 2026-03-09 =
* New: AI integration for WordPress
= 2.7.24 - 2026-02-10 =
* Fixed: Generate global styles bug
* Fixed: Menu Jump bug
* Fixed: Access control bug
* Improved: Extend multiselects for data refetching
= 2.7.23 - 2026-01-22 =
* New: Scrollable tabs
= 2.7.22 - 2026-01-21 =
* New:Change element titles by double-clicking them in the Explorer
* New:Animated gradient option
* New:Custom color options for counter prefix and suffix
* Improved: Keyboard accessibility for Mega Menu and Dropdown
* Improved: Publish button now supports pages with scheduled status
* Improved: Updated internal libraries and dependencies
* Fixed: Buttons now preserve global styles even when customized
* Fixed: Custom videos correctly fill the screen in fullscreen mode
* Fixed: CSS generator output issues resolved
= 2.7.21 - 2025-12-18 =
* Fixed: Text copy and paste shows editable text in preview
= 2.7.20 - 2025-12-15 =
* New: Translations now add country codes to image alt text
* New: Form agreement checkbox option
* New: Column element includes a max-height option
* New: Block kits selection issue resolved
* Fixed: Tabs toolbar no longer opens incorrect tabs
* Fixed: RichText slider options no longer trigger infinite re-render
* Fixed: Page compilation error resolved
* Fixed: Video element default link now works correctly
* Fixed: Global style font changes now apply correctly in preview
* Improved: Lazy loading added for preview.pro.min.css
* Improved: Builder upgraded to the latest Redux version
* Improved: State management migrated from Recoil to Valtio
* Improved: ESLint and related dependencies updated
* Improved: Testing Library React dependencies updated
* Improved: Editor now uses an internal scrollbar instead of react-custom-scrollbars
= 2.7.19 - 2025-12-03 =
* Fixed: Richtext does not works correctly for emails
= 2.7.18 - 2025-12-01 =
* Improved: Input Text - retains its value when the toolbar is closed instantly
* Improved: Removed old JavaScript code for cleaner performance
* Fixed: Rich-Text - added static className support for background image blots
* Fixed: Rich-Text - dynamic content for third-party integrations now replaces correctly
* Fixed: Rich-Text - image mask restored for third-party instances
* Fixed: Rich-Text - preview now shows latest edits for third-party use
* Fixed: Rich-Text - links now work properly in third-party preview
* Fixed: Media Library - select menu now opens correctly
* Fixed: Addable - improved third-party compatibility and behavior
* Fixed: Icons - outline icons display correctly in the editor
* Fixed: Box Shadow - blur 0 now applies properly
* Fixed: Tabs - toolbar now opens the correct tab
= 2.7.17 - 2025-11-10 =
* New: Navigator component
* Fixed: Flatten families object before getCopiedValue processing
* Fixed: Empty button link appends '#' at the end
* Fixed: Icon prompt not loading icons on first render
* Improved: Audio added possibility to hide custom audio via config
* Improved: Placeholder loading performance
* Improved: Builder code refactoring — moved all from redux/selectors.js to new selector-new.ts and renamed selector-new
= 2.7.16 - 2025-10-21 =
* New: Counter - added “fix value” option for better number control
* New: Context Menu - improved copy/paste styling on Firefox
* New: Section - introduced CSS variable for full-height sections
* New: Typography - improved custom-style handling
* Fixed: Story - widget sizes preserved when pasting styles
* Fixed: Story - custom attributes now work correctly
* Fixed: Typography - toolbar now applies default font style properly
* Fixed: Row - “show on device” visibility works correctly
* Fixed: Link - absolute URLs keep their original link format
= 2.7.15 - 2025-09-30 =
* New: Rich-Text - added tags support for dynamic content
* New: Rich-Text - toolbar now toggles automatically while typing
* New: Forms - dynamic IDs for checkboxes and radio fields
* New: Third-Party - new toolbar placement option
* Fixed: Colors - updated Brizy UI version to resolve styling issues
= 2.7.14 - 2025-09-04 =
* New: Links - phone numbers and email addresses now automatically prepend tel: and mailto:
* New: Image - option to enable/disable lazy loading
* New: Rich-Text - toolbar now opens directly next to the selected text
* New: Webhooks - display name shown instead of full URL
* New: Posts - placeholder added when no content is available
* New: Conditions - improved selection for global block conditions
* Fixed: Global Blocks - updating a global block no longer causes infinite loading
* Fixed: Context Menu - no empty context menu appears for the first container inside a popup
* Fixed: Section - elements are correctly added inside Section Slider (fade mode)
= 2.7.13 - 2025-09-01 =
* Fixed: Security enhancements
= 2.7.12 - 2025-08-26 =
* New: Rich-Text - tooltip option added
* New: Update Button - hover color now white for better visibility
* New: Section - hotkeys for faster block actions
* Fixed: Jenkins - workspace now cleaned after each build, tags publish correctly
* Fixed: Links - smooth scroll behavior
* Fixed: Links - “rel” attribute now includes 'noreferrer' for blank pages
* Fixed: Links - block linking now works correctly
* Fixed: reCAPTCHA - z-index styles corrected
* Fixed: Controls (Select2) - popper now renders correctly
* Fixed: Form - submit button no longer “jumps” on hover
* Fixed: Form - select field in Mega Menu works correctly in editor
* Fixed: Button - alignment Fixed when using hover animations
* Fixed: Editor - padding removed between content and scrollbar in tablet/mobile view
* Fixed: Visual - file upload from 'ElementModel' always returns a model
* Fixed: Context Menu - now closes properly in Firefox
* Fixed: Screenshots - block screenshot ID updates when backend provides New ID
* Fixed: Publish Button - no more infinite loading when saving a draft
* Fixed: Global Blocks - link redirects to global blocks work correctly
* Fixed: Background - overlay now works on responsive devices even if opacity is 0 on desktop
* Fixed: Animated Headline - text no longer wraps into multiple rows incorrectly
* Fixed: Section - global blocks are no longer duplicated
* Fixed: Rich-Text - tooltip retrieves dynamic CSS correctly in preview
* Fixed: Compiler - missing sections in preview now render properly
* Improved: Image element converted to TypeScript for better stability and maintainability
= 2.7.11 - 2025-08-18 =
* Fixed: Readme file typos
= 2.7.10 - 2025-08-18 =
* Fixed: The links to the global block do not always work.
= 2.7.9 - 2025-08-18 =
* Fixed: The links to the global block do not always work.
= 2.7.8 - 2025-08-14 =
* Fixed: global block name in anchor link is not showed
* Fixed: CORS error for custom icons
= 2.7.7 - 2025-08-11 =
* Fixed: Compiler editor version
= 2.7.6 - 2025-08-11 =
* Fixed: Compiler editor version
= 2.7.5 - 2025-08-11 =
* New: Tooltip option for Icon, Button and Image elements
* New: Role and ARIA-hidden attributes for Icon element (accessibility improvement)
* New: Focus indicators for buttons, links and form items (accessibility improvement)
* New: Captions support for video and audio elements
* New: Title display for uploaded audio tracks
* New: Stop-animation option for Carousel and Section Slider
* New: Multi-step form - set custom width for navigation buttons
* New: Form validation errors for empty fields and invalid emails
* New: Added a third-party container for integrations
* New: Context menu now closes reliably after use
* New: White Label - “Brizy” name is hidden in exported block/layout JSON files
* Improved: Video element height handling
* Improved: Image element - better width/height calculation
* Improved: Image element - smoother re-render process
* Improved: Pass media configuration to browser compiler
* Improved: Added utility function to get image source for third-party components
* Improved: Select dropdown positioning
* Improved: Widget positioning in accessibility mode
* Improved: Rich-text - consistent “em” font size in dynamic content
* Improved: Split some visual editor components into editor/preview files for faster loading, plus cleaned up imports
* Fixed: CSS - styleBgColorHex now works correctly with palette colours
* Fixed: Form - fields now receive focus correctly
* Fixed: Internal Link - search now finds items correctly
* Fixed: Sections - smoother scrolling between sections in Blocksy theme
* Fixed: Row - reverse columns option works as expected
* Fixed: Image links now update correctly when moving a staging site to production
= 2.7.4 - 2025-07-23 =
* Fixed: reverse column
* Fixed: popup trigger once condition
= 2.7.3 - 2025-07-18 =
* Fixed: html sanitize on compile page
= 2.7.2 - 2025-07-17 =
* Fixed: Removed redundant cache invalidation
= 2.7.1 - 2025-07-16 =
* Fixed: Missing global blocks
= 2.7.0 - 2025-07-15 =
* New: Animated Headline element for attention‑grabbing text
* New: AlphaModal component replaces deprecated defaults
* New: Column element gains full RTL support
* New: Icon element now has an ARIA‑LABEL field for better accessibility
* New: Fonts upload is handled by the faster API client
* New: Context menu closes reliably after use
* New: First‑Block Adder height refined for cleaner layouts
* Improved: Compiled Sections - pages are rendered server‑side for faster load times
* Improved: Rich‑Text toolbar - bold, italic and underline work consistently
* Improved: Visual settings can now be adjusted via add/apply filters
* Improved: Sidebar alignment and other UI optimisations
* Improved: Colour palette and UI contrast tweaks
* Improved: User‑role handling inside the builder
* Improved: Global‑typography CSS output is leaner
* Improved: Transition CSS de‑duplicated to avoid repeats
* Improved: CSS generator works faster on large pages
* Improved: Smaller compiler bundle and section‑level runtime compilation
* Improved: Deep context‑menu trees load more quickly
* Fixed: Conditional Display - no more slow‑downs on sites with a large user base when the rule checks the logged‑in user
* Fixed: Button - hover fill effect not working
* Fixed: Button - fill effect not working for hover (duplicate issue resolved)
* Fixed: Button - box resizer wrong position in Story mode
* Fixed: Builder - chartType selector is stable
* Fixed: Builder - global theme CSS variables load correctly
* Fixed: Left Sidebar - collapsed‑category state is saved
* Fixed: Left Sidebar (RTL) - layout displays correctly
* Fixed: Rich‑Text - @ address sign renders correctly
* Fixed: Rich‑Text - opacity values below 1 apply
* Fixed: Section - duplicate display‑style values removed
* Fixed: Section - background video plays only on active slide
* Fixed: RTL - dropdowns and selects display properly
* Fixed: RTL - prompt dialogs align correctly
* Fixed: RTL - menu dropdowns support RTL
* Fixed: RTL - overall UI layout no longer breaks
* Fixed: Colours - UI palette improvements
* Fixed: Right Sidebar - separator now inherits theme colour
* Fixed: Editor - no more crashes on archive pages
* Fixed: Form - select field uses correct font size with Blocksy theme
* Fixed: Menu - free menu works in editor mode
* Fixed: Build Environment - added develop branch for WP Free
* Fixed: Toolbar - section‑header toolbar no longer hidden behind menus
* Fixed: Animated Headline - loop‑off option previews correctly
* Fixed: Internal Link - alignment options now respected
* Fixed: Visual - config via filter applies correctly
* Fixed: Roles - user permission fixes applied
* Fixed: Colours - additional UI colour tweaks
* Fixed: Visual - sidebar alignment & minor optimisations
* Fixed: Fonts - upload process via API client stable
* Fixed: First‑Block Adder - height calculation fixed
* Fixed: Context Menu - closes properly on exit
= 2.6.22 - 2025-06-10 =
* Improved: Enhanced performance for image resizing.
= 2.6.21 - 2025-05-28 =
* Fixed: Check if the current user can "list_users" on Posts component
= 2.6.20 - 2025-05-28 =
* Fixed: Removed all user sensitive info from user list endpoint
= 2.6.19 - 2025-05-26 =
* Fixed: Image UID validation
= 2.6.18 - 2025-05-13 =
* New: Add a hover image to the Image element
* New: Image titles now show up in the preview
* Improved: Leaner HTML for buttons, icons, rows, columns and sections
* Improved: Better right-to-left (RTL) editing
* Fixed: Dynamic and hover background images display correctly
* Fixed: Button hover colors save as expected
* Fixed: Progress bars without a percentage preview properly
* Fixed: Button text no longer gets cut off on small screens
* Fixed: Style copy-and-paste works on tablet and mobile
* Fixed: Rich-text option list works in Story mode
* Fixed: No more crashes when adding a new font
* Fixed: Variable-font weight tab shows correctly
* Fixed: Context menu appears on responsive views
* Fixed: Parallax effect no longer conflicts with other plugins
= 2.6.17 - 2025-04-23 =
* Fixed: Force page recompilation
= 2.6.16 - 2025-04-22 =
* Fixed: Internal page links
= 2.6.15 - 2025-04-17 =
* Fixed: Not all weights in Fonts tab for Adobe Fonts
= 2.6.14 - 2025-03-20 =
* Fixed: Squirrly SEO plugin compatibility
= 2.6.13 - 2025-03-13 =
* Fixed: Elements not displayed in preview
* Fixed: User with Editor role cannot edit page
= 2.6.12 - 2025-02-25 =
* Improved: 3rd party API
* Improved: Compiler Bundle Size
* Updated: Removed icons from blocks
* Fixed: Bug with Menu failing to open when clicked multiple times
* Fixed: Parallax animation in preview with open popup
* Fixed: Scroll on parallax in Safari
* Fixed: Mixed content error when Brizy is installed on subfolder
* Fixed: Deleting images on Media Gallery
= 2.6.11 - 2025-02-18 =
* Fixed: Gallery with layout justify
= 2.6.10 - 2025-02-11
* Fixed: SVG attachment creation
* Fixed: added a security fix on API endpoint
= 2.6.9 - 2025-01-30 =
* Fixed: Image upload
* Fixed: Importing starter template erases code snippet
* Fixed: Global block code gets added to SEO description
* Fixed: Images are not responsive
* Fixed: Blurry Image
= 2.6.8 - 2025-01-16 =
* Fixed: Bug with the html escape in preview
= 2.6.7 - 2025-01-15 =
* Fixed: Increased the minimum compiler version
= 2.6.6 - 2025-01-15 =
* Fixed: Image side load
= 2.6.4 - 2024-12-17 =
* Fixed: Incorrect style of Tabs element in table and mobile
* Fixed: Icon Box is not displayed correctly in preview
= 2.6.3 - 2024-11-19 =
* Fixed: SQL query using wrong prefixes
= 2.6.2 - 2024-11-18 =
* Fixed: Simplify the check if compilation is required
= 2.6.1 - 2024-11-15 =
* Fixed: Invalidate cached image URLs after site migration.
= 2.6.0 - 2024-11-12 =
* New: Added video "URL" option for the Playlist element
* New: Added "Blending Mode" styling option for the Image element
* New: Ability to add multi-line text in one Buttons
* New: Add mask on Video
* New:: Added decimal sizes for VW, EM, and REM font size option
* Fixed: Publish button not available on private pages
* Fixed: When scrolling to a block, consider the height of the menu
* Fixed: Global block renaming
* Fixed: Paralax effect
* Fixed: Download saved blocks and layouts on Firefox
* Fixed: Some WP templates broke the view in Editor
* Fixed: Translate Press switcher is not displayed correctly
* Fixed: Images loading in editor
* Fixed: Warnings displayed on Brizy pages
* Improved: Color Hex code input
* Updated: Brizy-ui library
= 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