Version Description
- 2020-01-20 =
- Fixed: Send mail for Wordpress form integration
Download this release
Release Info
Developer | themefusecom |
Plugin | Brizy – Page Builder |
Version | 1.0.110 |
Comparing to | |
See all releases |
Code changes from version 1.0.109 to 1.0.110
- README.md +8 -1
- brizy.php +3 -3
- editor/forms/wordpress-integration.php +2 -2
- readme.txt +13 -6
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
README.md
CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
|
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.3.2<br>
|
5 |
Requires PHP: 5.6<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.109 - 2020-01-16 ###
|
122 |
* New: Forms added new Fields
|
123 |
* New: SVG Upload Feature
|
@@ -134,6 +137,10 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
|
|
134 |
* Fixes: Incompatibility with Unicon core plugin
|
135 |
* Fixes: Remove unnecessary SEO, Social entries
|
136 |
|
|
|
|
|
|
|
|
|
137 |
### 1.0.107 - 2019-12-11 ###
|
138 |
* Fixed: Compile if there is no autosave post on vew page
|
139 |
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.3.2<br>
|
5 |
Requires PHP: 5.6<br>
|
6 |
+
Stable tag: 1.0.110<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.110 - 2020-01-20 ###
|
122 |
+
* Fixed: Send mail for Wordpress form integration
|
123 |
+
|
124 |
### 1.0.109 - 2020-01-16 ###
|
125 |
* New: Forms added new Fields
|
126 |
* New: SVG Upload Feature
|
137 |
* Fixes: Incompatibility with Unicon core plugin
|
138 |
* Fixes: Remove unnecessary SEO, Social entries
|
139 |
|
140 |
+
### 1.0.108 - 2019-12-18 ###
|
141 |
+
* Fixed: Editor config cache
|
142 |
+
* Fixed: Compilation and save post
|
143 |
+
|
144 |
### 1.0.107 - 2019-12-11 ###
|
145 |
* Fixed: Compile if there is no autosave post on vew page
|
146 |
|
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', '126-wp' );
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
@@ -79,4 +79,4 @@ function brizy_clean() {
|
|
79 |
add_option('brizy-regenerate-permalinks',1 );
|
80 |
}
|
81 |
|
82 |
-
new Brizy_Compatibilities_Init();
|
5 |
* Plugin URI: https://brizy.io/
|
6 |
* Author: Brizy.io
|
7 |
* Author URI: https://brizy.io/
|
8 |
+
* Version: 1.0.110
|
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.110' );
|
23 |
define( 'BRIZY_EDITOR_VERSION', '126-wp' );
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
79 |
add_option('brizy-regenerate-permalinks',1 );
|
80 |
}
|
81 |
|
82 |
+
new Brizy_Compatibilities_Init();
|
editor/forms/wordpress-integration.php
CHANGED
@@ -106,7 +106,7 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
|
|
106 |
}
|
107 |
|
108 |
return wp_mail(
|
109 |
-
|
110 |
$this->getSubject(),
|
111 |
$email_body,
|
112 |
$headers
|
@@ -419,4 +419,4 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
|
|
419 |
|
420 |
return $instance;
|
421 |
}
|
422 |
-
}
|
106 |
}
|
107 |
|
108 |
return wp_mail(
|
109 |
+
$this->getEmailTo(),
|
110 |
$this->getSubject(),
|
111 |
$email_body,
|
112 |
$headers
|
419 |
|
420 |
return $instance;
|
421 |
}
|
422 |
+
}
|
readme.txt
CHANGED
@@ -4,13 +4,13 @@ Tags: brizy, page builder, editor, visual editor, unyson, wysiwyg, landing page,
|
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.3.2
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
Creating WordPress pages should be fast & easy. Brizy is a new and innovative way of building WordPress pages visually. No designer or developer skills required. The only tools you'll need to master are clicks and drags.
|
12 |
|
13 |
-
More details on: https://brizy.io
|
14 |
|
15 |
|
16 |
== Description ==
|
@@ -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.109 - 2020-01-16 =
|
143 |
* New: Forms added new Fields
|
144 |
* New: SVG Upload Feature
|
@@ -155,6 +158,10 @@ The progress you're making while building your page is always backed up in the c
|
|
155 |
* Fixes: Incompatibility with Unicon core plugin
|
156 |
* Fixes: Remove unnecessary SEO, Social entries
|
157 |
|
|
|
|
|
|
|
|
|
158 |
= 1.0.107 - 2019-12-11 =
|
159 |
* Fixed: Compile if there is no autosave post on vew page
|
160 |
|
@@ -472,7 +479,7 @@ The progress you're making while building your page is always backed up in the c
|
|
472 |
* Fixed: Check every request for multiple urls by Brizy_Editor_Http_Response
|
473 |
* Fixed: Changed signature of do_action of register API methods brizy_register_api_methods
|
474 |
* Fixed: Added config texts filter
|
475 |
-
* Fixed: Version check for Gutenberg compatibility
|
476 |
|
477 |
= 1.0.54 - 2019-01-11 =
|
478 |
* New: Added block screenshots in browsers that support it
|
@@ -631,7 +638,7 @@ The progress you're making while building your page is always backed up in the c
|
|
631 |
* Fixed: The conflict with Live composer builder
|
632 |
* Fixed: The conflict with Wp copyright plugin
|
633 |
* Fixed: The insert content filter
|
634 |
-
* Fixed: Changed the UrlBuilder and CromMedia classe to depend on post id
|
635 |
* Fixed: Filter the texonomies that does not have any terms
|
636 |
* Fixed: Image crop on dynamic content placeholders
|
637 |
|
@@ -722,7 +729,7 @@ The progress you're making while building your page is always backed up in the c
|
|
722 |
* Fixed: Corrected Countdown preview bug
|
723 |
* Fixed: Corrected Form integration url
|
724 |
* Fixed: Fixed the upload urls
|
725 |
-
* Fixed: Fixed https value in
|
726 |
* Fixed: Other minor bugs
|
727 |
|
728 |
= 1.0.18 - 2018-06-28 =
|
@@ -731,7 +738,7 @@ The progress you're making while building your page is always backed up in the c
|
|
731 |
= 1.0.17 - 2018-06-27 =
|
732 |
* Fixed: Form email field validation
|
733 |
* Fixed: Section auto generated ids anchor problems
|
734 |
-
* Fixed: Video not being able to go full screen
|
735 |
* Fixed: Other minor bugs
|
736 |
|
737 |
= 1.0.16 - 2018-06-25 =
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.3.2
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 1.0.110
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
Creating WordPress pages should be fast & easy. Brizy is a new and innovative way of building WordPress pages visually. No designer or developer skills required. The only tools you'll need to master are clicks and drags.
|
12 |
|
13 |
+
More details on: https://brizy.io
|
14 |
|
15 |
|
16 |
== Description ==
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 1.0.110 - 2020-01-20 =
|
143 |
+
* Fixed: Send mail for Wordpress form integration
|
144 |
+
|
145 |
= 1.0.109 - 2020-01-16 =
|
146 |
* New: Forms added new Fields
|
147 |
* New: SVG Upload Feature
|
158 |
* Fixes: Incompatibility with Unicon core plugin
|
159 |
* Fixes: Remove unnecessary SEO, Social entries
|
160 |
|
161 |
+
= 1.0.108 - 2019-12-18 =
|
162 |
+
* Fixed: Editor config cache
|
163 |
+
* Fixed: Compilation and save post
|
164 |
+
|
165 |
= 1.0.107 - 2019-12-11 =
|
166 |
* Fixed: Compile if there is no autosave post on vew page
|
167 |
|
479 |
* Fixed: Check every request for multiple urls by Brizy_Editor_Http_Response
|
480 |
* Fixed: Changed signature of do_action of register API methods brizy_register_api_methods
|
481 |
* Fixed: Added config texts filter
|
482 |
+
* Fixed: Version check for Gutenberg compatibility
|
483 |
|
484 |
= 1.0.54 - 2019-01-11 =
|
485 |
* New: Added block screenshots in browsers that support it
|
638 |
* Fixed: The conflict with Live composer builder
|
639 |
* Fixed: The conflict with Wp copyright plugin
|
640 |
* Fixed: The insert content filter
|
641 |
+
* Fixed: Changed the UrlBuilder and CromMedia classe to depend on post id
|
642 |
* Fixed: Filter the texonomies that does not have any terms
|
643 |
* Fixed: Image crop on dynamic content placeholders
|
644 |
|
729 |
* Fixed: Corrected Countdown preview bug
|
730 |
* Fixed: Corrected Form integration url
|
731 |
* Fixed: Fixed the upload urls
|
732 |
+
* Fixed: Fixed https value in
|
733 |
* Fixed: Other minor bugs
|
734 |
|
735 |
= 1.0.18 - 2018-06-28 =
|
738 |
= 1.0.17 - 2018-06-27 =
|
739 |
* Fixed: Form email field validation
|
740 |
* Fixed: Section auto generated ids anchor problems
|
741 |
+
* Fixed: Video not being able to go full screen
|
742 |
* Fixed: Other minor bugs
|
743 |
|
744 |
= 1.0.16 - 2018-06-25 =
|
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 ComposerAutoloaderInitcc9dba842fe3a7d5788433fa611c8499::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 ComposerAutoloaderInitb6c87323b7451a716a923cda85748676
|
|
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) {
|
@@ -48,19 +48,19 @@ class ComposerAutoloaderInitb6c87323b7451a716a923cda85748676
|
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
-
$includeFiles = Composer\Autoload\
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
-
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
function
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitcc9dba842fe3a7d5788433fa611c8499
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitcc9dba842fe3a7d5788433fa611c8499', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitcc9dba842fe3a7d5788433fa611c8499', '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\ComposerStaticInitcc9dba842fe3a7d5788433fa611c8499::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\ComposerStaticInitcc9dba842fe3a7d5788433fa611c8499::$files;
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
+
composerRequirecc9dba842fe3a7d5788433fa611c8499($fileIdentifier, $file);
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
+
function composerRequirecc9dba842fe3a7d5788433fa611c8499($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
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'8ec4222c68e580a23520eef4abe4380f' => __DIR__ . '/..' . '/shortpixel/shortpixel-php/lib/ShortPixel.php',
|
@@ -60,9 +60,9 @@ class ComposerStaticInitb6c87323b7451a716a923cda85748676
|
|
60 |
public static function getInitializer(ClassLoader $loader)
|
61 |
{
|
62 |
return \Closure::bind(function () use ($loader) {
|
63 |
-
$loader->prefixLengthsPsr4 =
|
64 |
-
$loader->prefixDirsPsr4 =
|
65 |
-
$loader->prefixesPsr0 =
|
66 |
|
67 |
}, null, ClassLoader::class);
|
68 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInitcc9dba842fe3a7d5788433fa611c8499
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'8ec4222c68e580a23520eef4abe4380f' => __DIR__ . '/..' . '/shortpixel/shortpixel-php/lib/ShortPixel.php',
|
60 |
public static function getInitializer(ClassLoader $loader)
|
61 |
{
|
62 |
return \Closure::bind(function () use ($loader) {
|
63 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitcc9dba842fe3a7d5788433fa611c8499::$prefixLengthsPsr4;
|
64 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitcc9dba842fe3a7d5788433fa611c8499::$prefixDirsPsr4;
|
65 |
+
$loader->prefixesPsr0 = ComposerStaticInitcc9dba842fe3a7d5788433fa611c8499::$prefixesPsr0;
|
66 |
|
67 |
}, null, ClassLoader::class);
|
68 |
}
|