Brizy – Page Builder - Version 1.0.128

Version Description

  • 2020-07-30 =
  • Fixed: Layout sync.
Download this release

Release Info

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

Code changes from version 1.0.127 to 1.0.128

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: 1.0.127<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.127 - 2020-07-30 ###
122
  * New: Introduced working in Draft
123
  * New: Links to Support and Docs in left sidebar
@@ -128,7 +131,10 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
128
  * Improved: Enabled shape option on responsive for all Sections
129
  * Improved: Updated Google Fonts list
130
  * Improved: Added Animation options on all elements
131
- * Improved: Re-written ## Changelog extended the Image element (added fixed px size)
 
 
 
132
  * Improved: Plugin loading
133
  * Improved: Sent post directly in the get_the_content post content element
134
  * Improved: Increased the size limit of Image population to 5000px
@@ -148,6 +154,9 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
148
  * Fixed: Compatibility with LiteSpeed plugin
149
  * Fixed: Missing translation ready strings
150
 
 
 
 
151
  ### 1.0.125 - 2020-06-02 ###
152
  * Fixed: Security fixes
153
 
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.4.2<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 1.0.128<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.128 - 2020-07-30 ###
122
+ * Fixed: Layout sync.
123
+
124
  ### 1.0.127 - 2020-07-30 ###
125
  * New: Introduced working in Draft
126
  * New: Links to Support and Docs in left sidebar
131
  * Improved: Enabled shape option on responsive for all Sections
132
  * Improved: Updated Google Fonts list
133
  * Improved: Added Animation options on all elements
134
+ * Improved: Re-written ## Changelog
135
+
136
+ ### 1.0.128 - 2020-07-30 ###
137
+ * Fixed: Layout sync. extended the Image element (added fixed px size)
138
  * Improved: Plugin loading
139
  * Improved: Sent post directly in the get_the_content post content element
140
  * Improved: Increased the size limit of Image population to 5000px
154
  * Fixed: Compatibility with LiteSpeed plugin
155
  * Fixed: Missing translation ready strings
156
 
157
+ ### 1.0.126 - 2020-06-03 ###
158
+ * Fixed: Security fixes
159
+
160
  ### 1.0.125 - 2020-06-02 ###
161
  * Fixed: Security fixes
162
 
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.127
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -20,7 +20,7 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
- define( 'BRIZY_VERSION', '1.0.127' );
24
  define( 'BRIZY_EDITOR_VERSION', '149-wp' );
25
  define( 'BRIZY_SYNC_VERSION', '149' );
26
  define( 'BRIZY_FILE', __FILE__ );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.128
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
+ define( 'BRIZY_VERSION', '1.0.128' );
24
  define( 'BRIZY_EDITOR_VERSION', '149-wp' );
25
  define( 'BRIZY_SYNC_VERSION', '149' );
26
  define( 'BRIZY_FILE', __FILE__ );
editor/layout.php CHANGED
@@ -199,6 +199,7 @@ class Brizy_Editor_Layout extends Brizy_Editor_Post {
199
  $data['editor_data'] = base64_decode( $data['editor_data'] );
200
  $data['meta'] = $this->getMeta();
201
  $data['cloudId'] = $this->getCloudId();
 
202
  $data['media'] = $this->getMedia();
203
 
204
  unset( $data['wp_post'] );
@@ -219,7 +220,6 @@ class Brizy_Editor_Layout extends Brizy_Editor_Post {
219
  $this->setCloudAccountId( $storage_post['cloudAccountId'] );
220
  }
221
 
222
-
223
  $this->meta = get_metadata( 'post', $this->getWpPostId(), self::BRIZY_LAYOUT_META, true );
224
  $this->media = get_metadata( 'post', $this->getWpPostId(), self::BRIZY_LAYOUT_MEDIA, true );
225
  }
@@ -228,7 +228,8 @@ class Brizy_Editor_Layout extends Brizy_Editor_Post {
228
  $data = parent::convertToOptionValue();
229
 
230
  $data['media'] = $this->getMedia();
231
- $data['cloudId'] = $this->getCloudId();
 
232
  $data['synchronized'] = $this->isSynchronized( Brizy_Editor_Project::get()->getCloudAccountId() );
233
  $data['synchronizable'] = $this->isSynchronizable();
234
 
199
  $data['editor_data'] = base64_decode( $data['editor_data'] );
200
  $data['meta'] = $this->getMeta();
201
  $data['cloudId'] = $this->getCloudId();
202
+ $data['cloudAccountId'] = $this->getCloudAccountId();
203
  $data['media'] = $this->getMedia();
204
 
205
  unset( $data['wp_post'] );
220
  $this->setCloudAccountId( $storage_post['cloudAccountId'] );
221
  }
222
 
 
223
  $this->meta = get_metadata( 'post', $this->getWpPostId(), self::BRIZY_LAYOUT_META, true );
224
  $this->media = get_metadata( 'post', $this->getWpPostId(), self::BRIZY_LAYOUT_MEDIA, true );
225
  }
228
  $data = parent::convertToOptionValue();
229
 
230
  $data['media'] = $this->getMedia();
231
+ $data['cloudId'] = $this->getCloudId();
232
+ $data['cloudAccountId'] = $this->getCloudAccountId();
233
  $data['synchronized'] = $this->isSynchronized( Brizy_Editor_Project::get()->getCloudAccountId() );
234
  $data['synchronizable'] = $this->isSynchronizable();
235
 
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: 1.0.127
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -139,18 +139,24 @@ The progress you're making while building your page is always backed up in the c
139
 
140
  == Changelog ==
141
 
 
 
 
142
  = 1.0.127 - 2020-07-30 =
143
  * New: Introduced working in Draft
144
  * New: Links to Support and Docs in left sidebar
145
- * New: Brizy Sync functionality for blocks and layouts
146
  * New: You can Clear or Save an entire layout
147
  * New: Absolute and Fixed positions for elements
148
  * Improved: Increased the size limit of Image population to 5000px
149
  * Improved: Enabled shape option on responsive for all Sections
150
  * Improved: Updated Google Fonts list
151
  * Improved: Added Animation options on all elements
152
- * Improved: Re-written == Changelog == extended the Image element (added fixed px size)
153
- * Improved: Plugin loading
 
 
 
154
  * Improved: Sent post directly in the get_the_content post content element
155
  * Improved: Increased the size limit of Image population to 5000px
156
  * Improved: Enabled shape option on responsive for all Sections
@@ -169,6 +175,9 @@ The progress you're making while building your page is always backed up in the c
169
  * Fixed: Compatibility with LiteSpeed plugin
170
  * Fixed: Missing translation ready strings
171
 
 
 
 
172
  = 1.0.125 - 2020-06-02 =
173
  * Fixed: Security fixes
174
 
4
  Requires at least: 4.5
5
  Tested up to: 5.4.2
6
  Requires PHP: 5.6
7
+ Stable tag: 1.0.128
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 1.0.128 - 2020-07-30 =
143
+ * Fixed: Layout sync.
144
+
145
  = 1.0.127 - 2020-07-30 =
146
  * New: Introduced working in Draft
147
  * New: Links to Support and Docs in left sidebar
148
+ * New: Brizy Sync functionality for blocks and layouts
149
  * New: You can Clear or Save an entire layout
150
  * New: Absolute and Fixed positions for elements
151
  * Improved: Increased the size limit of Image population to 5000px
152
  * Improved: Enabled shape option on responsive for all Sections
153
  * Improved: Updated Google Fonts list
154
  * Improved: Added Animation options on all elements
155
+ * Improved: Re-written == Changelog ==
156
+
157
+ = 1.0.128 - 2020-07-30 =
158
+ * Fixed: Layout sync. extended the Image element (added fixed px size)
159
+ * Improved: Plugin loading
160
  * Improved: Sent post directly in the get_the_content post content element
161
  * Improved: Increased the size limit of Image population to 5000px
162
  * Improved: Enabled shape option on responsive for all Sections
175
  * Fixed: Compatibility with LiteSpeed plugin
176
  * Fixed: Missing translation ready strings
177
 
178
+ = 1.0.126 - 2020-06-03 =
179
+ * Fixed: Security fixes
180
+
181
  = 1.0.125 - 2020-06-02 =
182
  * Fixed: Security fixes
183
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit7a7c5b803c95c4e4fb60b102b0936b06::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit2db4f45e27f5286cb51edc999ea4cb28::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit7a7c5b803c95c4e4fb60b102b0936b06
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit7a7c5b803c95c4e4fb60b102b0936b06
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit7a7c5b803c95c4e4fb60b102b0936b06', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit7a7c5b803c95c4e4fb60b102b0936b06', '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\ComposerStaticInit7a7c5b803c95c4e4fb60b102b0936b06::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit7a7c5b803c95c4e4fb60b102b0936b06
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
- $includeFiles = Composer\Autoload\ComposerStaticInit7a7c5b803c95c4e4fb60b102b0936b06::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
- composerRequire7a7c5b803c95c4e4fb60b102b0936b06($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
- function composerRequire7a7c5b803c95c4e4fb60b102b0936b06($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 ComposerAutoloaderInit2db4f45e27f5286cb51edc999ea4cb28
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit2db4f45e27f5286cb51edc999ea4cb28', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit2db4f45e27f5286cb51edc999ea4cb28', '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\ComposerStaticInit2db4f45e27f5286cb51edc999ea4cb28::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\ComposerStaticInit2db4f45e27f5286cb51edc999ea4cb28::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
+ composerRequire2db4f45e27f5286cb51edc999ea4cb28($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
+ function composerRequire2db4f45e27f5286cb51edc999ea4cb28($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 ComposerStaticInit7a7c5b803c95c4e4fb60b102b0936b06
8
  {
9
  public static $files = array (
10
  '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
@@ -74,9 +74,9 @@ class ComposerStaticInit7a7c5b803c95c4e4fb60b102b0936b06
74
  public static function getInitializer(ClassLoader $loader)
75
  {
76
  return \Closure::bind(function () use ($loader) {
77
- $loader->prefixLengthsPsr4 = ComposerStaticInit7a7c5b803c95c4e4fb60b102b0936b06::$prefixLengthsPsr4;
78
- $loader->prefixDirsPsr4 = ComposerStaticInit7a7c5b803c95c4e4fb60b102b0936b06::$prefixDirsPsr4;
79
- $loader->prefixesPsr0 = ComposerStaticInit7a7c5b803c95c4e4fb60b102b0936b06::$prefixesPsr0;
80
 
81
  }, null, ClassLoader::class);
82
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit2db4f45e27f5286cb51edc999ea4cb28
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 = ComposerStaticInit2db4f45e27f5286cb51edc999ea4cb28::$prefixLengthsPsr4;
78
+ $loader->prefixDirsPsr4 = ComposerStaticInit2db4f45e27f5286cb51edc999ea4cb28::$prefixDirsPsr4;
79
+ $loader->prefixesPsr0 = ComposerStaticInit2db4f45e27f5286cb51edc999ea4cb28::$prefixesPsr0;
80
 
81
  }, null, ClassLoader::class);
82
  }