Version Description
- 2018-09-10 =
- Fixed: Brizy templates preview when the user was not logged in
Download this release
Release Info
Developer | themefusecom |
Plugin | Brizy – Page Builder |
Version | 1.0.28 |
Comparing to | |
See all releases |
Code changes from version 1.0.27 to 1.0.28
- README.md +4 -1
- admin/templates.php +0 -4
- brizy.php +2 -2
- editor/post.php +4 -1
- 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: 4.9<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 |
|
@@ -96,6 +96,9 @@ A good bug report includes full details to easily understand the issue you are h
|
|
96 |
|
97 |
## Changelog
|
98 |
|
|
|
|
|
|
|
99 |
### 1.0.27 - 2018-09-06 ###
|
100 |
* Improved: CSS transition for Section padding resizer
|
101 |
* Improved: Show a special overlay for unsupported browsers instead of loading the editor
|
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.28<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.28 - 2018-09-10 ###
|
100 |
+
* Fixed: Brizy templates preview when the user was not logged in
|
101 |
+
|
102 |
### 1.0.27 - 2018-09-06 ###
|
103 |
* Improved: CSS transition for Section padding resizer
|
104 |
* Improved: Show a special overlay for unsupported browsers instead of loading the editor
|
admin/templates.php
CHANGED
@@ -38,10 +38,6 @@ class Brizy_Admin_Templates {
|
|
38 |
*/
|
39 |
protected function __construct() {
|
40 |
|
41 |
-
if ( ! Brizy_Editor::is_user_allowed() ) {
|
42 |
-
return;
|
43 |
-
}
|
44 |
-
|
45 |
self::registerCustomPostTemplate();
|
46 |
|
47 |
add_action( 'wp_loaded', array( $this, 'initializeActions' ) );
|
38 |
*/
|
39 |
protected function __construct() {
|
40 |
|
|
|
|
|
|
|
|
|
41 |
self::registerCustomPostTemplate();
|
42 |
|
43 |
add_action( 'wp_loaded', array( $this, 'initializeActions' ) );
|
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
|
@@ -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.
|
24 |
define( 'BRIZY_EDITOR_VERSION', '1.0.54' );
|
25 |
define( 'BRIZY_FILE', __FILE__ );
|
26 |
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.28
|
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.28' );
|
24 |
define( 'BRIZY_EDITOR_VERSION', '1.0.54' );
|
25 |
define( 'BRIZY_FILE', __FILE__ );
|
26 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
editor/post.php
CHANGED
@@ -242,6 +242,7 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
|
|
242 |
}
|
243 |
|
244 |
public function convertToOptionValue() {
|
|
|
245 |
return array(
|
246 |
'compiled_html' => $this->get_compiled_html(),
|
247 |
'compiled_html_body' => $this->get_compiled_html_body(),
|
@@ -615,7 +616,9 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
|
|
615 |
}
|
616 |
|
617 |
/**
|
618 |
-
* @
|
|
|
|
|
619 |
*/
|
620 |
public function set_uses_editor( $val ) {
|
621 |
$this->uses_editor = $val;
|
242 |
}
|
243 |
|
244 |
public function convertToOptionValue() {
|
245 |
+
|
246 |
return array(
|
247 |
'compiled_html' => $this->get_compiled_html(),
|
248 |
'compiled_html_body' => $this->get_compiled_html_body(),
|
616 |
}
|
617 |
|
618 |
/**
|
619 |
+
* @param $val
|
620 |
+
*
|
621 |
+
* @return $this
|
622 |
*/
|
623 |
public function set_uses_editor( $val ) {
|
624 |
$this->uses_editor = $val;
|
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: 4.9
|
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.27 - 2018-09-06 =
|
143 |
* Improved: CSS transition for Section padding resizer
|
144 |
* Improved: Show a special overlay for unsupported browsers instead of loading the editor
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 1.0.28
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 1.0.28 - 2018-09-10 =
|
143 |
+
* Fixed: Brizy templates preview when the user was not logged in
|
144 |
+
|
145 |
= 1.0.27 - 2018-09-06 =
|
146 |
* Improved: CSS transition for Section padding resizer
|
147 |
* Improved: Show a special overlay for unsupported browsers instead of loading the editor
|
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 ComposerAutoloaderInitc30703e3748fbb28d3eb2a0ab3806328::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 ComposerAutoloaderInit4dd464a81acde46addcc67bc107fdb8d
|
|
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 ComposerAutoloaderInitc30703e3748fbb28d3eb2a0ab3806328
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitc30703e3748fbb28d3eb2a0ab3806328', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitc30703e3748fbb28d3eb2a0ab3806328', '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\ComposerStaticInitc30703e3748fbb28d3eb2a0ab3806328::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 ComposerStaticInit4dd464a81acde46addcc67bc107fdb8d
|
|
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 ComposerStaticInitc30703e3748fbb28d3eb2a0ab3806328
|
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 = ComposerStaticInitc30703e3748fbb28d3eb2a0ab3806328::$prefixesPsr0;
|
23 |
|
24 |
}, null, ClassLoader::class);
|
25 |
}
|