Gutenberg Blocks and Template Library by Otter - Version 2.1.5

Version Description

Download this release

Release Info

Developer themeisle
Plugin Icon wp plugin Gutenberg Blocks and Template Library by Otter
Version 2.1.5
Comparing to
See all releases

Code changes from version 2.1.4 to 2.1.5

CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  ##### [Version 2.1.4](https://github.com/Codeinwp/otter-blocks/compare/v2.1.3...v2.1.4) (2022-11-21)
2
 
3
  - Advanced Heading Enhancements
1
+ ##### [Version 2.1.5](https://github.com/Codeinwp/otter-blocks/compare/v2.1.4...v2.1.5) (2022-11-23)
2
+
3
+ - Fix Black Friday deal notice not dismissing; sorry for that.
4
+
5
  ##### [Version 2.1.4](https://github.com/Codeinwp/otter-blocks/compare/v2.1.3...v2.1.4) (2022-11-21)
6
 
7
  - Advanced Heading Enhancements
inc/class-pro.php CHANGED
@@ -183,7 +183,8 @@ class Pro {
183
  * @access public
184
  */
185
  public function should_show_bf_upsell() {
186
- $show_upsell = self::bf_deal();
 
187
 
188
  if ( defined( 'NEVE_VERSION' ) || defined( 'NEVE_PRO_VERSION' ) ) {
189
  $show_upsell = false;
183
  * @access public
184
  */
185
  public function should_show_bf_upsell() {
186
+ $show_upsell = self::bf_deal();
187
+ $notifications = get_option( 'themeisle_blocks_settings_notifications', array() );
188
 
189
  if ( defined( 'NEVE_VERSION' ) || defined( 'NEVE_PRO_VERSION' ) ) {
190
  $show_upsell = false;
otter-blocks.php CHANGED
@@ -7,7 +7,7 @@
7
  * Plugin Name: Otter – Page Builder Blocks & Extensions for Gutenberg
8
  * Plugin URI: https://themeisle.com/plugins/otter-blocks
9
  * Description: Create beautiful and attracting posts, pages, and landing pages with Otter – Page Builder Blocks & Extensions for Gutenberg. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages.
10
- * Version: 2.1.4
11
  * Author: ThemeIsle
12
  * Author URI: https://themeisle.com
13
  * License: GPL-2.0+
@@ -26,7 +26,7 @@ if ( ! defined( 'WPINC' ) ) {
26
  define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
27
  define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
28
  define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
29
- define( 'OTTER_BLOCKS_VERSION', '2.1.4' );
30
  define( 'OTTER_BLOCKS_PRO_SUPPORT', true );
31
  define( 'OTTER_BLOCKS_SHOW_NOTICES', false );
32
 
7
  * Plugin Name: Otter – Page Builder Blocks & Extensions for Gutenberg
8
  * Plugin URI: https://themeisle.com/plugins/otter-blocks
9
  * Description: Create beautiful and attracting posts, pages, and landing pages with Otter – Page Builder Blocks & Extensions for Gutenberg. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages.
10
+ * Version: 2.1.5
11
  * Author: ThemeIsle
12
  * Author URI: https://themeisle.com
13
  * License: GPL-2.0+
26
  define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
27
  define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
28
  define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
29
+ define( 'OTTER_BLOCKS_VERSION', '2.1.5' );
30
  define( 'OTTER_BLOCKS_PRO_SUPPORT', true );
31
  define( 'OTTER_BLOCKS_SHOW_NOTICES', false );
32
 
readme.md CHANGED
@@ -208,6 +208,13 @@ You can check Otter documentation [here](https://docs.themeisle.com/article/1478
208
 
209
  ## Changelog ##
210
 
 
 
 
 
 
 
 
211
  ##### [Version 2.1.4](https://github.com/Codeinwp/otter-blocks/compare/v2.1.3...v2.1.4) (2022-11-21)
212
 
213
  - Advanced Heading Enhancements
208
 
209
  ## Changelog ##
210
 
211
+ ##### [Version 2.1.5](https://github.com/Codeinwp/otter-blocks/compare/v2.1.4...v2.1.5) (2022-11-23)
212
+
213
+ - Fix Black Friday deal notice not dismissing; sorry for that.
214
+
215
+
216
+
217
+
218
  ##### [Version 2.1.4](https://github.com/Codeinwp/otter-blocks/compare/v2.1.3...v2.1.4) (2022-11-21)
219
 
220
  - Advanced Heading Enhancements
readme.txt CHANGED
@@ -208,6 +208,13 @@ You can check Otter documentation [here](https://docs.themeisle.com/article/1478
208
 
209
  == Changelog ==
210
 
 
 
 
 
 
 
 
211
  ##### [Version 2.1.4](https://github.com/Codeinwp/otter-blocks/compare/v2.1.3...v2.1.4) (2022-11-21)
212
 
213
  - Advanced Heading Enhancements
208
 
209
  == Changelog ==
210
 
211
+ ##### [Version 2.1.5](https://github.com/Codeinwp/otter-blocks/compare/v2.1.4...v2.1.5) (2022-11-23)
212
+
213
+ - Fix Black Friday deal notice not dismissing; sorry for that.
214
+
215
+
216
+
217
+
218
  ##### [Version 2.1.4](https://github.com/Codeinwp/otter-blocks/compare/v2.1.3...v2.1.4) (2022-11-21)
219
 
220
  - Advanced Heading Enhancements
vendor/autoload.php CHANGED
@@ -22,4 +22,4 @@ if (PHP_VERSION_ID < 50600) {
22
 
23
  require_once __DIR__ . '/composer/autoload_real.php';
24
 
25
- return ComposerAutoloaderInite80a903c4a416ac14e008e4f19ca9070::getLoader();
22
 
23
  require_once __DIR__ . '/composer/autoload_real.php';
24
 
25
+ return ComposerAutoloaderInitd546a9044e99cc7c81ed810bc45cb7bd::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInite80a903c4a416ac14e008e4f19ca9070
6
  {
7
  private static $loader;
8
 
@@ -24,18 +24,18 @@ class ComposerAutoloaderInite80a903c4a416ac14e008e4f19ca9070
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInite80a903c4a416ac14e008e4f19ca9070', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInite80a903c4a416ac14e008e4f19ca9070', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInite80a903c4a416ac14e008e4f19ca9070::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
36
- $includeFiles = \Composer\Autoload\ComposerStaticInite80a903c4a416ac14e008e4f19ca9070::$files;
37
  foreach ($includeFiles as $fileIdentifier => $file) {
38
- composerRequiree80a903c4a416ac14e008e4f19ca9070($fileIdentifier, $file);
39
  }
40
 
41
  return $loader;
@@ -47,7 +47,7 @@ class ComposerAutoloaderInite80a903c4a416ac14e008e4f19ca9070
47
  * @param string $file
48
  * @return void
49
  */
50
- function composerRequiree80a903c4a416ac14e008e4f19ca9070($fileIdentifier, $file)
51
  {
52
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
53
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitd546a9044e99cc7c81ed810bc45cb7bd
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInitd546a9044e99cc7c81ed810bc45cb7bd', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInitd546a9044e99cc7c81ed810bc45cb7bd', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
+ call_user_func(\Composer\Autoload\ComposerStaticInitd546a9044e99cc7c81ed810bc45cb7bd::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
36
+ $includeFiles = \Composer\Autoload\ComposerStaticInitd546a9044e99cc7c81ed810bc45cb7bd::$files;
37
  foreach ($includeFiles as $fileIdentifier => $file) {
38
+ composerRequired546a9044e99cc7c81ed810bc45cb7bd($fileIdentifier, $file);
39
  }
40
 
41
  return $loader;
47
  * @param string $file
48
  * @return void
49
  */
50
+ function composerRequired546a9044e99cc7c81ed810bc45cb7bd($fileIdentifier, $file)
51
  {
52
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
53
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInite80a903c4a416ac14e008e4f19ca9070
8
  {
9
  public static $files = array (
10
  '16e4325dd9bdbbd2ce8c9530b088e50b' => __DIR__ . '/..' . '/codeinwp/themeisle-sdk/load.php',
@@ -176,9 +176,9 @@ class ComposerStaticInite80a903c4a416ac14e008e4f19ca9070
176
  public static function getInitializer(ClassLoader $loader)
177
  {
178
  return \Closure::bind(function () use ($loader) {
179
- $loader->prefixLengthsPsr4 = ComposerStaticInite80a903c4a416ac14e008e4f19ca9070::$prefixLengthsPsr4;
180
- $loader->prefixDirsPsr4 = ComposerStaticInite80a903c4a416ac14e008e4f19ca9070::$prefixDirsPsr4;
181
- $loader->classMap = ComposerStaticInite80a903c4a416ac14e008e4f19ca9070::$classMap;
182
 
183
  }, null, ClassLoader::class);
184
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitd546a9044e99cc7c81ed810bc45cb7bd
8
  {
9
  public static $files = array (
10
  '16e4325dd9bdbbd2ce8c9530b088e50b' => __DIR__ . '/..' . '/codeinwp/themeisle-sdk/load.php',
176
  public static function getInitializer(ClassLoader $loader)
177
  {
178
  return \Closure::bind(function () use ($loader) {
179
+ $loader->prefixLengthsPsr4 = ComposerStaticInitd546a9044e99cc7c81ed810bc45cb7bd::$prefixLengthsPsr4;
180
+ $loader->prefixDirsPsr4 = ComposerStaticInitd546a9044e99cc7c81ed810bc45cb7bd::$prefixDirsPsr4;
181
+ $loader->classMap = ComposerStaticInitd546a9044e99cc7c81ed810bc45cb7bd::$classMap;
182
 
183
  }, null, ClassLoader::class);
184
  }
vendor/composer/installed.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'codeinwp/otter-blocks',
4
- 'pretty_version' => '2.1.4',
5
- 'version' => '2.1.4.0',
6
  'reference' => NULL,
7
  'type' => 'wordpress-plugin',
8
  'install_path' => __DIR__ . '/../../',
@@ -11,8 +11,8 @@
11
  ),
12
  'versions' => array(
13
  'codeinwp/otter-blocks' => array(
14
- 'pretty_version' => '2.1.4',
15
- 'version' => '2.1.4.0',
16
  'reference' => NULL,
17
  'type' => 'wordpress-plugin',
18
  'install_path' => __DIR__ . '/../../',
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'codeinwp/otter-blocks',
4
+ 'pretty_version' => '2.1.5',
5
+ 'version' => '2.1.5.0',
6
  'reference' => NULL,
7
  'type' => 'wordpress-plugin',
8
  'install_path' => __DIR__ . '/../../',
11
  ),
12
  'versions' => array(
13
  'codeinwp/otter-blocks' => array(
14
+ 'pretty_version' => '2.1.5',
15
+ 'version' => '2.1.5.0',
16
  'reference' => NULL,
17
  'type' => 'wordpress-plugin',
18
  'install_path' => __DIR__ . '/../../',