Version Description
- 2019-04-18 =
- Fixed: Activate license form
Download this release
Release Info
Developer | themefusecom |
Plugin | Brizy – Page Builder |
Version | 1.0.71 |
Comparing to | |
See all releases |
Code changes from version 1.0.70 to 1.0.71
- README.md +4 -1
- brizy.php +2 -2
- editor/project.php +3 -12
- readme.txt +4 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +2 -2
README.md
CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
|
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.1<br>
|
5 |
Requires PHP: 5.4<br>
|
6 |
-
Stable tag: 1.0.
|
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.70 - 2019-04-18 ###
|
122 |
* New: Box Shadow option for Icon, Image, Video, Map, Column, Row
|
123 |
* New: Hover transition option for Image
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.1<br>
|
5 |
Requires PHP: 5.4<br>
|
6 |
+
Stable tag: 1.0.71<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.71 - 2019-04-18 ###
|
122 |
+
* Fixed: Activate license form
|
123 |
+
|
124 |
### 1.0.70 - 2019-04-18 ###
|
125 |
* New: Box Shadow option for Icon, Image, Video, Map, Column, Row
|
126 |
* New: Hover transition option for Image
|
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 |
* 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', '1.0.
|
23 |
define( 'BRIZY_EDITOR_VERSION', '1.0.95' );
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
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.71
|
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.71' );
|
23 |
define( 'BRIZY_EDITOR_VERSION', '1.0.95' );
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
editor/project.php
CHANGED
@@ -680,26 +680,17 @@ class Brizy_Editor_Project implements Serializable {
|
|
680 |
}
|
681 |
|
682 |
if ( $key == 'brizy-license-key' ) {
|
683 |
-
$this->setLicenseKey( $value );
|
684 |
}
|
685 |
if ( $key == 'brizy-cloud-token' ) {
|
686 |
-
$this->setCloudToken( $value );
|
687 |
}
|
688 |
if ( $key == 'brizy-cloud-project' ) {
|
689 |
-
$this->setCloudProject( $value );
|
690 |
}
|
691 |
|
692 |
return $this->$key = $value;
|
693 |
|
694 |
-
// $this->storage->set( $key, $value );
|
695 |
-
// $this->storage->set( 'pluginVersion', BRIZY_VERSION );
|
696 |
-
// $this->storage->set( 'editorVersion', BRIZY_EDITOR_VERSION );
|
697 |
-
// $this->storage->set( 'updated', new DateTime() );
|
698 |
-
//
|
699 |
-
// // create project revision
|
700 |
-
// // md5 it to make sure no one will use this data-- we need it only to make the revision
|
701 |
-
// $this->post->post_content = md5( serialize( time() ) );
|
702 |
-
// wp_update_post( $this->post );
|
703 |
}
|
704 |
|
705 |
|
680 |
}
|
681 |
|
682 |
if ( $key == 'brizy-license-key' ) {
|
683 |
+
return $this->setLicenseKey( $value );
|
684 |
}
|
685 |
if ( $key == 'brizy-cloud-token' ) {
|
686 |
+
return $this->setCloudToken( $value );
|
687 |
}
|
688 |
if ( $key == 'brizy-cloud-project' ) {
|
689 |
+
return $this->setCloudProject( $value );
|
690 |
}
|
691 |
|
692 |
return $this->$key = $value;
|
693 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
}
|
695 |
|
696 |
|
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.1
|
6 |
Requires PHP: 5.4
|
7 |
-
Stable tag: 1.0.
|
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.70 - 2019-04-18 =
|
143 |
* New: Box Shadow option for Icon, Image, Video, Map, Column, Row
|
144 |
* New: Hover transition option for Image
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.1
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 1.0.71
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 1.0.71 - 2019-04-18 =
|
143 |
+
* Fixed: Activate license form
|
144 |
+
|
145 |
= 1.0.70 - 2019-04-18 =
|
146 |
* New: Box Shadow option for Icon, Image, Video, Map, Column, Row
|
147 |
* New: Hover transition option for Image
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit9dc301f2cbfac29a63dbf80533ef3ebd::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitbc4dc972b33e45436c6e001b1a6566bb
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
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\
|
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 ComposerAutoloaderInit9dc301f2cbfac29a63dbf80533ef3ebd
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit9dc301f2cbfac29a63dbf80533ef3ebd', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit9dc301f2cbfac29a63dbf80533ef3ebd', '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\ComposerStaticInit9dc301f2cbfac29a63dbf80533ef3ebd::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
|
8 |
{
|
9 |
public static $prefixesPsr0 = array (
|
10 |
'T' =>
|
@@ -19,7 +19,7 @@ class ComposerStaticInitbc4dc972b33e45436c6e001b1a6566bb
|
|
19 |
public static function getInitializer(ClassLoader $loader)
|
20 |
{
|
21 |
return \Closure::bind(function () use ($loader) {
|
22 |
-
$loader->prefixesPsr0 =
|
23 |
|
24 |
}, null, ClassLoader::class);
|
25 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit9dc301f2cbfac29a63dbf80533ef3ebd
|
8 |
{
|
9 |
public static $prefixesPsr0 = array (
|
10 |
'T' =>
|
19 |
public static function getInitializer(ClassLoader $loader)
|
20 |
{
|
21 |
return \Closure::bind(function () use ($loader) {
|
22 |
+
$loader->prefixesPsr0 = ComposerStaticInit9dc301f2cbfac29a63dbf80533ef3ebd::$prefixesPsr0;
|
23 |
|
24 |
}, null, ClassLoader::class);
|
25 |
}
|