Version Description
- 2019-03-06 =
- Fixed: Fixed the image cropper
Download this release
Release Info
Developer | themefusecom |
Plugin | Brizy – Page Builder |
Version | 1.0.63 |
Comparing to | |
See all releases |
Code changes from version 1.0.62 to 1.0.63
- README.md +4 -1
- brizy.php +2 -2
- editor/crop-cache-media.php +3 -3
- readme.txt +4 -1
- 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: 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 |
|
@@ -118,6 +118,9 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
|
|
118 |
|
119 |
## Changelog
|
120 |
|
|
|
|
|
|
|
121 |
### 1.0.62 - 2019-03-06 ###
|
122 |
* New: Border Styles on mobile and tablet for all containers (Sections, Row, Column)
|
123 |
* New: Added wp language placeholder
|
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.63<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.63 - 2019-03-06 ###
|
122 |
+
* Fixed: Fixed the image cropper
|
123 |
+
|
124 |
### 1.0.62 - 2019-03-06 ###
|
125 |
* New: Border Styles on mobile and tablet for all containers (Sections, Row, Column)
|
126 |
* New: Added wp language placeholder
|
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.87' );
|
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.63
|
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.63' );
|
24 |
define( 'BRIZY_EDITOR_VERSION', '1.0.87' );
|
25 |
define( 'BRIZY_FILE', __FILE__ );
|
26 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
editor/crop-cache-media.php
CHANGED
@@ -111,7 +111,7 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
|
|
111 |
// resize image
|
112 |
if ( $media_filter ) {
|
113 |
|
114 |
-
if (
|
115 |
|
116 |
@mkdir( $resized_page_asset_path, 0755, true );
|
117 |
|
@@ -121,7 +121,7 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
|
|
121 |
$closure = function ( $arg ) {
|
122 |
return 100;
|
123 |
};
|
124 |
-
add_filter('jpeg_quality', $closure );
|
125 |
|
126 |
$imagine = $this->crop( $original_asset_path, $media_filter );
|
127 |
|
@@ -132,7 +132,7 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
|
|
132 |
return $resized_image_path;
|
133 |
}
|
134 |
|
135 |
-
remove_filter('jpeg_quality', $closure );
|
136 |
}
|
137 |
}
|
138 |
return $resized_image_path;
|
111 |
// resize image
|
112 |
if ( $media_filter ) {
|
113 |
|
114 |
+
if ( ! file_exists( $resized_image_path ) ) {
|
115 |
|
116 |
@mkdir( $resized_page_asset_path, 0755, true );
|
117 |
|
121 |
$closure = function ( $arg ) {
|
122 |
return 100;
|
123 |
};
|
124 |
+
//add_filter('jpeg_quality', $closure );
|
125 |
|
126 |
$imagine = $this->crop( $original_asset_path, $media_filter );
|
127 |
|
132 |
return $resized_image_path;
|
133 |
}
|
134 |
|
135 |
+
//remove_filter('jpeg_quality', $closure );
|
136 |
}
|
137 |
}
|
138 |
return $resized_image_path;
|
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.62 - 2019-03-06 =
|
143 |
* New: Border Styles on mobile and tablet for all containers (Sections, Row, Column)
|
144 |
* New: Added wp language placeholder
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 1.0.63
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 1.0.63 - 2019-03-06 =
|
143 |
+
* Fixed: Fixed the image cropper
|
144 |
+
|
145 |
= 1.0.62 - 2019-03-06 =
|
146 |
* New: Border Styles on mobile and tablet for all containers (Sections, Row, Column)
|
147 |
* New: Added wp language placeholder
|
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 ComposerAutoloaderInit974dd796c48f993e9f1fa76ba43f0a15::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 ComposerAutoloaderInit46c4c11726b05eb8608cffc367d8d18c
|
|
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 ComposerAutoloaderInit46c4c11726b05eb8608cffc367d8d18c
|
|
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 ComposerAutoloaderInit974dd796c48f993e9f1fa76ba43f0a15
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit974dd796c48f993e9f1fa76ba43f0a15', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit974dd796c48f993e9f1fa76ba43f0a15', '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\ComposerStaticInit974dd796c48f993e9f1fa76ba43f0a15::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\ComposerStaticInit974dd796c48f993e9f1fa76ba43f0a15::$files;
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
+
composerRequire974dd796c48f993e9f1fa76ba43f0a15($fileIdentifier, $file);
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
+
function composerRequire974dd796c48f993e9f1fa76ba43f0a15($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 |
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
|
@@ -45,9 +45,9 @@ class ComposerStaticInit46c4c11726b05eb8608cffc367d8d18c
|
|
45 |
public static function getInitializer(ClassLoader $loader)
|
46 |
{
|
47 |
return \Closure::bind(function () use ($loader) {
|
48 |
-
$loader->prefixLengthsPsr4 =
|
49 |
-
$loader->prefixDirsPsr4 =
|
50 |
-
$loader->prefixesPsr0 =
|
51 |
|
52 |
}, null, ClassLoader::class);
|
53 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit974dd796c48f993e9f1fa76ba43f0a15
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
|
45 |
public static function getInitializer(ClassLoader $loader)
|
46 |
{
|
47 |
return \Closure::bind(function () use ($loader) {
|
48 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit974dd796c48f993e9f1fa76ba43f0a15::$prefixLengthsPsr4;
|
49 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit974dd796c48f993e9f1fa76ba43f0a15::$prefixDirsPsr4;
|
50 |
+
$loader->prefixesPsr0 = ComposerStaticInit974dd796c48f993e9f1fa76ba43f0a15::$prefixesPsr0;
|
51 |
|
52 |
}, null, ClassLoader::class);
|
53 |
}
|