Changeset 3222687
- Timestamp:
- 01/15/2025 08:45:11 AM (13 months ago)
- Location:
- brizy
- Files:
-
- 10 edited
- 1 copied
-
tags/2.6.6 (copied) (copied from brizy/trunk)
-
tags/2.6.6/README.md (modified) (2 diffs)
-
tags/2.6.6/brizy.php (modified) (2 diffs)
-
tags/2.6.6/languages/brizy.pot (modified) (3 diffs)
-
tags/2.6.6/readme.txt (modified) (2 diffs)
-
tags/2.6.6/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/README.md (modified) (2 diffs)
-
trunk/brizy.php (modified) (2 diffs)
-
trunk/languages/brizy.pot (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
brizy/tags/2.6.6/README.md
r3222672 r3222687 5 5 Tested up to: 6.7.1<br> 6 6 Requires PHP: 7.2.24<br> 7 Stable tag: 2.6. 5<br>7 Stable tag: 2.6.6<br> 8 8 License: GPLv3<br> 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 137 137 ## Changelog 138 138 139 ### 2.6.5 - 2025-01-15 140 * New: Collapsible tabs in add elements in left sidebar 141 * New: Possibility to register custom tabs in left sidebar for third party 142 * Improved: CSS generator returns less CSS 143 * Improved: CSS generator generates less dynamic classNames 144 * Improved: Editor codebase 145 * Fixed: Effects stops when toolbar open on section 146 * Fixed: Conflicting styles with Astra theme 147 * Fixed: Alignment of icon in IconBox element 148 * Fixed: Images does not load in preview 149 * Fixed: Translation for slideshow positions 150 * Fixed: Image size in lightbox 151 * Fixed: Update button status when a global popup is added 152 * Fixed: Section overlay color with slideshow option 153 * Fixed: Motion option default value for third party 154 * Fixed: Input sanitization 155 * Fixed: Unable to add image to Brizy pages on GoDaddy 139 ### 2.6.6 - 2025-01-15 140 * Fixed: Image side load 156 141 157 142 ### 2.6.4 - 2024-12-17 -
brizy/tags/2.6.6/brizy.php
r3222672 r3222687 6 6 * Author: Brizy.io 7 7 * Author URI: https://brizy.io/ 8 * Version: 2.6. 58 * Version: 2.6.6 9 9 * Text Domain: brizy 10 10 * License: GPLv3 … … 14 14 * This will fix the url protocol for websites that are working behind a load balancer 15 15 */ 16 if ( isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && stripos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false) {17 $_SERVER['HTTPS'] = 'on';16 if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FORWARDED_PROTO'], 'https' ) !== false ) { 17 $_SERVER['HTTPS'] = 'on'; 18 18 } 19 19 20 define( 'BRIZY_DEVELOPMENT', false );21 define( 'BRIZY_LOG', false );22 define( 'BRIZY_VERSION', '2.6.5');23 define( 'BRIZY_MINIMUM_PRO_VERSION', '2.4.15');24 define( 'BRIZY_MINIMUM_COMPILER_VERSION', '300-wp');25 define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '303-wp' );26 define( 'BRIZY_SYNC_VERSION', '303');27 define( 'BRIZY_FILE', __FILE__);28 define( 'BRIZY_PLUGIN_BASE', plugin_basename(BRIZY_FILE));29 define( 'BRIZY_PLUGIN_PATH', dirname(BRIZY_FILE));30 define( 'BRIZY_PLUGIN_URL', rtrim(plugin_dir_url(BRIZY_FILE), "/"));31 define( 'BRIZY_MAX_REVISIONS_TO_KEEP', 30);20 define( 'BRIZY_DEVELOPMENT', false ); 21 define( 'BRIZY_LOG', false ); 22 define( 'BRIZY_VERSION', '2.6.6' ); 23 define( 'BRIZY_MINIMUM_PRO_VERSION', '2.4.15' ); 24 define( 'BRIZY_MINIMUM_COMPILER_VERSION', '300-wp' ); 25 define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '303-wp' ); 26 define( 'BRIZY_SYNC_VERSION', '303' ); 27 define( 'BRIZY_FILE', __FILE__ ); 28 define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) ); 29 define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) ); 30 define( 'BRIZY_PLUGIN_URL', rtrim( plugin_dir_url( BRIZY_FILE ), "/" ) ); 31 define( 'BRIZY_MAX_REVISIONS_TO_KEEP', 30 ); 32 32 33 include_once rtrim(BRIZY_PLUGIN_PATH, "/").'/autoload.php'; 34 include_once rtrim(BRIZY_PLUGIN_PATH, "/").'/languages/main.php'; 33 include_once rtrim( BRIZY_PLUGIN_PATH, "/" ) . '/autoload.php'; 34 include_once rtrim( BRIZY_PLUGIN_PATH, "/" ) . '/languages/main.php'; 35 require_once( ABSPATH . '/wp-admin/includes/file.php' ); 36 require_once( ABSPATH . '/wp-admin/includes/media.php' ); 37 require_once( ABSPATH . '/wp-admin/includes/image.php' ); 35 38 36 if ( BRIZY_DEVELOPMENT) {37 $dotenv = new \Symfony\Component\Dotenv\Dotenv('APP_ENV');38 $dotenv->load(__DIR__.'/.env');39 if ( BRIZY_DEVELOPMENT ) { 40 $dotenv = new \Symfony\Component\Dotenv\Dotenv( 'APP_ENV' ); 41 $dotenv->load( __DIR__ . '/.env' ); 39 42 } 40 43 41 add_action( 'plugins_loaded', 'brizy_load');42 add_action( 'init', 'brizy_load_text_domain');43 add_action( 'upgrader_process_complete', 'brizy_upgrade_completed', 10, 2);44 add_action( 'activated_plugin', 'Brizy_Admin_GettingStarted::redirectAfterActivation');44 add_action( 'plugins_loaded', 'brizy_load' ); 45 add_action( 'init', 'brizy_load_text_domain' ); 46 add_action( 'upgrader_process_complete', 'brizy_upgrade_completed', 10, 2 ); 47 add_action( 'activated_plugin', 'Brizy_Admin_GettingStarted::redirectAfterActivation' ); 45 48 46 register_activation_hook( BRIZY_FILE, 'brizy_install');47 register_deactivation_hook( BRIZY_FILE, 'brizy_clean');49 register_activation_hook( BRIZY_FILE, 'brizy_install' ); 50 register_deactivation_hook( BRIZY_FILE, 'brizy_clean' ); 48 51 49 function brizy_load() 50 { 52 function brizy_load() { 51 53 52 try {53 $instance = Brizy_Editor::get();54 } catch (Exception $e) {55 add_action('admin_notices', 'brizy_fail_notices');54 try { 55 $instance = Brizy_Editor::get(); 56 } catch ( Exception $e ) { 57 add_action( 'admin_notices', 'brizy_fail_notices' ); 56 58 57 return;58 }59 return; 60 } 59 61 60 if (apply_filters('brizy_allow_plugin_included', true)) {61 do_action('brizy_plugin_included');62 }62 if ( apply_filters( 'brizy_allow_plugin_included', true ) ) { 63 do_action( 'brizy_plugin_included' ); 64 } 63 65 } 64 66 65 function brizy_notices() 66 { 67 ?> 67 function brizy_notices() { 68 ?> 68 69 <div class="notice notice-error is-dismissible"> 69 70 <p> 70 <?php71 printf(72 __(73 '%1$s requires PHP version 5.6+, your currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>',74 'brizy'75 ),76 __bt('brizy', 'Brizy'),77 PHP_VERSION,78 strtoupper(__bt('brizy', 'Brizy'))79 );80 ?>71 <?php 72 printf( 73 __( 74 '%1$s requires PHP version 5.6+, your currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>', 75 'brizy' 76 ), 77 __bt( 'brizy', 'Brizy' ), 78 PHP_VERSION, 79 strtoupper( __bt( 'brizy', 'Brizy' ) ) 80 ); 81 ?> 81 82 </p> 82 83 </div> 83 <?php84 <?php 84 85 } 85 86 86 function brizy_fail_notices() 87 { 88 ?> 87 function brizy_fail_notices() { 88 ?> 89 89 <div class="notice notice-error is-dismissible"> 90 90 <p> 91 <?php92 printf(93 __('%1$s failed to start. Please contact the support <a href="%s">here</a>.', 'brizy'),94 __bt('brizy', 'Brizy'),95 apply_filters('brizy_support_url', Brizy_Config::getSupportUrl()),96 strtoupper(__bt('brizy', 'Brizy'))97 );98 ?>91 <?php 92 printf( 93 __( '%1$s failed to start. Please contact the support <a href="%s">here</a>.', 'brizy' ), 94 __bt( 'brizy', 'Brizy' ), 95 apply_filters( 'brizy_support_url', Brizy_Config::getSupportUrl() ), 96 strtoupper( __bt( 'brizy', 'Brizy' ) ) 97 ); 98 ?> 99 99 </p> 100 100 </div> 101 <?php101 <?php 102 102 } 103 103 104 104 105 function brizy_upgrade_completed($upgrader_object, $options) 106 { 107 if ($options['action'] == 'update' && $options['type'] == 'plugin' && isset($options['plugins'])) { 108 foreach ($options['plugins'] as $plugin) { 109 if ($plugin == BRIZY_PLUGIN_BASE) { 110 add_option('brizy-regenerate-permalinks', 1); 111 do_action('brizy-updated'); 112 } 113 } 114 } 105 function brizy_upgrade_completed( $upgrader_object, $options ) { 106 if ( $options['action'] == 'update' && $options['type'] == 'plugin' && isset( $options['plugins'] ) ) { 107 foreach ( $options['plugins'] as $plugin ) { 108 if ( $plugin == BRIZY_PLUGIN_BASE ) { 109 add_option( 'brizy-regenerate-permalinks', 1 ); 110 do_action( 'brizy-updated' ); 111 } 112 } 113 } 115 114 } 116 115 117 function brizy_install() 118 { 119 Brizy_Logger::install(); 120 add_option('brizy-regenerate-permalinks', 1); 121 do_action('brizy-activated'); 122 set_transient('brizy_admin_notice', true, 7200); 116 function brizy_install() { 117 Brizy_Logger::install(); 118 add_option( 'brizy-regenerate-permalinks', 1 ); 119 do_action( 'brizy-activated' ); 120 set_transient( 'brizy_admin_notice', true, 7200 ); 123 121 } 124 122 125 function brizy_clean() 126 { 127 Brizy_Logger::clean(); 128 add_option('brizy-regenerate-permalinks', 1); 129 do_action('brizy-deactivated'); 123 function brizy_clean() { 124 Brizy_Logger::clean(); 125 add_option( 'brizy-regenerate-permalinks', 1 ); 126 do_action( 'brizy-deactivated' ); 130 127 } 131 128 132 function brizy_load_text_domain() 133 { 134 load_plugin_textdomain('brizy', false, dirname(plugin_basename(__FILE__)).'/languages'); 129 function brizy_load_text_domain() { 130 load_plugin_textdomain( 'brizy', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' ); 135 131 } 136 132 -
brizy/tags/2.6.6/languages/brizy.pot
r3222672 r3222687 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Brizy 2.6. 5\n"5 "Project-Id-Version: Brizy 2.6.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/workspace\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-01-15T08: 12:15+00:00\n"12 "POT-Creation-Date: 2025-01-15T08:43:49+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 798 798 msgstr "" 799 799 800 #: brizy.php:7 2800 #: brizy.php:73 801 801 msgid "%1$s requires PHP version 5.6+, your currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>" 802 802 msgstr "" -
brizy/tags/2.6.6/readme.txt
r3222672 r3222687 5 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.2.24 7 Stable tag: 2.6. 57 Stable tag: 2.6.6 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 134 134 == Changelog == 135 135 136 = 2.6.5 - 2025-01-15 = 137 * New: Collapsible tabs in add elements in left sidebar 138 * New: Possibility to register custom tabs in left sidebar for third party 139 * Improved: CSS generator returns less CSS 140 * Improved: CSS generator generates less dynamic classNames 141 * Improved: Editor codebase 142 * Fixed: Effects stops when toolbar open on section 143 * Fixed: Conflicting styles with Astra theme 144 * Fixed: Alignment of icon in IconBox element 145 * Fixed: Images does not load in preview 146 * Fixed: Translation for slideshow positions 147 * Fixed: Image size in lightbox 148 * Fixed: Update button status when a global popup is added 149 * Fixed: Section overlay color with slideshow option 150 * Fixed: Motion option default value for third party 151 * Fixed: Input sanitization 152 * Fixed: Unable to add image to Brizy pages on GoDaddy 136 = 2.6.6 - 2025-01-15 = 137 * Fixed: Image side load 153 138 154 139 = 2.6.4 - 2024-12-17 = -
brizy/tags/2.6.6/vendor/composer/installed.php
r3222672 r3222687 4 4 'pretty_version' => 'dev-develop', 5 5 'version' => 'dev-develop', 6 'reference' => ' c3b7e49a093ef159f8235e95c32b81e0ece8cf10',6 'reference' => '1460cf5adc7bf72fd17083c8aff2107921e324fd', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 43 43 'pretty_version' => 'dev-develop', 44 44 'version' => 'dev-develop', 45 'reference' => ' c3b7e49a093ef159f8235e95c32b81e0ece8cf10',45 'reference' => '1460cf5adc7bf72fd17083c8aff2107921e324fd', 46 46 'type' => 'library', 47 47 'install_path' => __DIR__ . '/../../', -
brizy/trunk/README.md
r3222672 r3222687 5 5 Tested up to: 6.7.1<br> 6 6 Requires PHP: 7.2.24<br> 7 Stable tag: 2.6. 5<br>7 Stable tag: 2.6.6<br> 8 8 License: GPLv3<br> 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 137 137 ## Changelog 138 138 139 ### 2.6.5 - 2025-01-15 140 * New: Collapsible tabs in add elements in left sidebar 141 * New: Possibility to register custom tabs in left sidebar for third party 142 * Improved: CSS generator returns less CSS 143 * Improved: CSS generator generates less dynamic classNames 144 * Improved: Editor codebase 145 * Fixed: Effects stops when toolbar open on section 146 * Fixed: Conflicting styles with Astra theme 147 * Fixed: Alignment of icon in IconBox element 148 * Fixed: Images does not load in preview 149 * Fixed: Translation for slideshow positions 150 * Fixed: Image size in lightbox 151 * Fixed: Update button status when a global popup is added 152 * Fixed: Section overlay color with slideshow option 153 * Fixed: Motion option default value for third party 154 * Fixed: Input sanitization 155 * Fixed: Unable to add image to Brizy pages on GoDaddy 139 ### 2.6.6 - 2025-01-15 140 * Fixed: Image side load 156 141 157 142 ### 2.6.4 - 2024-12-17 -
brizy/trunk/brizy.php
r3222672 r3222687 6 6 * Author: Brizy.io 7 7 * Author URI: https://brizy.io/ 8 * Version: 2.6. 58 * Version: 2.6.6 9 9 * Text Domain: brizy 10 10 * License: GPLv3 … … 14 14 * This will fix the url protocol for websites that are working behind a load balancer 15 15 */ 16 if ( isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && stripos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false) {17 $_SERVER['HTTPS'] = 'on';16 if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FORWARDED_PROTO'], 'https' ) !== false ) { 17 $_SERVER['HTTPS'] = 'on'; 18 18 } 19 19 20 define( 'BRIZY_DEVELOPMENT', false );21 define( 'BRIZY_LOG', false );22 define( 'BRIZY_VERSION', '2.6.5');23 define( 'BRIZY_MINIMUM_PRO_VERSION', '2.4.15');24 define( 'BRIZY_MINIMUM_COMPILER_VERSION', '300-wp');25 define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '303-wp' );26 define( 'BRIZY_SYNC_VERSION', '303');27 define( 'BRIZY_FILE', __FILE__);28 define( 'BRIZY_PLUGIN_BASE', plugin_basename(BRIZY_FILE));29 define( 'BRIZY_PLUGIN_PATH', dirname(BRIZY_FILE));30 define( 'BRIZY_PLUGIN_URL', rtrim(plugin_dir_url(BRIZY_FILE), "/"));31 define( 'BRIZY_MAX_REVISIONS_TO_KEEP', 30);20 define( 'BRIZY_DEVELOPMENT', false ); 21 define( 'BRIZY_LOG', false ); 22 define( 'BRIZY_VERSION', '2.6.6' ); 23 define( 'BRIZY_MINIMUM_PRO_VERSION', '2.4.15' ); 24 define( 'BRIZY_MINIMUM_COMPILER_VERSION', '300-wp' ); 25 define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '303-wp' ); 26 define( 'BRIZY_SYNC_VERSION', '303' ); 27 define( 'BRIZY_FILE', __FILE__ ); 28 define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) ); 29 define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) ); 30 define( 'BRIZY_PLUGIN_URL', rtrim( plugin_dir_url( BRIZY_FILE ), "/" ) ); 31 define( 'BRIZY_MAX_REVISIONS_TO_KEEP', 30 ); 32 32 33 include_once rtrim(BRIZY_PLUGIN_PATH, "/").'/autoload.php'; 34 include_once rtrim(BRIZY_PLUGIN_PATH, "/").'/languages/main.php'; 33 include_once rtrim( BRIZY_PLUGIN_PATH, "/" ) . '/autoload.php'; 34 include_once rtrim( BRIZY_PLUGIN_PATH, "/" ) . '/languages/main.php'; 35 require_once( ABSPATH . '/wp-admin/includes/file.php' ); 36 require_once( ABSPATH . '/wp-admin/includes/media.php' ); 37 require_once( ABSPATH . '/wp-admin/includes/image.php' ); 35 38 36 if ( BRIZY_DEVELOPMENT) {37 $dotenv = new \Symfony\Component\Dotenv\Dotenv('APP_ENV');38 $dotenv->load(__DIR__.'/.env');39 if ( BRIZY_DEVELOPMENT ) { 40 $dotenv = new \Symfony\Component\Dotenv\Dotenv( 'APP_ENV' ); 41 $dotenv->load( __DIR__ . '/.env' ); 39 42 } 40 43 41 add_action( 'plugins_loaded', 'brizy_load');42 add_action( 'init', 'brizy_load_text_domain');43 add_action( 'upgrader_process_complete', 'brizy_upgrade_completed', 10, 2);44 add_action( 'activated_plugin', 'Brizy_Admin_GettingStarted::redirectAfterActivation');44 add_action( 'plugins_loaded', 'brizy_load' ); 45 add_action( 'init', 'brizy_load_text_domain' ); 46 add_action( 'upgrader_process_complete', 'brizy_upgrade_completed', 10, 2 ); 47 add_action( 'activated_plugin', 'Brizy_Admin_GettingStarted::redirectAfterActivation' ); 45 48 46 register_activation_hook( BRIZY_FILE, 'brizy_install');47 register_deactivation_hook( BRIZY_FILE, 'brizy_clean');49 register_activation_hook( BRIZY_FILE, 'brizy_install' ); 50 register_deactivation_hook( BRIZY_FILE, 'brizy_clean' ); 48 51 49 function brizy_load() 50 { 52 function brizy_load() { 51 53 52 try {53 $instance = Brizy_Editor::get();54 } catch (Exception $e) {55 add_action('admin_notices', 'brizy_fail_notices');54 try { 55 $instance = Brizy_Editor::get(); 56 } catch ( Exception $e ) { 57 add_action( 'admin_notices', 'brizy_fail_notices' ); 56 58 57 return;58 }59 return; 60 } 59 61 60 if (apply_filters('brizy_allow_plugin_included', true)) {61 do_action('brizy_plugin_included');62 }62 if ( apply_filters( 'brizy_allow_plugin_included', true ) ) { 63 do_action( 'brizy_plugin_included' ); 64 } 63 65 } 64 66 65 function brizy_notices() 66 { 67 ?> 67 function brizy_notices() { 68 ?> 68 69 <div class="notice notice-error is-dismissible"> 69 70 <p> 70 <?php71 printf(72 __(73 '%1$s requires PHP version 5.6+, your currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>',74 'brizy'75 ),76 __bt('brizy', 'Brizy'),77 PHP_VERSION,78 strtoupper(__bt('brizy', 'Brizy'))79 );80 ?>71 <?php 72 printf( 73 __( 74 '%1$s requires PHP version 5.6+, your currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>', 75 'brizy' 76 ), 77 __bt( 'brizy', 'Brizy' ), 78 PHP_VERSION, 79 strtoupper( __bt( 'brizy', 'Brizy' ) ) 80 ); 81 ?> 81 82 </p> 82 83 </div> 83 <?php84 <?php 84 85 } 85 86 86 function brizy_fail_notices() 87 { 88 ?> 87 function brizy_fail_notices() { 88 ?> 89 89 <div class="notice notice-error is-dismissible"> 90 90 <p> 91 <?php92 printf(93 __('%1$s failed to start. Please contact the support <a href="%s">here</a>.', 'brizy'),94 __bt('brizy', 'Brizy'),95 apply_filters('brizy_support_url', Brizy_Config::getSupportUrl()),96 strtoupper(__bt('brizy', 'Brizy'))97 );98 ?>91 <?php 92 printf( 93 __( '%1$s failed to start. Please contact the support <a href="%s">here</a>.', 'brizy' ), 94 __bt( 'brizy', 'Brizy' ), 95 apply_filters( 'brizy_support_url', Brizy_Config::getSupportUrl() ), 96 strtoupper( __bt( 'brizy', 'Brizy' ) ) 97 ); 98 ?> 99 99 </p> 100 100 </div> 101 <?php101 <?php 102 102 } 103 103 104 104 105 function brizy_upgrade_completed($upgrader_object, $options) 106 { 107 if ($options['action'] == 'update' && $options['type'] == 'plugin' && isset($options['plugins'])) { 108 foreach ($options['plugins'] as $plugin) { 109 if ($plugin == BRIZY_PLUGIN_BASE) { 110 add_option('brizy-regenerate-permalinks', 1); 111 do_action('brizy-updated'); 112 } 113 } 114 } 105 function brizy_upgrade_completed( $upgrader_object, $options ) { 106 if ( $options['action'] == 'update' && $options['type'] == 'plugin' && isset( $options['plugins'] ) ) { 107 foreach ( $options['plugins'] as $plugin ) { 108 if ( $plugin == BRIZY_PLUGIN_BASE ) { 109 add_option( 'brizy-regenerate-permalinks', 1 ); 110 do_action( 'brizy-updated' ); 111 } 112 } 113 } 115 114 } 116 115 117 function brizy_install() 118 { 119 Brizy_Logger::install(); 120 add_option('brizy-regenerate-permalinks', 1); 121 do_action('brizy-activated'); 122 set_transient('brizy_admin_notice', true, 7200); 116 function brizy_install() { 117 Brizy_Logger::install(); 118 add_option( 'brizy-regenerate-permalinks', 1 ); 119 do_action( 'brizy-activated' ); 120 set_transient( 'brizy_admin_notice', true, 7200 ); 123 121 } 124 122 125 function brizy_clean() 126 { 127 Brizy_Logger::clean(); 128 add_option('brizy-regenerate-permalinks', 1); 129 do_action('brizy-deactivated'); 123 function brizy_clean() { 124 Brizy_Logger::clean(); 125 add_option( 'brizy-regenerate-permalinks', 1 ); 126 do_action( 'brizy-deactivated' ); 130 127 } 131 128 132 function brizy_load_text_domain() 133 { 134 load_plugin_textdomain('brizy', false, dirname(plugin_basename(__FILE__)).'/languages'); 129 function brizy_load_text_domain() { 130 load_plugin_textdomain( 'brizy', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' ); 135 131 } 136 132 -
brizy/trunk/languages/brizy.pot
r3222672 r3222687 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Brizy 2.6. 5\n"5 "Project-Id-Version: Brizy 2.6.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/workspace\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-01-15T08: 12:15+00:00\n"12 "POT-Creation-Date: 2025-01-15T08:43:49+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 798 798 msgstr "" 799 799 800 #: brizy.php:7 2800 #: brizy.php:73 801 801 msgid "%1$s requires PHP version 5.6+, your currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>" 802 802 msgstr "" -
brizy/trunk/readme.txt
r3222672 r3222687 5 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.2.24 7 Stable tag: 2.6. 57 Stable tag: 2.6.6 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 134 134 == Changelog == 135 135 136 = 2.6.5 - 2025-01-15 = 137 * New: Collapsible tabs in add elements in left sidebar 138 * New: Possibility to register custom tabs in left sidebar for third party 139 * Improved: CSS generator returns less CSS 140 * Improved: CSS generator generates less dynamic classNames 141 * Improved: Editor codebase 142 * Fixed: Effects stops when toolbar open on section 143 * Fixed: Conflicting styles with Astra theme 144 * Fixed: Alignment of icon in IconBox element 145 * Fixed: Images does not load in preview 146 * Fixed: Translation for slideshow positions 147 * Fixed: Image size in lightbox 148 * Fixed: Update button status when a global popup is added 149 * Fixed: Section overlay color with slideshow option 150 * Fixed: Motion option default value for third party 151 * Fixed: Input sanitization 152 * Fixed: Unable to add image to Brizy pages on GoDaddy 136 = 2.6.6 - 2025-01-15 = 137 * Fixed: Image side load 153 138 154 139 = 2.6.4 - 2024-12-17 = -
brizy/trunk/vendor/composer/installed.php
r3222672 r3222687 4 4 'pretty_version' => 'dev-develop', 5 5 'version' => 'dev-develop', 6 'reference' => ' c3b7e49a093ef159f8235e95c32b81e0ece8cf10',6 'reference' => '1460cf5adc7bf72fd17083c8aff2107921e324fd', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 43 43 'pretty_version' => 'dev-develop', 44 44 'version' => 'dev-develop', 45 'reference' => ' c3b7e49a093ef159f8235e95c32b81e0ece8cf10',45 'reference' => '1460cf5adc7bf72fd17083c8aff2107921e324fd', 46 46 'type' => 'library', 47 47 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.