Gutenberg Blocks and Template Library by Otter - Version 1.0.4

Version Description

Download this release

Release Info

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

Code changes from version 1.0.3 to 1.0.4

CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
 
 
 
 
 
2
  ### v1.0.3 - 2018-12-07
3
  **Changes:**
4
  * - Fixes issue with Posts Grid block displaying wrong author
1
 
2
+ ### v1.0.4 - 2018-12-07
3
+ **Changes:**
4
+ * - Fixed dependencies issue
5
+
6
  ### v1.0.3 - 2018-12-07
7
  **Changes:**
8
  * - Fixes issue with Posts Grid block displaying wrong author
otter-blocks.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Otter Blocks - Awesome Gutenberg Blocks
4
  * Plugin URI: https://themeisle.com/plugins/otter-blocks
5
  * Description: Create beautiful and attracting posts, pages, and landing pages with Otter Blocks. Otter Blocks comes with dozens of Gutenberg blocks that are all you need to build beautiful pages.
6
- * Version: 1.0.3
7
  * Author: ThemeIsle
8
  * Author URI: https://themeisle.com
9
  * License: GPL-2.0+
3
  * Plugin Name: Otter Blocks - Awesome Gutenberg Blocks
4
  * Plugin URI: https://themeisle.com/plugins/otter-blocks
5
  * Description: Create beautiful and attracting posts, pages, and landing pages with Otter Blocks. Otter Blocks comes with dozens of Gutenberg blocks that are all you need to build beautiful pages.
6
+ * Version: 1.0.4
7
  * Author: ThemeIsle
8
  * Author URI: https://themeisle.com
9
  * License: GPL-2.0+
readme.md CHANGED
@@ -1,8 +1,8 @@
1
  # Otter Blocks - Awesome Gutenberg Blocks #
2
  **Contributors:** [themeisle](https://profiles.wordpress.org/themeisle), [hardeepasrani](https://profiles.wordpress.org/hardeepasrani)
3
  **Tags:** gutenberg, block, services block, pricing block, testimonials block, post grid block, google map block, font awesome block, sharing icons block, about author block, accodion block, pie chart block, notice block, tweet block
4
- **Requires at least:** 4.9
5
- **Tested up to:** 4.9
6
  **Requires PHP:** 5.4
7
  **Stable tag:** trunk
8
  **License:** GPLv3
1
  # Otter Blocks - Awesome Gutenberg Blocks #
2
  **Contributors:** [themeisle](https://profiles.wordpress.org/themeisle), [hardeepasrani](https://profiles.wordpress.org/hardeepasrani)
3
  **Tags:** gutenberg, block, services block, pricing block, testimonials block, post grid block, google map block, font awesome block, sharing icons block, about author block, accodion block, pie chart block, notice block, tweet block
4
+ **Requires at least:** 4.9
5
+ **Tested up to:** 5.0
6
  **Requires PHP:** 5.4
7
  **Stable tag:** trunk
8
  **License:** GPLv3
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Otter Blocks - Awesome Gutenberg Blocks ===
2
  Contributors: themeisle, hardeepasrani
3
  Tags: gutenberg, block, services block, pricing block, testimonials block, post grid block, google map block, font awesome block, sharing icons block, about author block, accodion block, pie chart block, notice block, tweet block
4
- Requires at least: 4.9
5
- Tested up to: 4.9
6
  Requires PHP: 5.4
7
  Stable tag: trunk
8
  License: GPLv3
1
  === Otter Blocks - Awesome Gutenberg Blocks ===
2
  Contributors: themeisle, hardeepasrani
3
  Tags: gutenberg, block, services block, pricing block, testimonials block, post grid block, google map block, font awesome block, sharing icons block, about author block, accodion block, pie chart block, notice block, tweet block
4
+ Requires at least: 4.9
5
+ Tested up to: 5.0
6
  Requires PHP: 5.4
7
  Stable tag: trunk
8
  License: GPLv3
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitd62ae4e94d95d82277ebf41bff56d673::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit919ae6f691d18b92cce17b279ba814a9::getLoader();
vendor/codeinwp/gutenberg-blocks/class-gutenberg-blocks.php CHANGED
@@ -99,8 +99,7 @@ if ( ! class_exists( '\ThemeIsle\GutenbergBlocks' ) ) {
99
 
100
  wp_enqueue_style(
101
  'themeisle-block_styles',
102
- plugin_dir_url( $this->get_dir() ) . $this->slug . '/build/style.css',
103
- array( 'wp-blocks' )
104
  );
105
 
106
  if ( has_block( 'themeisle-blocks/chart-pie' ) ) {
99
 
100
  wp_enqueue_style(
101
  'themeisle-block_styles',
102
+ plugin_dir_url( $this->get_dir() ) . $this->slug . '/build/style.css'
 
103
  );
104
 
105
  if ( has_block( 'themeisle-blocks/chart-pie' ) ) {
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitd62ae4e94d95d82277ebf41bff56d673
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitd62ae4e94d95d82277ebf41bff56d673
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitd62ae4e94d95d82277ebf41bff56d673', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitd62ae4e94d95d82277ebf41bff56d673', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInitd62ae4e94d95d82277ebf41bff56d673
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequired62ae4e94d95d82277ebf41bff56d673($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequired62ae4e94d95d82277ebf41bff56d673($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit919ae6f691d18b92cce17b279ba814a9
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit919ae6f691d18b92cce17b279ba814a9', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit919ae6f691d18b92cce17b279ba814a9', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
+ composerRequire919ae6f691d18b92cce17b279ba814a9($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequire919ae6f691d18b92cce17b279ba814a9($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
vendor/composer/installed.json CHANGED
@@ -6,15 +6,15 @@
6
  "source": {
7
  "type": "git",
8
  "url": "https://github.com/Codeinwp/gutenberg-blocks.git",
9
- "reference": "beaf1d9b72c60ccd4be4145aa49a01aac15d2f07"
10
  },
11
  "dist": {
12
  "type": "zip",
13
- "url": "https://api.github.com/repos/Codeinwp/gutenberg-blocks/zipball/beaf1d9b72c60ccd4be4145aa49a01aac15d2f07",
14
- "reference": "beaf1d9b72c60ccd4be4145aa49a01aac15d2f07",
15
  "shasum": ""
16
  },
17
- "time": "2018-12-07 08:49:05",
18
  "type": "library",
19
  "installation-source": "dist",
20
  "autoload": {
6
  "source": {
7
  "type": "git",
8
  "url": "https://github.com/Codeinwp/gutenberg-blocks.git",
9
+ "reference": "4866e0aa0146c9f4d90af91ff71450f1f749ffe7"
10
  },
11
  "dist": {
12
  "type": "zip",
13
+ "url": "https://api.github.com/repos/Codeinwp/gutenberg-blocks/zipball/4866e0aa0146c9f4d90af91ff71450f1f749ffe7",
14
+ "reference": "4866e0aa0146c9f4d90af91ff71450f1f749ffe7",
15
  "shasum": ""
16
  },
17
+ "time": "2018-12-07 09:34:04",
18
  "type": "library",
19
  "installation-source": "dist",
20
  "autoload": {