Gutenberg Blocks – Ultimate Addons for Gutenberg - Version 2.0.9

Version Description

  • THURSDAY, 1st SEPTEMBER 2022 =
  • Fix: Post Blocks - PHP notice if the number of columns are not set.
Download this release

Release Info

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

Code changes from version 2.0.8 to 2.0.9

classes/class-uagb-loader.php CHANGED
@@ -75,7 +75,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
75
  define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
76
  define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
77
  define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
78
- define( 'UAGB_VER', '2.0.8' );
79
  define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
80
  define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
81
  define( 'UAGB_SLUG', 'spectra' );
75
  define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
76
  define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
77
  define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
78
+ define( 'UAGB_VER', '2.0.9' );
79
  define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
80
  define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
81
  define( 'UAGB_SLUG', 'spectra' );
includes/blocks/post-carousel/attributes.php CHANGED
@@ -194,6 +194,9 @@ return array_merge(
194
  'boxShadowBlurHover' => '',
195
  'boxShadowSpreadHover' => '',
196
  'boxShadowPositionHover' => 'outset',
 
 
 
197
  ),
198
  $btn_border_attribute,
199
  $overall_border_attribute
194
  'boxShadowBlurHover' => '',
195
  'boxShadowSpreadHover' => '',
196
  'boxShadowPositionHover' => 'outset',
197
+ 'columns' => 3,
198
+ 'tcolumns' => 2,
199
+ 'mcolumns' => 1,
200
  ),
201
  $btn_border_attribute,
202
  $overall_border_attribute
includes/blocks/post-masonry/attributes.php CHANGED
@@ -209,6 +209,9 @@ return array_merge(
209
  'boxShadowBlurHover' => '',
210
  'boxShadowSpreadHover' => '',
211
  'boxShadowPositionHover' => 'outset',
 
 
 
212
  ),
213
  $pagination_masonry_border_attribute,
214
  $btn_border_attribute,
209
  'boxShadowBlurHover' => '',
210
  'boxShadowSpreadHover' => '',
211
  'boxShadowPositionHover' => 'outset',
212
+ 'columns' => 3,
213
+ 'tcolumns' => 2,
214
+ 'mcolumns' => 1,
215
  ),
216
  $pagination_masonry_border_attribute,
217
  $btn_border_attribute,
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: 6.0
8
- Stable tag: 2.0.8
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -166,6 +166,9 @@ When you use the Spectra along with the free Astra theme, you get a huge library
166
 
167
  == Changelog ==
168
 
 
 
 
169
  = 2.0.8 - THURSDAY, 1st SEPTEMBER 2022 =
170
  * Improvement: Added Responsive and Display conditions settings to core blocks.
171
  * Improvement: Updated admin dashboard UI.
5
  Requires at least: 4.7
6
  Requires PHP: 5.6
7
  Tested up to: 6.0
8
+ Stable tag: 2.0.9
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
166
 
167
  == Changelog ==
168
 
169
+ = 2.0.9 - THURSDAY, 1st SEPTEMBER 2022 =
170
+ * Fix: Post Blocks - PHP notice if the number of columns are not set.
171
+
172
  = 2.0.8 - THURSDAY, 1st SEPTEMBER 2022 =
173
  * Improvement: Added Responsive and Display conditions settings to core blocks.
174
  * Improvement: Updated admin dashboard UI.
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: 2.0.8
8
  * Description: The Spectra 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: 2.0.9
8
  * Description: The Spectra extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
9
  * Text Domain: ultimate-addons-for-gutenberg
10
  *