Brizy – Page Builder - Version 1.0.88

Version Description

  • 2019-09-24 =
    • Fixed: Image Shadow Border Radius Fix in Preview
Download this release

Release Info

Developer themefusecom
Plugin Icon 128x128 Brizy – Page Builder
Version 1.0.88
Comparing to
See all releases

Code changes from version 1.0.87 to 1.0.88

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.2.3<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 1.0.87<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -118,6 +118,9 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
 
 
 
121
  ### 1.0.87 - 2019-09-23 ###
122
  * Fixed: Editor version number
123
 
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.2.3<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 1.0.88<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 1.0.88 - 2019-09-24 ###
122
+ * Fixed: Image Shadow Border Radius Fix in Preview
123
+
124
  ### 1.0.87 - 2019-09-23 ###
125
  * Fixed: Editor version number
126
 
admin/optimize-images.php CHANGED
@@ -47,7 +47,7 @@ class Brizy_Admin_OptimizeImages {
47
  }
48
 
49
  public function addSubmenuPage() {
50
- $this->screenName = add_submenu_page( Brizy_Admin_Settings::menu_slug(),
51
  __( 'Optimize Images' ),
52
  __( 'Optimize Images' ),
53
  'manage_options',
@@ -247,10 +247,12 @@ class Brizy_Admin_OptimizeImages {
247
  $attachment = $attachments[0];
248
  }
249
 
250
- $media_url = get_attached_file( $attachment->ID );
 
 
251
 
 
252
  $brizy_media = basename( $media_url );
253
-
254
  }
255
 
256
 
47
  }
48
 
49
  public function addSubmenuPage() {
50
+ $this->screenName = add_submenu_page( Brizy_Admin_Settings::menu_slug(),
51
  __( 'Optimize Images' ),
52
  __( 'Optimize Images' ),
53
  'manage_options',
247
  $attachment = $attachments[0];
248
  }
249
 
250
+ if ( !isset($attachment) ) {
251
+ continue;
252
+ }
253
 
254
+ $media_url = get_attached_file( $attachment->ID );
255
  $brizy_media = basename( $media_url );
 
256
  }
257
 
258
 
admin/views/optimizer/optimizer-general.html.twig CHANGED
@@ -85,7 +85,7 @@
85
  <p>There are <b>{{ count }}</b> images that can be optimized.</p>
86
  </div>
87
 
88
- {% if not enabled %}
89
  {% if count>0 %}
90
  <button type="submit" id="optimize-submit" class="button button-primary"
91
  onclick="startOptimize(); jQuery(this).prop('disabled',true);">
85
  <p>There are <b>{{ count }}</b> images that can be optimized.</p>
86
  </div>
87
 
88
+ {% if enabled %}
89
  {% if count>0 %}
90
  <button type="submit" id="optimize-submit" class="button button-primary"
91
  onclick="startOptimize(); jQuery(this).prop('disabled',true);">
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 1.0.87
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -19,8 +19,8 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
- define( 'BRIZY_VERSION', '1.0.87' );
23
- define( 'BRIZY_EDITOR_VERSION', '106' );
24
  define( 'BRIZY_FILE', __FILE__ );
25
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
26
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.88
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
+ define( 'BRIZY_VERSION', '1.0.88' );
23
+ define( 'BRIZY_EDITOR_VERSION', '108' );
24
  define( 'BRIZY_FILE', __FILE__ );
25
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
26
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: brizy, page builder, editor, visual editor, unyson, wysiwyg, landing page,
4
  Requires at least: 4.5
5
  Tested up to: 5.2.3
6
  Requires PHP: 5.6
7
- Stable tag: 1.0.87
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -139,6 +139,9 @@ The progress you're making while building your page is always backed up in the c
139
 
140
  == Changelog ==
141
 
 
 
 
142
  = 1.0.87 - 2019-09-23 =
143
  * Fixed: Editor version number
144
 
4
  Requires at least: 4.5
5
  Tested up to: 5.2.3
6
  Requires PHP: 5.6
7
+ Stable tag: 1.0.88
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 1.0.88 - 2019-09-24 =
143
+ * Fixed: Image Shadow Border Radius Fix in Preview
144
+
145
  = 1.0.87 - 2019-09-23 =
146
  * Fixed: Editor version number
147
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitf2826b12db78683450939c369a84d702::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit5c5859a155668c1171fad358ed90f289::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitf2826b12db78683450939c369a84d702
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitf2826b12db78683450939c369a84d702
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitf2826b12db78683450939c369a84d702', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitf2826b12db78683450939c369a84d702', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInitf2826b12db78683450939c369a84d702::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInitf2826b12db78683450939c369a84d702
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
- $includeFiles = Composer\Autoload\ComposerStaticInitf2826b12db78683450939c369a84d702::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
- composerRequiref2826b12db78683450939c369a84d702($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
- function composerRequiref2826b12db78683450939c369a84d702($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit5c5859a155668c1171fad358ed90f289
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit5c5859a155668c1171fad358ed90f289', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit5c5859a155668c1171fad358ed90f289', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit5c5859a155668c1171fad358ed90f289::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
+ $includeFiles = Composer\Autoload\ComposerStaticInit5c5859a155668c1171fad358ed90f289::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
+ composerRequire5c5859a155668c1171fad358ed90f289($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
+ function composerRequire5c5859a155668c1171fad358ed90f289($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitf2826b12db78683450939c369a84d702
8
  {
9
  public static $files = array (
10
  '8ec4222c68e580a23520eef4abe4380f' => __DIR__ . '/..' . '/shortpixel/shortpixel-php/lib/ShortPixel.php',
@@ -52,9 +52,9 @@ class ComposerStaticInitf2826b12db78683450939c369a84d702
52
  public static function getInitializer(ClassLoader $loader)
53
  {
54
  return \Closure::bind(function () use ($loader) {
55
- $loader->prefixLengthsPsr4 = ComposerStaticInitf2826b12db78683450939c369a84d702::$prefixLengthsPsr4;
56
- $loader->prefixDirsPsr4 = ComposerStaticInitf2826b12db78683450939c369a84d702::$prefixDirsPsr4;
57
- $loader->prefixesPsr0 = ComposerStaticInitf2826b12db78683450939c369a84d702::$prefixesPsr0;
58
 
59
  }, null, ClassLoader::class);
60
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit5c5859a155668c1171fad358ed90f289
8
  {
9
  public static $files = array (
10
  '8ec4222c68e580a23520eef4abe4380f' => __DIR__ . '/..' . '/shortpixel/shortpixel-php/lib/ShortPixel.php',
52
  public static function getInitializer(ClassLoader $loader)
53
  {
54
  return \Closure::bind(function () use ($loader) {
55
+ $loader->prefixLengthsPsr4 = ComposerStaticInit5c5859a155668c1171fad358ed90f289::$prefixLengthsPsr4;
56
+ $loader->prefixDirsPsr4 = ComposerStaticInit5c5859a155668c1171fad358ed90f289::$prefixDirsPsr4;
57
+ $loader->prefixesPsr0 = ComposerStaticInit5c5859a155668c1171fad358ed90f289::$prefixesPsr0;
58
 
59
  }, null, ClassLoader::class);
60
  }