Gutenberg Blocks and Template Library by Otter - Version 2.0.7

Version Description

Download this release

Release Info

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

Code changes from version 2.0.6 to 2.0.7

CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  ##### [Version 2.0.6](https://github.com/Codeinwp/otter-blocks/compare/v2.0.5...v2.0.6) (2022-07-01)
2
 
3
  - Redesigned Form Block with new styling and options
1
+ ##### [Version 2.0.7](https://github.com/Codeinwp/otter-blocks/compare/v2.0.6...v2.0.7) (2022-07-04)
2
+
3
+ - Fix Google Fonts not loading in certain cases
4
+
5
  ##### [Version 2.0.6](https://github.com/Codeinwp/otter-blocks/compare/v2.0.5...v2.0.6) (2022-07-01)
6
 
7
  - Redesigned Form Block with new styling and options
inc/css/class-block-frontend.php CHANGED
@@ -170,6 +170,9 @@ class Block_Frontend extends Base_CSS {
170
  $font['fontvariant'][ $key ] = 400;
171
  }
172
  }
 
 
 
173
  $item .= ':wght@' . implode( ';', $font['fontvariant'] );
174
  }
175
  array_push( $fonts, $item );
170
  $font['fontvariant'][ $key ] = 400;
171
  }
172
  }
173
+
174
+ sort( $font['fontvariant'] );
175
+
176
  $item .= ':wght@' . implode( ';', $font['fontvariant'] );
177
  }
178
  array_push( $fonts, $item );
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.0.6
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.0.6' );
30
  define( 'OTTER_BLOCKS_PRO_SUPPORT', true );
31
 
32
  $vendor_file = OTTER_BLOCKS_PATH . '/vendor/autoload.php';
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.0.7
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.0.7' );
30
  define( 'OTTER_BLOCKS_PRO_SUPPORT', true );
31
 
32
  $vendor_file = OTTER_BLOCKS_PATH . '/vendor/autoload.php';
readme.md CHANGED
@@ -189,6 +189,13 @@ We're here to help. Feel free to open a new thread on the [Support Forum](https:
189
 
190
  ## Changelog ##
191
 
 
 
 
 
 
 
 
192
  ##### [Version 2.0.6](https://github.com/Codeinwp/otter-blocks/compare/v2.0.5...v2.0.6) (2022-07-01)
193
 
194
  - Redesigned Form Block with new styling and options
189
 
190
  ## Changelog ##
191
 
192
+ ##### [Version 2.0.7](https://github.com/Codeinwp/otter-blocks/compare/v2.0.6...v2.0.7) (2022-07-04)
193
+
194
+ - Fix Google Fonts not loading in certain cases
195
+
196
+
197
+
198
+
199
  ##### [Version 2.0.6](https://github.com/Codeinwp/otter-blocks/compare/v2.0.5...v2.0.6) (2022-07-01)
200
 
201
  - Redesigned Form Block with new styling and options
readme.txt CHANGED
@@ -189,6 +189,13 @@ We're here to help. Feel free to open a new thread on the [Support Forum](https:
189
 
190
  == Changelog ==
191
 
 
 
 
 
 
 
 
192
  ##### [Version 2.0.6](https://github.com/Codeinwp/otter-blocks/compare/v2.0.5...v2.0.6) (2022-07-01)
193
 
194
  - Redesigned Form Block with new styling and options
189
 
190
  == Changelog ==
191
 
192
+ ##### [Version 2.0.7](https://github.com/Codeinwp/otter-blocks/compare/v2.0.6...v2.0.7) (2022-07-04)
193
+
194
+ - Fix Google Fonts not loading in certain cases
195
+
196
+
197
+
198
+
199
  ##### [Version 2.0.6](https://github.com/Codeinwp/otter-blocks/compare/v2.0.5...v2.0.6) (2022-07-01)
200
 
201
  - Redesigned Form Block with new styling and options
vendor/autoload.php CHANGED
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
- return ComposerAutoloaderInite3d3321357e43ee5e71927f2f0b2525b::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInita2b17e69731520bfef6a9ea3f5b82261::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInite3d3321357e43ee5e71927f2f0b2525b
6
  {
7
  private static $loader;
8
 
@@ -24,18 +24,18 @@ class ComposerAutoloaderInite3d3321357e43ee5e71927f2f0b2525b
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInite3d3321357e43ee5e71927f2f0b2525b', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInite3d3321357e43ee5e71927f2f0b2525b', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInite3d3321357e43ee5e71927f2f0b2525b::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
36
- $includeFiles = \Composer\Autoload\ComposerStaticInite3d3321357e43ee5e71927f2f0b2525b::$files;
37
  foreach ($includeFiles as $fileIdentifier => $file) {
38
- composerRequiree3d3321357e43ee5e71927f2f0b2525b($fileIdentifier, $file);
39
  }
40
 
41
  return $loader;
@@ -47,7 +47,7 @@ class ComposerAutoloaderInite3d3321357e43ee5e71927f2f0b2525b
47
  * @param string $file
48
  * @return void
49
  */
50
- function composerRequiree3d3321357e43ee5e71927f2f0b2525b($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 ComposerAutoloaderInita2b17e69731520bfef6a9ea3f5b82261
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInita2b17e69731520bfef6a9ea3f5b82261', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInita2b17e69731520bfef6a9ea3f5b82261', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
+ call_user_func(\Composer\Autoload\ComposerStaticInita2b17e69731520bfef6a9ea3f5b82261::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
36
+ $includeFiles = \Composer\Autoload\ComposerStaticInita2b17e69731520bfef6a9ea3f5b82261::$files;
37
  foreach ($includeFiles as $fileIdentifier => $file) {
38
+ composerRequirea2b17e69731520bfef6a9ea3f5b82261($fileIdentifier, $file);
39
  }
40
 
41
  return $loader;
47
  * @param string $file
48
  * @return void
49
  */
50
+ function composerRequirea2b17e69731520bfef6a9ea3f5b82261($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 ComposerStaticInite3d3321357e43ee5e71927f2f0b2525b
8
  {
9
  public static $files = array (
10
  '16e4325dd9bdbbd2ce8c9530b088e50b' => __DIR__ . '/..' . '/codeinwp/themeisle-sdk/load.php',
@@ -124,9 +124,9 @@ class ComposerStaticInite3d3321357e43ee5e71927f2f0b2525b
124
  public static function getInitializer(ClassLoader $loader)
125
  {
126
  return \Closure::bind(function () use ($loader) {
127
- $loader->prefixLengthsPsr4 = ComposerStaticInite3d3321357e43ee5e71927f2f0b2525b::$prefixLengthsPsr4;
128
- $loader->prefixDirsPsr4 = ComposerStaticInite3d3321357e43ee5e71927f2f0b2525b::$prefixDirsPsr4;
129
- $loader->classMap = ComposerStaticInite3d3321357e43ee5e71927f2f0b2525b::$classMap;
130
 
131
  }, null, ClassLoader::class);
132
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInita2b17e69731520bfef6a9ea3f5b82261
8
  {
9
  public static $files = array (
10
  '16e4325dd9bdbbd2ce8c9530b088e50b' => __DIR__ . '/..' . '/codeinwp/themeisle-sdk/load.php',
124
  public static function getInitializer(ClassLoader $loader)
125
  {
126
  return \Closure::bind(function () use ($loader) {
127
+ $loader->prefixLengthsPsr4 = ComposerStaticInita2b17e69731520bfef6a9ea3f5b82261::$prefixLengthsPsr4;
128
+ $loader->prefixDirsPsr4 = ComposerStaticInita2b17e69731520bfef6a9ea3f5b82261::$prefixDirsPsr4;
129
+ $loader->classMap = ComposerStaticInita2b17e69731520bfef6a9ea3f5b82261::$classMap;
130
 
131
  }, null, ClassLoader::class);
132
  }
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.0.6',
5
- 'version' => '2.0.6.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.0.6',
15
- 'version' => '2.0.6.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.0.7',
5
+ 'version' => '2.0.7.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.0.7',
15
+ 'version' => '2.0.7.0',
16
  'reference' => NULL,
17
  'type' => 'wordpress-plugin',
18
  'install_path' => __DIR__ . '/../../',