Gutenberg Blocks – Ultimate Addons for Gutenberg - Version 1.24.2

Version Description

WEDNESDAY, 4TH AUGUST 2021 = * Fix: Blockquote - Multiple blockquote post the same content after clicking on a tweet button. * Fix: Table of contents - Hyperlink was not working on Safari and Firefox browsers. * Fix: Styling was not applying on the preview page. * Fix: Conflict with Astra theme customizer.

Download this release

Release Info

Developer brainstormworg
Plugin Icon Gutenberg Blocks – Ultimate Addons for Gutenberg
Version 1.24.2
Comparing to
See all releases

Code changes from version 1.24.1 to 1.24.2

assets/js/table-of-contents.js CHANGED
@@ -189,6 +189,7 @@
189
  }
190
 
191
  UAGBTableOfContents._showHideScroll();
 
192
  },
193
  }
194
 
@@ -196,8 +197,4 @@
196
  UAGBTableOfContents.init();
197
  })
198
 
199
- $(window).on('load', function(){
200
- UAGBTableOfContents.hyperLinks();
201
- })
202
-
203
  } )( jQuery )
189
  }
190
 
191
  UAGBTableOfContents._showHideScroll();
192
+ UAGBTableOfContents.hyperLinks();
193
  },
194
  }
195
 
197
  UAGBTableOfContents.init();
198
  })
199
 
 
 
 
 
200
  } )( jQuery )
classes/class-uagb-block-js.php CHANGED
@@ -119,8 +119,7 @@ if ( ! class_exists( 'UAGB_Block_JS' ) ) {
119
  if ( blockquote__tweet.length > 0 ) {
120
 
121
  blockquote__tweet[0].addEventListener("click",function(){
122
- var content = selector[0].getElementsByClassName("uagb-blockquote__content")[0].innerText;
123
- var request_url = "https://twitter.com/share?url="+ encodeURIComponent("<?php echo esc_url( $url ); ?>")+"&text="+content+"&via="+("<?php echo esc_html( $via ); ?>");
124
  window.open( request_url );
125
  });
126
  }
119
  if ( blockquote__tweet.length > 0 ) {
120
 
121
  blockquote__tweet[0].addEventListener("click",function(){
122
+ var request_url = "https://twitter.com/share?url="+ encodeURIComponent("<?php echo esc_url( $url ); ?>")+"&text="+("<?php echo esc_html( $attr['descriptionText'] ); ?>")+"&via="+("<?php echo esc_html( $via ); ?>");
 
123
  window.open( request_url );
124
  });
125
  }
classes/class-uagb-config.php CHANGED
@@ -352,6 +352,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
352
  'quotePaddingType' => 'px',
353
  'quotePaddingTablet' => '',
354
  'quotePaddingMobile' => '',
 
355
  ),
356
  ),
357
  'uagb/call-to-action' => array(
352
  'quotePaddingType' => 'px',
353
  'quotePaddingTablet' => '',
354
  'quotePaddingMobile' => '',
355
+ 'descriptionText' => 'Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.',
356
  ),
357
  ),
358
  'uagb/call-to-action' => array(
classes/class-uagb-loader.php CHANGED
@@ -66,7 +66,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
66
  define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
67
  define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
68
  define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
69
- define( 'UAGB_VER', '1.24.1' );
70
  define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
71
  define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
72
  define( 'UAGB_SLUG', 'uag' );
66
  define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
67
  define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
68
  define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
69
+ define( 'UAGB_VER', '1.24.2' );
70
  define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
71
  define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
72
  define( 'UAGB_SLUG', 'uag' );
classes/class-uagb-post-assets.php CHANGED
@@ -141,6 +141,14 @@ class UAGB_Post_Assets {
141
  */
142
  protected $post_id;
143
 
 
 
 
 
 
 
 
 
144
  /**
145
  * Constructor
146
  *
@@ -150,13 +158,19 @@ class UAGB_Post_Assets {
150
 
151
  $this->post_id = intval( $post_id );
152
 
153
- $this->file_generation = UAGB_Helper::$file_generation;
154
 
155
- $this->is_allowed_assets_generation = $this->allow_assets_generation();
 
 
 
 
 
 
156
 
157
  if ( $this->is_allowed_assets_generation ) {
158
- $this_post = get_post( $this->post_id );
159
-
160
  $this->prepare_assets( $this_post );
161
  }
162
  }
@@ -297,6 +311,10 @@ class UAGB_Post_Assets {
297
  */
298
  public function update_page_assets() {
299
 
 
 
 
 
300
  $meta_array = array(
301
  'css' => wp_slash( $this->stylesheet ),
302
  'js' => $this->script,
@@ -1082,4 +1100,3 @@ class UAGB_Post_Assets {
1082
  return $css;
1083
  }
1084
  }
1085
-
141
  */
142
  protected $post_id;
143
 
144
+ /**
145
+ * Preview
146
+ *
147
+ * @since 1.24.2
148
+ * @var preview
149
+ */
150
+ public $preview = false;
151
+
152
  /**
153
  * Constructor
154
  *
158
 
159
  $this->post_id = intval( $post_id );
160
 
161
+ $this->preview = isset( $_GET['preview'] ); //phpcs:ignore WordPress.Security.NonceVerification.Recommended
162
 
163
+ if ( $this->preview ) {
164
+ $this->file_generation = 'disabled';
165
+ $this->is_allowed_assets_generation = true;
166
+ } else {
167
+ $this->file_generation = UAGB_Helper::$file_generation;
168
+ $this->is_allowed_assets_generation = $this->allow_assets_generation();
169
+ }
170
 
171
  if ( $this->is_allowed_assets_generation ) {
172
+ global $post;
173
+ $this_post = $this->preview ? $post : get_post( $this->post_id );
174
  $this->prepare_assets( $this_post );
175
  }
176
  }
311
  */
312
  public function update_page_assets() {
313
 
314
+ if ( $this->preview ) {
315
+ return;
316
+ }
317
+
318
  $meta_array = array(
319
  'css' => wp_slash( $this->stylesheet ),
320
  'js' => $this->script,
1100
  return $css;
1101
  }
1102
  }
 
languages/ultimate-addons-for-gutenberg.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Ultimate Addons for Gutenberg plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ultimate Addons for Gutenberg 1.24.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-07-26T12:22:40+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: ultimate-addons-for-gutenberg\n"
@@ -310,9 +310,9 @@ msgstr ""
310
  #: blocks-config/post-timeline/class-uagb-post-timeline.php:447
311
  #: blocks-config/post/class-uagb-post.php:446
312
  #: blocks-config/post/class-uagb-post.php:1491
313
- #: classes/class-uagb-config.php:1468
314
- #: classes/class-uagb-config.php:1564
315
- #: classes/class-uagb-config.php:1678
316
  msgid "Read More"
317
  msgstr ""
318
 
@@ -326,19 +326,19 @@ msgstr ""
326
 
327
  #: blocks-config/table-of-content/class-uagb-table-of-content.php:537
328
  #: blocks-config/table-of-content/class-uagb-table-of-content.php:541
329
- #: classes/class-uagb-config.php:2284
330
  #: dist/blocks.js:9
331
  msgid "Table Of Contents"
332
  msgstr ""
333
 
334
  #: blocks-config/table-of-content/class-uagb-table-of-content.php:805
335
- #: classes/class-uagb-config.php:2285
336
  #: dist/blocks.js:9
337
  msgid "Add a header to begin generating the table of contents"
338
  msgstr ""
339
 
340
  #: blocks-config/taxonomy-list/class-uagb-taxonomy-list.php:113
341
- #: classes/class-uagb-config.php:2688
342
  msgid "Taxonomy Not Available."
343
  msgstr ""
344
 
@@ -444,482 +444,482 @@ msgstr ""
444
  msgid "This block allows you to display your Blockquote."
445
  msgstr ""
446
 
447
- #: classes/class-uagb-config.php:359
448
  #: dist/blocks.js:1
449
  msgid "Call To Action"
450
  msgstr ""
451
 
452
- #: classes/class-uagb-config.php:360
453
  msgid "This block allows you to place an CTA along with a heading and description within a single block."
454
  msgstr ""
455
 
456
- #: classes/class-uagb-config.php:432
457
  msgid "Contact Form 7 Styler"
458
  msgstr ""
459
 
460
- #: classes/class-uagb-config.php:433
461
  msgid "This block allows you to add and style your Contact Form 7 forms right in the Gutenberg editor."
462
  msgstr ""
463
 
464
- #: classes/class-uagb-config.php:569
465
  #: dist/blocks.js:1
466
  msgid "Content Timeline"
467
  msgstr ""
468
 
469
- #: classes/class-uagb-config.php:570
470
- #: classes/class-uagb-config.php:643
471
  msgid "The Timeline block lets you create beautiful timelines on your website."
472
  msgstr ""
473
 
474
- #: classes/class-uagb-config.php:642
475
  msgid "Content Timeline Child"
476
  msgstr ""
477
 
478
- #: classes/class-uagb-config.php:668
479
  msgid "FAQ - Schema"
480
  msgstr ""
481
 
482
- #: classes/class-uagb-config.php:669
483
  msgid "This block helps you add FAQ or Accordion with automatically adding FAQ Schema to your page."
484
  msgstr ""
485
 
486
- #: classes/class-uagb-config.php:763
487
  msgid "FAQ - Schema Child"
488
  msgstr ""
489
 
490
- #: classes/class-uagb-config.php:764
491
  msgid "This block helps you add single FAQ."
492
  msgstr ""
493
 
494
- #: classes/class-uagb-config.php:779
495
  msgid "Gravity Form Styler"
496
  msgstr ""
497
 
498
- #: classes/class-uagb-config.php:780
499
  msgid "This block allows you to add and style your Gravity Forms right in the Gutenberg editor."
500
  msgstr ""
501
 
502
- #: classes/class-uagb-config.php:933
503
  msgid "Google Map"
504
  msgstr ""
505
 
506
- #: classes/class-uagb-config.php:934
507
  msgid "This block allows you to place a Google Map Location."
508
  msgstr ""
509
 
510
- #: classes/class-uagb-config.php:945
511
  msgid "How-to Schema"
512
  msgstr ""
513
 
514
- #: classes/class-uagb-config.php:946
515
  msgid "This block allows you to design attractive How-to pages or articles with automatically adding How-to Schema to your page."
516
  msgstr ""
517
 
518
- #: classes/class-uagb-config.php:1019
519
  msgid "Icon List"
520
  msgstr ""
521
 
522
- #: classes/class-uagb-config.php:1020
523
- #: classes/class-uagb-config.php:1074
524
- #: classes/class-uagb-config.php:2186
525
  msgid "This block allows you to place an image or icon in a list format."
526
  msgstr ""
527
 
528
- #: classes/class-uagb-config.php:1030
529
  msgid "Label #1"
530
  msgstr ""
531
 
532
- #: classes/class-uagb-config.php:1073
533
  #: dist/blocks.js:1
534
  #: dist/blocks.js:9
535
  msgid "Icon"
536
  msgstr ""
537
 
538
- #: classes/class-uagb-config.php:1096
539
  msgid "Info Box"
540
  msgstr ""
541
 
542
- #: classes/class-uagb-config.php:1097
543
  msgid "This block allows you to place an image or icon along with a heading and description within a single block."
544
  msgstr ""
545
 
546
- #: classes/class-uagb-config.php:1194
547
  msgid "Inline Notice"
548
  msgstr ""
549
 
550
- #: classes/class-uagb-config.php:1195
551
  msgid "This block helps you add an inline notice."
552
  msgstr ""
553
 
554
- #: classes/class-uagb-config.php:1248
555
  msgid "Marketing Button"
556
  msgstr ""
557
 
558
- #: classes/class-uagb-config.php:1249
559
  msgid "This block allows you to place a Marketing Button with small description."
560
  msgstr ""
561
 
562
- #: classes/class-uagb-config.php:1324
563
  msgid "Multi Buttons"
564
  msgstr ""
565
 
566
- #: classes/class-uagb-config.php:1325
567
  msgid "This block allows you to add multiple buttons with a single block."
568
  msgstr ""
569
 
570
- #: classes/class-uagb-config.php:1345
571
  #: dist/blocks.js:1
572
  #: dist/blocks.js:9
573
  msgid "Button"
574
  msgstr ""
575
 
576
- #: classes/class-uagb-config.php:1346
577
  msgid "This block allows you to style button."
578
  msgstr ""
579
 
580
- #: classes/class-uagb-config.php:1383
581
  msgid "Post Carousel"
582
  msgstr ""
583
 
584
- #: classes/class-uagb-config.php:1384
585
  msgid "This block fetches the blog posts you may have on your website and displays them in a carousel layout."
586
  msgstr ""
587
 
588
- #: classes/class-uagb-config.php:1486
589
  msgid "Post Grid"
590
  msgstr ""
591
 
592
- #: classes/class-uagb-config.php:1487
593
  msgid "This block fetches the blog posts you may have on your website and displays them in a grid layout."
594
  msgstr ""
595
 
596
- #: classes/class-uagb-config.php:1598
597
  msgid "Post Masonry"
598
  msgstr ""
599
 
600
- #: classes/class-uagb-config.php:1599
601
  msgid "This block fetches the blog posts you may have on your website and displays them in a masonry layout."
602
  msgstr ""
603
 
604
- #: classes/class-uagb-config.php:1719
605
  #: dist/blocks.js:9
606
  msgid "Masonry Gallery"
607
  msgstr ""
608
 
609
- #: classes/class-uagb-config.php:1720
610
  msgid "This block fetches the Core Gallery and displays them in a masonry layout."
611
  msgstr ""
612
 
613
- #: classes/class-uagb-config.php:1728
614
  msgid "Post Title"
615
  msgstr ""
616
 
617
- #: classes/class-uagb-config.php:1729
618
  msgid "This block fetches the blog title."
619
  msgstr ""
620
 
621
- #: classes/class-uagb-config.php:1735
622
  msgid "Post Button"
623
  msgstr ""
624
 
625
- #: classes/class-uagb-config.php:1736
626
  msgid "This block display's a call to action button which links to the blogs page."
627
  msgstr ""
628
 
629
- #: classes/class-uagb-config.php:1742
630
  msgid "Post Excerpt"
631
  msgstr ""
632
 
633
- #: classes/class-uagb-config.php:1743
634
  msgid "This block fetches short description about a post."
635
  msgstr ""
636
 
637
- #: classes/class-uagb-config.php:1749
638
  msgid "Post Meta"
639
  msgstr ""
640
 
641
- #: classes/class-uagb-config.php:1750
642
  msgid "This block fetches post comments, author, publish date and categories data."
643
  msgstr ""
644
 
645
- #: classes/class-uagb-config.php:1756
646
  msgid "Post Image"
647
  msgstr ""
648
 
649
- #: classes/class-uagb-config.php:1757
650
  msgid "This block fetches posts feature image."
651
  msgstr ""
652
 
653
- #: classes/class-uagb-config.php:1763
654
  msgid "Post Timeline"
655
  msgstr ""
656
 
657
- #: classes/class-uagb-config.php:1764
658
  msgid "The Timeline block lets you create beautiful timelines of Posts on your website."
659
  msgstr ""
660
 
661
- #: classes/class-uagb-config.php:1865
662
  msgid "Price List"
663
  msgstr ""
664
 
665
- #: classes/class-uagb-config.php:1866
666
- #: classes/class-uagb-config.php:2035
667
  msgid "This block allows you to add attractive Price List."
668
  msgstr ""
669
 
670
- #: classes/class-uagb-config.php:1939
671
  msgid "Review Schema"
672
  msgstr ""
673
 
674
- #: classes/class-uagb-config.php:1940
675
  msgid "This block helps you to add a review for various items with schema support."
676
  msgstr ""
677
 
678
- #: classes/class-uagb-config.php:2034
679
  msgid "Price List-Child"
680
  msgstr ""
681
 
682
- #: classes/class-uagb-config.php:2065
683
  msgid "Section"
684
  msgstr ""
685
 
686
- #: classes/class-uagb-config.php:2066
687
  msgid "This block is an outer wrap section that allows you to add other blocks within it."
688
  msgstr ""
689
 
690
- #: classes/class-uagb-config.php:2148
691
  msgid "Social Share"
692
  msgstr ""
693
 
694
- #: classes/class-uagb-config.php:2149
695
  msgid "This block allows you to let users share your content across various social networking sites."
696
  msgstr ""
697
 
698
- #: classes/class-uagb-config.php:2185
699
  msgid "Social Share Child"
700
  msgstr ""
701
 
702
- #: classes/class-uagb-config.php:2203
703
  msgid "Tabs"
704
  msgstr ""
705
 
706
- #: classes/class-uagb-config.php:2204
707
- #: classes/class-uagb-config.php:2262
708
  msgid "This block allows you to display your content in tabs layout."
709
  msgstr ""
710
 
711
- #: classes/class-uagb-config.php:2261
712
  msgid "Tabs child"
713
  msgstr ""
714
 
715
- #: classes/class-uagb-config.php:2276
716
  msgid "Table of Contents"
717
  msgstr ""
718
 
719
- #: classes/class-uagb-config.php:2277
720
  msgid "This block allows you to place a Table of Contents for Pages/Posts."
721
  msgstr ""
722
 
723
- #: classes/class-uagb-config.php:2378
724
  msgid "Team"
725
  msgstr ""
726
 
727
- #: classes/class-uagb-config.php:2379
728
  msgid "This block allows you to display your team. Add their picture, name, what they do and links to their social profiles."
729
  msgstr ""
730
 
731
- #: classes/class-uagb-config.php:2451
732
  #: dist/blocks.js:1
733
  msgid "Testimonial"
734
  msgstr ""
735
 
736
- #: classes/class-uagb-config.php:2452
737
  msgid "This block helps your display some amazing client feedback within your website."
738
  msgstr ""
739
 
740
- #: classes/class-uagb-config.php:2537
741
  msgid "WP - Search"
742
  msgstr ""
743
 
744
- #: classes/class-uagb-config.php:2538
745
  msgid "This block helps you add a Search field."
746
  msgstr ""
747
 
748
- #: classes/class-uagb-config.php:2606
749
  msgid "Taxonomy List"
750
  msgstr ""
751
 
752
- #: classes/class-uagb-config.php:2607
753
  msgid "This block helps you to display content categorization for various post types"
754
  msgstr ""
755
 
756
- #: classes/class-uagb-config.php:2697
757
  msgid "Forms"
758
  msgstr ""
759
 
760
- #: classes/class-uagb-config.php:2698
761
  msgid "This block allow you to create interactive contact form, newsletter, suggestion, etc easily."
762
  msgstr ""
763
 
764
- #: classes/class-uagb-config.php:2703
765
  #: dist/blocks.js:9
766
  msgid "Submit"
767
  msgstr ""
768
 
769
- #: classes/class-uagb-config.php:2704
770
  #: dist/blocks.js:9
771
  msgid "UAG Form"
772
  msgstr ""
773
 
774
- #: classes/class-uagb-config.php:2707
775
  msgid "The form has been submitted Successfully!"
776
  msgstr ""
777
 
778
- #: classes/class-uagb-config.php:2730
779
  #: dist/blocks.js:9
780
  msgid "Form Submission"
781
  msgstr ""
782
 
783
- #: classes/class-uagb-config.php:2786
784
  #: dist/blocks.js:9
785
  msgid "There has been some error while submitting the form. Please verify all form fields again."
786
  msgstr ""
787
 
788
- #: classes/class-uagb-config.php:2799
789
  #: dist/blocks.js:9
790
  msgid "Please fill up the above captcha."
791
  msgstr ""
792
 
793
- #: classes/class-uagb-config.php:2804
794
  #: dist/blocks.js:1
795
  #: dist/blocks.js:9
796
  msgid "Name"
797
  msgstr ""
798
 
799
- #: classes/class-uagb-config.php:2805
800
  msgid "This block helps to add Name field."
801
  msgstr ""
802
 
803
- #: classes/class-uagb-config.php:2812
804
  #: dist/blocks.js:1
805
  #: dist/blocks.js:9
806
  msgid "Email"
807
  msgstr ""
808
 
809
- #: classes/class-uagb-config.php:2813
810
  msgid "This block helps to add Email field."
811
  msgstr ""
812
 
813
- #: classes/class-uagb-config.php:2820
814
  msgid "Hidden"
815
  msgstr ""
816
 
817
- #: classes/class-uagb-config.php:2821
818
  msgid "This block helps to add Hidden field."
819
  msgstr ""
820
 
821
- #: classes/class-uagb-config.php:2826
822
  #: dist/blocks.js:9
823
  msgid "Hidden Field Name"
824
  msgstr ""
825
 
826
- #: classes/class-uagb-config.php:2833
827
  #: dist/blocks.js:9
828
  msgid "Phone"
829
  msgstr ""
830
 
831
- #: classes/class-uagb-config.php:2834
832
  msgid "This block helps to add Phone field."
833
  msgstr ""
834
 
835
- #: classes/class-uagb-config.php:2841
836
  msgid "Textarea"
837
  msgstr ""
838
 
839
- #: classes/class-uagb-config.php:2842
840
  msgid "This block helps to add Textarea field."
841
  msgstr ""
842
 
843
- #: classes/class-uagb-config.php:2847
844
  #: dist/blocks.js:9
845
  msgid "Message"
846
  msgstr ""
847
 
848
- #: classes/class-uagb-config.php:2853
849
  msgid "Checkbox"
850
  msgstr ""
851
 
852
- #: classes/class-uagb-config.php:2854
853
  msgid "This block helps to add Checkbox field."
854
  msgstr ""
855
 
856
- #: classes/class-uagb-config.php:2861
857
  msgid "Radio"
858
  msgstr ""
859
 
860
- #: classes/class-uagb-config.php:2862
861
  msgid "This block helps to add Radio field."
862
  msgstr ""
863
 
864
- #: classes/class-uagb-config.php:2869
865
- #: classes/class-uagb-config.php:2875
866
  #: dist/blocks.js:1
867
  #: dist/blocks.js:9
868
  msgid "URL"
869
  msgstr ""
870
 
871
- #: classes/class-uagb-config.php:2870
872
  msgid "This block helps to add URL field."
873
  msgstr ""
874
 
875
- #: classes/class-uagb-config.php:2880
876
  msgid "Select"
877
  msgstr ""
878
 
879
- #: classes/class-uagb-config.php:2881
880
  msgid "This block helps to add Select field."
881
  msgstr ""
882
 
883
- #: classes/class-uagb-config.php:2888
884
  msgid "Toggle"
885
  msgstr ""
886
 
887
- #: classes/class-uagb-config.php:2889
888
  msgid "This block helps to add Toggle field."
889
  msgstr ""
890
 
891
- #: classes/class-uagb-config.php:2896
892
  msgid "Datepicker"
893
  msgstr ""
894
 
895
- #: classes/class-uagb-config.php:2897
896
  msgid "This block helps to add Datepicker field."
897
  msgstr ""
898
 
899
- #: classes/class-uagb-config.php:2904
900
  msgid "Accept"
901
  msgstr ""
902
 
903
- #: classes/class-uagb-config.php:2905
904
  msgid "This block helps to add Accept field."
905
  msgstr ""
906
 
907
- #: classes/class-uagb-config.php:2911
908
  #: dist/blocks.js:9
909
  msgid "Lottie"
910
  msgstr ""
911
 
912
- #: classes/class-uagb-config.php:2912
913
  msgid "This block helps you add Lottie animation and customize it as required."
914
  msgstr ""
915
 
916
- #: classes/class-uagb-config.php:2935
917
  #: dist/blocks-placeholder.js:11
918
  #: dist/blocks.js:9
919
  msgid "Star Rating"
920
  msgstr ""
921
 
922
- #: classes/class-uagb-config.php:2936
923
  msgid "This block helps you add Star Rating and customize it as required."
924
  msgstr ""
925
 
@@ -977,7 +977,7 @@ msgstr ""
977
  msgid "WordPress Nonce not validated."
978
  msgstr ""
979
 
980
- #: lib/gutenberg-templates/classes/class-ast-block-templates.php:393
981
  msgid "Starter Templates"
982
  msgstr ""
983
 
2
  # This file is distributed under the same license as the Ultimate Addons for Gutenberg plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ultimate Addons for Gutenberg 1.24.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-08-03T11:46:45+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: ultimate-addons-for-gutenberg\n"
310
  #: blocks-config/post-timeline/class-uagb-post-timeline.php:447
311
  #: blocks-config/post/class-uagb-post.php:446
312
  #: blocks-config/post/class-uagb-post.php:1491
313
+ #: classes/class-uagb-config.php:1469
314
+ #: classes/class-uagb-config.php:1565
315
+ #: classes/class-uagb-config.php:1679
316
  msgid "Read More"
317
  msgstr ""
318
 
326
 
327
  #: blocks-config/table-of-content/class-uagb-table-of-content.php:537
328
  #: blocks-config/table-of-content/class-uagb-table-of-content.php:541
329
+ #: classes/class-uagb-config.php:2285
330
  #: dist/blocks.js:9
331
  msgid "Table Of Contents"
332
  msgstr ""
333
 
334
  #: blocks-config/table-of-content/class-uagb-table-of-content.php:805
335
+ #: classes/class-uagb-config.php:2286
336
  #: dist/blocks.js:9
337
  msgid "Add a header to begin generating the table of contents"
338
  msgstr ""
339
 
340
  #: blocks-config/taxonomy-list/class-uagb-taxonomy-list.php:113
341
+ #: classes/class-uagb-config.php:2689
342
  msgid "Taxonomy Not Available."
343
  msgstr ""
344
 
444
  msgid "This block allows you to display your Blockquote."
445
  msgstr ""
446
 
447
+ #: classes/class-uagb-config.php:360
448
  #: dist/blocks.js:1
449
  msgid "Call To Action"
450
  msgstr ""
451
 
452
+ #: classes/class-uagb-config.php:361
453
  msgid "This block allows you to place an CTA along with a heading and description within a single block."
454
  msgstr ""
455
 
456
+ #: classes/class-uagb-config.php:433
457
  msgid "Contact Form 7 Styler"
458
  msgstr ""
459
 
460
+ #: classes/class-uagb-config.php:434
461
  msgid "This block allows you to add and style your Contact Form 7 forms right in the Gutenberg editor."
462
  msgstr ""
463
 
464
+ #: classes/class-uagb-config.php:570
465
  #: dist/blocks.js:1
466
  msgid "Content Timeline"
467
  msgstr ""
468
 
469
+ #: classes/class-uagb-config.php:571
470
+ #: classes/class-uagb-config.php:644
471
  msgid "The Timeline block lets you create beautiful timelines on your website."
472
  msgstr ""
473
 
474
+ #: classes/class-uagb-config.php:643
475
  msgid "Content Timeline Child"
476
  msgstr ""
477
 
478
+ #: classes/class-uagb-config.php:669
479
  msgid "FAQ - Schema"
480
  msgstr ""
481
 
482
+ #: classes/class-uagb-config.php:670
483
  msgid "This block helps you add FAQ or Accordion with automatically adding FAQ Schema to your page."
484
  msgstr ""
485
 
486
+ #: classes/class-uagb-config.php:764
487
  msgid "FAQ - Schema Child"
488
  msgstr ""
489
 
490
+ #: classes/class-uagb-config.php:765
491
  msgid "This block helps you add single FAQ."
492
  msgstr ""
493
 
494
+ #: classes/class-uagb-config.php:780
495
  msgid "Gravity Form Styler"
496
  msgstr ""
497
 
498
+ #: classes/class-uagb-config.php:781
499
  msgid "This block allows you to add and style your Gravity Forms right in the Gutenberg editor."
500
  msgstr ""
501
 
502
+ #: classes/class-uagb-config.php:934
503
  msgid "Google Map"
504
  msgstr ""
505
 
506
+ #: classes/class-uagb-config.php:935
507
  msgid "This block allows you to place a Google Map Location."
508
  msgstr ""
509
 
510
+ #: classes/class-uagb-config.php:946
511
  msgid "How-to Schema"
512
  msgstr ""
513
 
514
+ #: classes/class-uagb-config.php:947
515
  msgid "This block allows you to design attractive How-to pages or articles with automatically adding How-to Schema to your page."
516
  msgstr ""
517
 
518
+ #: classes/class-uagb-config.php:1020
519
  msgid "Icon List"
520
  msgstr ""
521
 
522
+ #: classes/class-uagb-config.php:1021
523
+ #: classes/class-uagb-config.php:1075
524
+ #: classes/class-uagb-config.php:2187
525
  msgid "This block allows you to place an image or icon in a list format."
526
  msgstr ""
527
 
528
+ #: classes/class-uagb-config.php:1031
529
  msgid "Label #1"
530
  msgstr ""
531
 
532
+ #: classes/class-uagb-config.php:1074
533
  #: dist/blocks.js:1
534
  #: dist/blocks.js:9
535
  msgid "Icon"
536
  msgstr ""
537
 
538
+ #: classes/class-uagb-config.php:1097
539
  msgid "Info Box"
540
  msgstr ""
541
 
542
+ #: classes/class-uagb-config.php:1098
543
  msgid "This block allows you to place an image or icon along with a heading and description within a single block."
544
  msgstr ""
545
 
546
+ #: classes/class-uagb-config.php:1195
547
  msgid "Inline Notice"
548
  msgstr ""
549
 
550
+ #: classes/class-uagb-config.php:1196
551
  msgid "This block helps you add an inline notice."
552
  msgstr ""
553
 
554
+ #: classes/class-uagb-config.php:1249
555
  msgid "Marketing Button"
556
  msgstr ""
557
 
558
+ #: classes/class-uagb-config.php:1250
559
  msgid "This block allows you to place a Marketing Button with small description."
560
  msgstr ""
561
 
562
+ #: classes/class-uagb-config.php:1325
563
  msgid "Multi Buttons"
564
  msgstr ""
565
 
566
+ #: classes/class-uagb-config.php:1326
567
  msgid "This block allows you to add multiple buttons with a single block."
568
  msgstr ""
569
 
570
+ #: classes/class-uagb-config.php:1346
571
  #: dist/blocks.js:1
572
  #: dist/blocks.js:9
573
  msgid "Button"
574
  msgstr ""
575
 
576
+ #: classes/class-uagb-config.php:1347
577
  msgid "This block allows you to style button."
578
  msgstr ""
579
 
580
+ #: classes/class-uagb-config.php:1384
581
  msgid "Post Carousel"
582
  msgstr ""
583
 
584
+ #: classes/class-uagb-config.php:1385
585
  msgid "This block fetches the blog posts you may have on your website and displays them in a carousel layout."
586
  msgstr ""
587
 
588
+ #: classes/class-uagb-config.php:1487
589
  msgid "Post Grid"
590
  msgstr ""
591
 
592
+ #: classes/class-uagb-config.php:1488
593
  msgid "This block fetches the blog posts you may have on your website and displays them in a grid layout."
594
  msgstr ""
595
 
596
+ #: classes/class-uagb-config.php:1599
597
  msgid "Post Masonry"
598
  msgstr ""
599
 
600
+ #: classes/class-uagb-config.php:1600
601
  msgid "This block fetches the blog posts you may have on your website and displays them in a masonry layout."
602
  msgstr ""
603
 
604
+ #: classes/class-uagb-config.php:1720
605
  #: dist/blocks.js:9
606
  msgid "Masonry Gallery"
607
  msgstr ""
608
 
609
+ #: classes/class-uagb-config.php:1721
610
  msgid "This block fetches the Core Gallery and displays them in a masonry layout."
611
  msgstr ""
612
 
613
+ #: classes/class-uagb-config.php:1729
614
  msgid "Post Title"
615
  msgstr ""
616
 
617
+ #: classes/class-uagb-config.php:1730
618
  msgid "This block fetches the blog title."
619
  msgstr ""
620
 
621
+ #: classes/class-uagb-config.php:1736
622
  msgid "Post Button"
623
  msgstr ""
624
 
625
+ #: classes/class-uagb-config.php:1737
626
  msgid "This block display's a call to action button which links to the blogs page."
627
  msgstr ""
628
 
629
+ #: classes/class-uagb-config.php:1743
630
  msgid "Post Excerpt"
631
  msgstr ""
632
 
633
+ #: classes/class-uagb-config.php:1744
634
  msgid "This block fetches short description about a post."
635
  msgstr ""
636
 
637
+ #: classes/class-uagb-config.php:1750
638
  msgid "Post Meta"
639
  msgstr ""
640
 
641
+ #: classes/class-uagb-config.php:1751
642
  msgid "This block fetches post comments, author, publish date and categories data."
643
  msgstr ""
644
 
645
+ #: classes/class-uagb-config.php:1757
646
  msgid "Post Image"
647
  msgstr ""
648
 
649
+ #: classes/class-uagb-config.php:1758
650
  msgid "This block fetches posts feature image."
651
  msgstr ""
652
 
653
+ #: classes/class-uagb-config.php:1764
654
  msgid "Post Timeline"
655
  msgstr ""
656
 
657
+ #: classes/class-uagb-config.php:1765
658
  msgid "The Timeline block lets you create beautiful timelines of Posts on your website."
659
  msgstr ""
660
 
661
+ #: classes/class-uagb-config.php:1866
662
  msgid "Price List"
663
  msgstr ""
664
 
665
+ #: classes/class-uagb-config.php:1867
666
+ #: classes/class-uagb-config.php:2036
667
  msgid "This block allows you to add attractive Price List."
668
  msgstr ""
669
 
670
+ #: classes/class-uagb-config.php:1940
671
  msgid "Review Schema"
672
  msgstr ""
673
 
674
+ #: classes/class-uagb-config.php:1941
675
  msgid "This block helps you to add a review for various items with schema support."
676
  msgstr ""
677
 
678
+ #: classes/class-uagb-config.php:2035
679
  msgid "Price List-Child"
680
  msgstr ""
681
 
682
+ #: classes/class-uagb-config.php:2066
683
  msgid "Section"
684
  msgstr ""
685
 
686
+ #: classes/class-uagb-config.php:2067
687
  msgid "This block is an outer wrap section that allows you to add other blocks within it."
688
  msgstr ""
689
 
690
+ #: classes/class-uagb-config.php:2149
691
  msgid "Social Share"
692
  msgstr ""
693
 
694
+ #: classes/class-uagb-config.php:2150
695
  msgid "This block allows you to let users share your content across various social networking sites."
696
  msgstr ""
697
 
698
+ #: classes/class-uagb-config.php:2186
699
  msgid "Social Share Child"
700
  msgstr ""
701
 
702
+ #: classes/class-uagb-config.php:2204
703
  msgid "Tabs"
704
  msgstr ""
705
 
706
+ #: classes/class-uagb-config.php:2205
707
+ #: classes/class-uagb-config.php:2263
708
  msgid "This block allows you to display your content in tabs layout."
709
  msgstr ""
710
 
711
+ #: classes/class-uagb-config.php:2262
712
  msgid "Tabs child"
713
  msgstr ""
714
 
715
+ #: classes/class-uagb-config.php:2277
716
  msgid "Table of Contents"
717
  msgstr ""
718
 
719
+ #: classes/class-uagb-config.php:2278
720
  msgid "This block allows you to place a Table of Contents for Pages/Posts."
721
  msgstr ""
722
 
723
+ #: classes/class-uagb-config.php:2379
724
  msgid "Team"
725
  msgstr ""
726
 
727
+ #: classes/class-uagb-config.php:2380
728
  msgid "This block allows you to display your team. Add their picture, name, what they do and links to their social profiles."
729
  msgstr ""
730
 
731
+ #: classes/class-uagb-config.php:2452
732
  #: dist/blocks.js:1
733
  msgid "Testimonial"
734
  msgstr ""
735
 
736
+ #: classes/class-uagb-config.php:2453
737
  msgid "This block helps your display some amazing client feedback within your website."
738
  msgstr ""
739
 
740
+ #: classes/class-uagb-config.php:2538
741
  msgid "WP - Search"
742
  msgstr ""
743
 
744
+ #: classes/class-uagb-config.php:2539
745
  msgid "This block helps you add a Search field."
746
  msgstr ""
747
 
748
+ #: classes/class-uagb-config.php:2607
749
  msgid "Taxonomy List"
750
  msgstr ""
751
 
752
+ #: classes/class-uagb-config.php:2608
753
  msgid "This block helps you to display content categorization for various post types"
754
  msgstr ""
755
 
756
+ #: classes/class-uagb-config.php:2698
757
  msgid "Forms"
758
  msgstr ""
759
 
760
+ #: classes/class-uagb-config.php:2699
761
  msgid "This block allow you to create interactive contact form, newsletter, suggestion, etc easily."
762
  msgstr ""
763
 
764
+ #: classes/class-uagb-config.php:2704
765
  #: dist/blocks.js:9
766
  msgid "Submit"
767
  msgstr ""
768
 
769
+ #: classes/class-uagb-config.php:2705
770
  #: dist/blocks.js:9
771
  msgid "UAG Form"
772
  msgstr ""
773
 
774
+ #: classes/class-uagb-config.php:2708
775
  msgid "The form has been submitted Successfully!"
776
  msgstr ""
777
 
778
+ #: classes/class-uagb-config.php:2731
779
  #: dist/blocks.js:9
780
  msgid "Form Submission"
781
  msgstr ""
782
 
783
+ #: classes/class-uagb-config.php:2787
784
  #: dist/blocks.js:9
785
  msgid "There has been some error while submitting the form. Please verify all form fields again."
786
  msgstr ""
787
 
788
+ #: classes/class-uagb-config.php:2800
789
  #: dist/blocks.js:9
790
  msgid "Please fill up the above captcha."
791
  msgstr ""
792
 
793
+ #: classes/class-uagb-config.php:2805
794
  #: dist/blocks.js:1
795
  #: dist/blocks.js:9
796
  msgid "Name"
797
  msgstr ""
798
 
799
+ #: classes/class-uagb-config.php:2806
800
  msgid "This block helps to add Name field."
801
  msgstr ""
802
 
803
+ #: classes/class-uagb-config.php:2813
804
  #: dist/blocks.js:1
805
  #: dist/blocks.js:9
806
  msgid "Email"
807
  msgstr ""
808
 
809
+ #: classes/class-uagb-config.php:2814
810
  msgid "This block helps to add Email field."
811
  msgstr ""
812
 
813
+ #: classes/class-uagb-config.php:2821
814
  msgid "Hidden"
815
  msgstr ""
816
 
817
+ #: classes/class-uagb-config.php:2822
818
  msgid "This block helps to add Hidden field."
819
  msgstr ""
820
 
821
+ #: classes/class-uagb-config.php:2827
822
  #: dist/blocks.js:9
823
  msgid "Hidden Field Name"
824
  msgstr ""
825
 
826
+ #: classes/class-uagb-config.php:2834
827
  #: dist/blocks.js:9
828
  msgid "Phone"
829
  msgstr ""
830
 
831
+ #: classes/class-uagb-config.php:2835
832
  msgid "This block helps to add Phone field."
833
  msgstr ""
834
 
835
+ #: classes/class-uagb-config.php:2842
836
  msgid "Textarea"
837
  msgstr ""
838
 
839
+ #: classes/class-uagb-config.php:2843
840
  msgid "This block helps to add Textarea field."
841
  msgstr ""
842
 
843
+ #: classes/class-uagb-config.php:2848
844
  #: dist/blocks.js:9
845
  msgid "Message"
846
  msgstr ""
847
 
848
+ #: classes/class-uagb-config.php:2854
849
  msgid "Checkbox"
850
  msgstr ""
851
 
852
+ #: classes/class-uagb-config.php:2855
853
  msgid "This block helps to add Checkbox field."
854
  msgstr ""
855
 
856
+ #: classes/class-uagb-config.php:2862
857
  msgid "Radio"
858
  msgstr ""
859
 
860
+ #: classes/class-uagb-config.php:2863
861
  msgid "This block helps to add Radio field."
862
  msgstr ""
863
 
864
+ #: classes/class-uagb-config.php:2870
865
+ #: classes/class-uagb-config.php:2876
866
  #: dist/blocks.js:1
867
  #: dist/blocks.js:9
868
  msgid "URL"
869
  msgstr ""
870
 
871
+ #: classes/class-uagb-config.php:2871
872
  msgid "This block helps to add URL field."
873
  msgstr ""
874
 
875
+ #: classes/class-uagb-config.php:2881
876
  msgid "Select"
877
  msgstr ""
878
 
879
+ #: classes/class-uagb-config.php:2882
880
  msgid "This block helps to add Select field."
881
  msgstr ""
882
 
883
+ #: classes/class-uagb-config.php:2889
884
  msgid "Toggle"
885
  msgstr ""
886
 
887
+ #: classes/class-uagb-config.php:2890
888
  msgid "This block helps to add Toggle field."
889
  msgstr ""
890
 
891
+ #: classes/class-uagb-config.php:2897
892
  msgid "Datepicker"
893
  msgstr ""
894
 
895
+ #: classes/class-uagb-config.php:2898
896
  msgid "This block helps to add Datepicker field."
897
  msgstr ""
898
 
899
+ #: classes/class-uagb-config.php:2905
900
  msgid "Accept"
901
  msgstr ""
902
 
903
+ #: classes/class-uagb-config.php:2906
904
  msgid "This block helps to add Accept field."
905
  msgstr ""
906
 
907
+ #: classes/class-uagb-config.php:2912
908
  #: dist/blocks.js:9
909
  msgid "Lottie"
910
  msgstr ""
911
 
912
+ #: classes/class-uagb-config.php:2913
913
  msgid "This block helps you add Lottie animation and customize it as required."
914
  msgstr ""
915
 
916
+ #: classes/class-uagb-config.php:2936
917
  #: dist/blocks-placeholder.js:11
918
  #: dist/blocks.js:9
919
  msgid "Star Rating"
920
  msgstr ""
921
 
922
+ #: classes/class-uagb-config.php:2937
923
  msgid "This block helps you add Star Rating and customize it as required."
924
  msgstr ""
925
 
977
  msgid "WordPress Nonce not validated."
978
  msgstr ""
979
 
980
+ #: lib/gutenberg-templates/classes/class-ast-block-templates.php:394
981
  msgid "Starter Templates"
982
  msgstr ""
983
 
lib/gutenberg-templates/ast-block-templates.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Gutenberg Starter Templates
4
  * Plugin URI: https://wpastra.com/
5
  * Description: Gutenberg single page templates, and blocks library to imported your website easily.
6
- * Version: 1.0.8
7
  * Author: Brainstorm Force
8
  * Author URI: https://www.brainstormforce.com
9
  * Text Domain: ast-block-templates
@@ -21,7 +21,7 @@ if ( apply_filters( 'ast_block_templates_disable', false ) ) {
21
 
22
  // Set constants.
23
  define( 'AST_BLOCK_TEMPLATES_LIBRARY_URL', 'https://websitedemos.net/' );
24
- define( 'AST_BLOCK_TEMPLATES_VER', '1.0.8' );
25
  define( 'AST_BLOCK_TEMPLATES_FILE', __FILE__ );
26
  define( 'AST_BLOCK_TEMPLATES_BASE', plugin_basename( AST_BLOCK_TEMPLATES_FILE ) );
27
  define( 'AST_BLOCK_TEMPLATES_DIR', plugin_dir_path( AST_BLOCK_TEMPLATES_FILE ) );
3
  * Plugin Name: Gutenberg Starter Templates
4
  * Plugin URI: https://wpastra.com/
5
  * Description: Gutenberg single page templates, and blocks library to imported your website easily.
6
+ * Version: 1.0.9
7
  * Author: Brainstorm Force
8
  * Author URI: https://www.brainstormforce.com
9
  * Text Domain: ast-block-templates
21
 
22
  // Set constants.
23
  define( 'AST_BLOCK_TEMPLATES_LIBRARY_URL', 'https://websitedemos.net/' );
24
+ define( 'AST_BLOCK_TEMPLATES_VER', '1.0.9' );
25
  define( 'AST_BLOCK_TEMPLATES_FILE', __FILE__ );
26
  define( 'AST_BLOCK_TEMPLATES_BASE', plugin_basename( AST_BLOCK_TEMPLATES_FILE ) );
27
  define( 'AST_BLOCK_TEMPLATES_DIR', plugin_dir_path( AST_BLOCK_TEMPLATES_FILE ) );
lib/gutenberg-templates/classes/class-ast-block-templates.php CHANGED
@@ -365,7 +365,8 @@ if ( ! class_exists( 'Ast_Block_Templates' ) ) :
365
  */
366
  public function template_assets() {
367
 
368
- if ( ! is_admin() ) {
 
369
  return;
370
  }
371
 
365
  */
366
  public function template_assets() {
367
 
368
+ // Avoided to load scripts in customizer.
369
+ if ( is_customize_preview() ) {
370
  return;
371
  }
372
 
lib/gutenberg-templates/version.json CHANGED
@@ -1,3 +1,3 @@
1
  {
2
- "ast-block-templates": "1.0.8"
3
- }
1
  {
2
+ "ast-block-templates": "1.0.9"
3
+ }
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, gutenberg blocks, editor, block
5
  Requires at least: 4.7
6
  Requires PHP: 5.6
7
  Tested up to: 5.8
8
- Stable tag: 1.24.1
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -169,6 +169,12 @@ The awesome React FontIconPicker is developed by [Alessandro Benoit](http://code
169
 
170
  == Changelog ==
171
 
 
 
 
 
 
 
172
  = 1.24.1 – TUESDAY, 27TH JULY 2021 =
173
  * Fix: Table of contents - Uncaught TypeError with the load function.
174
  * Fix: Tabs - Responsive icons were not clickable in the editor.
5
  Requires at least: 4.7
6
  Requires PHP: 5.6
7
  Tested up to: 5.8
8
+ Stable tag: 1.24.2
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
169
 
170
  == Changelog ==
171
 
172
+ = 1.24.2 – WEDNESDAY, 4TH AUGUST 2021 =
173
+ * Fix: Blockquote - Multiple blockquote post the same content after clicking on a tweet button.
174
+ * Fix: Table of contents - Hyperlink was not working on Safari and Firefox browsers.
175
+ * Fix: Styling was not applying on the preview page.
176
+ * Fix: Conflict with Astra theme customizer.
177
+
178
  = 1.24.1 – TUESDAY, 27TH JULY 2021 =
179
  * Fix: Table of contents - Uncaught TypeError with the load function.
180
  * Fix: Tabs - Responsive icons were not clickable in the editor.
ultimate-addons-for-gutenberg.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://www.brainstormforce.com
5
  * Author: Brainstorm Force
6
  * Author URI: https://www.brainstormforce.com
7
- * Version: 1.24.1
8
  * Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
9
  * Text Domain: ultimate-addons-for-gutenberg
10
  *
4
  * Plugin URI: https://www.brainstormforce.com
5
  * Author: Brainstorm Force
6
  * Author URI: https://www.brainstormforce.com
7
+ * Version: 1.24.2
8
  * Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
9
  * Text Domain: ultimate-addons-for-gutenberg
10
  *