Brizy – Page Builder - Version 1.0.10

Version Description

  • 2018-06-11 =
  • Fixed: Changelogs in readme files
  • Fixed: Back compatibility issues
Download this release

Release Info

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

Code changes from version 1.0.9 to 1.0.10

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
- Stable tag: 1.0.9<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -96,6 +96,10 @@ A good bug report includes full details to easily understand the issue you are h
96
 
97
  ## Changelog
98
 
 
 
 
 
99
  ### 1.0.9 - 2018-06-08 ###
100
  * New: Added saved and global blocks
101
  * New: Paddings and margins now accept values in percent
@@ -106,6 +110,14 @@ A good bug report includes full details to easily understand the issue you are h
106
  * Fixed: Removed functions.php
107
  * Fixed: Store the platform credentials in plugin config to avoid one platform request
108
 
 
 
 
 
 
 
 
 
109
  ### 1.0.7 - 2018-05-30 ###
110
  * New: Made the editor translatable
111
  * New: Added 3 new svg icons for wp shortcodes
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
+ Stable tag: 1.0.10<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
96
 
97
  ## Changelog
98
 
99
+ ### 1.0.10 - 2018-06-11 ###
100
+ * Fixed: Changelogs in readme files
101
+ * Fixed: Back compatibility issues
102
+
103
  ### 1.0.9 - 2018-06-08 ###
104
  * New: Added saved and global blocks
105
  * New: Paddings and margins now accept values in percent
110
  * Fixed: Removed functions.php
111
  * Fixed: Store the platform credentials in plugin config to avoid one platform request
112
 
113
+ ### 1.0.8 - 2018-06-06 ###
114
+ * New: Added saved and global blocks
115
+ * New: Added Form element integrations
116
+ * New: Paddings and margins now accept values in percent
117
+ * Fixed: Form submit text editing in Firefox
118
+ * Fixed: RichText element align on mobile
119
+ * Fixed: Other minor bugs
120
+
121
  ### 1.0.7 - 2018-05-30 ###
122
  * New: Made the editor translatable
123
  * New: Added 3 new svg icons for wp shortcodes
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.9
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -13,7 +13,7 @@
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
  define( 'BRIZY_LOG', false );
16
- define( 'BRIZY_VERSION', '1.0.9' );
17
  define( 'BRIZY_EDITOR_VERSION', '1.0.31' );
18
  define( 'BRIZY_FILE', __FILE__ );
19
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.10
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
  define( 'BRIZY_LOG', false );
16
+ define( 'BRIZY_VERSION', '1.0.10' );
17
  define( 'BRIZY_EDITOR_VERSION', '1.0.31' );
18
  define( 'BRIZY_FILE', __FILE__ );
19
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
editor/api.php CHANGED
@@ -273,11 +273,11 @@ class Brizy_Editor_API {
273
 
274
  $date = new \DateTime();
275
 
276
- $user_data = [
277
  "user_id" => $user->getPlatformUserId(),
278
  "created_at" => $date->format( DateTime::ISO8601 ),
279
  'client_id' => $client_id
280
- ];
281
 
282
  $multipass = new Brizy_Editor_Multipass( $secret );
283
 
273
 
274
  $date = new \DateTime();
275
 
276
+ $user_data = array(
277
  "user_id" => $user->getPlatformUserId(),
278
  "created_at" => $date->format( DateTime::ISO8601 ),
279
  'client_id' => $client_id
280
+ );
281
 
282
  $multipass = new Brizy_Editor_Multipass( $secret );
283
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: brizy, page builder, editor, visual editor, wysiwyg, landing page, drag-an
4
  Requires at least: 4.5
5
  Tested up to: 4.9
6
  Requires PHP: 5.4
7
- Stable tag: 1.0.9
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -129,6 +129,10 @@ The progress you're making while building your page is always backed up in the c
129
 
130
  == Changelog ==
131
 
 
 
 
 
132
  = 1.0.9 - 2018-06-08 =
133
  * New: Added saved and global blocks
134
  * New: Paddings and margins now accept values in percent
@@ -139,6 +143,14 @@ The progress you're making while building your page is always backed up in the c
139
  * Fixed: Removed functions.php
140
  * Fixed: Store the platform credentials in plugin config to avoid one platform request
141
 
 
 
 
 
 
 
 
 
142
  = 1.0.7 - 2018-05-30 =
143
  * New: Made the editor translatable
144
  * New: Added 3 new svg icons for wp shortcodes
4
  Requires at least: 4.5
5
  Tested up to: 4.9
6
  Requires PHP: 5.4
7
+ Stable tag: 1.0.10
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
129
 
130
  == Changelog ==
131
 
132
+ = 1.0.10 - 2018-06-11 =
133
+ * Fixed: Changelogs in readme files
134
+ * Fixed: Back compatibility issues
135
+
136
  = 1.0.9 - 2018-06-08 =
137
  * New: Added saved and global blocks
138
  * New: Paddings and margins now accept values in percent
143
  * Fixed: Removed functions.php
144
  * Fixed: Store the platform credentials in plugin config to avoid one platform request
145
 
146
+ = 1.0.8 - 2018-06-06 =
147
+ * New: Added saved and global blocks
148
+ * New: Added Form element integrations
149
+ * New: Paddings and margins now accept values in percent
150
+ * Fixed: Form submit text editing in Firefox
151
+ * Fixed: RichText element align on mobile
152
+ * Fixed: Other minor bugs
153
+
154
  = 1.0.7 - 2018-05-30 =
155
  * New: Made the editor translatable
156
  * New: Added 3 new svg icons for wp shortcodes
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitf1d84b639bc8d95fca404259e6a341d2::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit8514822a8cc844098d40a2106acd28ad::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitf1d84b639bc8d95fca404259e6a341d2
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitf1d84b639bc8d95fca404259e6a341d2
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitf1d84b639bc8d95fca404259e6a341d2', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitf1d84b639bc8d95fca404259e6a341d2', '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\ComposerStaticInitf1d84b639bc8d95fca404259e6a341d2::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit8514822a8cc844098d40a2106acd28ad
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit8514822a8cc844098d40a2106acd28ad', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit8514822a8cc844098d40a2106acd28ad', '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\ComposerStaticInit8514822a8cc844098d40a2106acd28ad::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitf1d84b639bc8d95fca404259e6a341d2
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'T' =>
@@ -33,9 +33,9 @@ class ComposerStaticInitf1d84b639bc8d95fca404259e6a341d2
33
  public static function getInitializer(ClassLoader $loader)
34
  {
35
  return \Closure::bind(function () use ($loader) {
36
- $loader->prefixLengthsPsr4 = ComposerStaticInitf1d84b639bc8d95fca404259e6a341d2::$prefixLengthsPsr4;
37
- $loader->prefixDirsPsr4 = ComposerStaticInitf1d84b639bc8d95fca404259e6a341d2::$prefixDirsPsr4;
38
- $loader->prefixesPsr0 = ComposerStaticInitf1d84b639bc8d95fca404259e6a341d2::$prefixesPsr0;
39
 
40
  }, null, ClassLoader::class);
41
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit8514822a8cc844098d40a2106acd28ad
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'T' =>
33
  public static function getInitializer(ClassLoader $loader)
34
  {
35
  return \Closure::bind(function () use ($loader) {
36
+ $loader->prefixLengthsPsr4 = ComposerStaticInit8514822a8cc844098d40a2106acd28ad::$prefixLengthsPsr4;
37
+ $loader->prefixDirsPsr4 = ComposerStaticInit8514822a8cc844098d40a2106acd28ad::$prefixDirsPsr4;
38
+ $loader->prefixesPsr0 = ComposerStaticInit8514822a8cc844098d40a2106acd28ad::$prefixesPsr0;
39
 
40
  }, null, ClassLoader::class);
41
  }