Brizy – Page Builder - Version 2.0.4

Version Description

  • 2020-08-06 =
  • Fixed: Support URL filters
Download this release

Release Info

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

Code changes from version 2.0.3 to 2.0.4

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.4.2<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 2.0.3<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
  ### 2.0.3 - 2020-08-06 ###
122
  * Fixed: Sync process bugs
123
  * Fixed: Allow to continue the sync process if there are block with deleted assets
@@ -153,6 +156,9 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
153
  * Improved: Added Animation options on all elements
154
  * Improved: Re-written ## Changelog
155
 
 
 
 
156
  ### 2.0.3 - 2020-08-06 ###
157
  * Fixed: Sync process bugs
158
  * Fixed: Allow to continue the sync process if there are block with deleted assets
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.4.2<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 2.0.4<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 2.0.4 - 2020-08-06 ###
122
+ * Fixed: Support URL filters
123
+
124
  ### 2.0.3 - 2020-08-06 ###
125
  * Fixed: Sync process bugs
126
  * Fixed: Allow to continue the sync process if there are block with deleted assets
156
  * Improved: Added Animation options on all elements
157
  * Improved: Re-written ## Changelog
158
 
159
+ ### 2.0.4 - 2020-08-06 ###
160
+ * Fixed: Support URL filters
161
+
162
  ### 2.0.3 - 2020-08-06 ###
163
  * Fixed: Sync process bugs
164
  * Fixed: Allow to continue the sync process if there are block with deleted assets
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: 2.0.3
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -19,7 +19,7 @@ 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', '2.0.3' );
23
  define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '150-wp' );
24
  define( 'BRIZY_SYNC_VERSION', '150' );
25
  define( 'BRIZY_FILE', __FILE__ );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 2.0.4
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', '2.0.4' );
23
  define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '150-wp' );
24
  define( 'BRIZY_SYNC_VERSION', '150' );
25
  define( 'BRIZY_FILE', __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.4.2
6
  Requires PHP: 5.6
7
- Stable tag: 2.0.3
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
  = 2.0.3 - 2020-08-06 =
143
  * Fixed: Sync process bugs
144
  * Fixed: Allow to continue the sync process if there are block with deleted assets
@@ -174,6 +177,9 @@ The progress you're making while building your page is always backed up in the c
174
  * Improved: Added Animation options on all elements
175
  * Improved: Re-written == Changelog ==
176
 
 
 
 
177
  = 2.0.3 - 2020-08-06 =
178
  * Fixed: Sync process bugs
179
  * Fixed: Allow to continue the sync process if there are block with deleted assets
4
  Requires at least: 4.5
5
  Tested up to: 5.4.2
6
  Requires PHP: 5.6
7
+ Stable tag: 2.0.4
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 2.0.4 - 2020-08-06 =
143
+ * Fixed: Support URL filters
144
+
145
  = 2.0.3 - 2020-08-06 =
146
  * Fixed: Sync process bugs
147
  * Fixed: Allow to continue the sync process if there are block with deleted assets
177
  * Improved: Added Animation options on all elements
178
  * Improved: Re-written == Changelog ==
179
 
180
+ = 2.0.4 - 2020-08-06 =
181
+ * Fixed: Support URL filters
182
+
183
  = 2.0.3 - 2020-08-06 =
184
  * Fixed: Sync process bugs
185
  * Fixed: Allow to continue the sync process if there are block with deleted assets
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit47cedf7d03a8c7ea33a4a817fdd899c1::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit49ea5c1641648b961646699919fa42ca::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit47cedf7d03a8c7ea33a4a817fdd899c1
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit47cedf7d03a8c7ea33a4a817fdd899c1
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit47cedf7d03a8c7ea33a4a817fdd899c1', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit47cedf7d03a8c7ea33a4a817fdd899c1', '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\ComposerStaticInit47cedf7d03a8c7ea33a4a817fdd899c1::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit47cedf7d03a8c7ea33a4a817fdd899c1
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
- $includeFiles = Composer\Autoload\ComposerStaticInit47cedf7d03a8c7ea33a4a817fdd899c1::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
- composerRequire47cedf7d03a8c7ea33a4a817fdd899c1($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
- function composerRequire47cedf7d03a8c7ea33a4a817fdd899c1($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 ComposerAutoloaderInit49ea5c1641648b961646699919fa42ca
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit49ea5c1641648b961646699919fa42ca', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit49ea5c1641648b961646699919fa42ca', '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\ComposerStaticInit49ea5c1641648b961646699919fa42ca::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\ComposerStaticInit49ea5c1641648b961646699919fa42ca::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
+ composerRequire49ea5c1641648b961646699919fa42ca($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
+ function composerRequire49ea5c1641648b961646699919fa42ca($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 ComposerStaticInit47cedf7d03a8c7ea33a4a817fdd899c1
8
  {
9
  public static $files = array (
10
  '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
@@ -74,9 +74,9 @@ class ComposerStaticInit47cedf7d03a8c7ea33a4a817fdd899c1
74
  public static function getInitializer(ClassLoader $loader)
75
  {
76
  return \Closure::bind(function () use ($loader) {
77
- $loader->prefixLengthsPsr4 = ComposerStaticInit47cedf7d03a8c7ea33a4a817fdd899c1::$prefixLengthsPsr4;
78
- $loader->prefixDirsPsr4 = ComposerStaticInit47cedf7d03a8c7ea33a4a817fdd899c1::$prefixDirsPsr4;
79
- $loader->prefixesPsr0 = ComposerStaticInit47cedf7d03a8c7ea33a4a817fdd899c1::$prefixesPsr0;
80
 
81
  }, null, ClassLoader::class);
82
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit49ea5c1641648b961646699919fa42ca
8
  {
9
  public static $files = array (
10
  '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
74
  public static function getInitializer(ClassLoader $loader)
75
  {
76
  return \Closure::bind(function () use ($loader) {
77
+ $loader->prefixLengthsPsr4 = ComposerStaticInit49ea5c1641648b961646699919fa42ca::$prefixLengthsPsr4;
78
+ $loader->prefixDirsPsr4 = ComposerStaticInit49ea5c1641648b961646699919fa42ca::$prefixDirsPsr4;
79
+ $loader->prefixesPsr0 = ComposerStaticInit49ea5c1641648b961646699919fa42ca::$prefixesPsr0;
80
 
81
  }, null, ClassLoader::class);
82
  }