PluginProbe
Image Optimizer – Compress Images and Convert to WebP or AVIF / 1.7.7
Image Optimizer – Compress Images and Convert to WebP or AVIF v1.7.7
1.7.7 1.7.6 1.7.5 1.7.4 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 All 33 releases
← All changes | vendor/elementor/wp-one-package/runner.php +6 -6 1.7.4 → 1.7.7 View file →
@@ -29,12 +29,12 @@
29 29 }
30 30
31 31 $pattern = '#/([^/]+)/vendor/elementor/#';
32 32 if ( preg_match( $pattern, __DIR__, $matches ) ) {
33 - $wp_one_package_versions[ $matches[1] ] = '1.0.59';
33 + $wp_one_package_versions[ $matches[1] ] = '1.0.66';
34 34 }
35 35
36 -if ( ! function_exists( 'elementor_one_register_1_dot_0_dot_59' ) && function_exists( 'add_action' ) ) {
36 +if ( ! function_exists( 'elementor_one_register_1_dot_0_dot_66' ) && function_exists( 'add_action' ) ) {
37 37
38 38 if ( ! class_exists( '\ElementorOne\Versions', false ) ) {
39 39 require_once __DIR__ . '/src/Versions.php';
40 40 add_action( 'plugins_loaded', [ \ElementorOne\Versions::class, 'initialize_latest_version' ], -15, 0 );
@@ -39,16 +39,16 @@
39 39 require_once __DIR__ . '/src/Versions.php';
40 40 add_action( 'plugins_loaded', [ \ElementorOne\Versions::class, 'initialize_latest_version' ], -15, 0 );
41 41 }
42 42
43 - add_action( 'plugins_loaded', 'elementor_one_register_1_dot_0_dot_59', -20, 0 );
43 + add_action( 'plugins_loaded', 'elementor_one_register_1_dot_0_dot_66', -20, 0 );
44 44
45 - function elementor_one_register_1_dot_0_dot_59() {
45 + function elementor_one_register_1_dot_0_dot_66() {
46 46 $versions = \ElementorOne\Versions::instance();
47 - $versions->register( '1.0.59', 'elementor_one_initialize_1_dot_0_dot_59' );
47 + $versions->register( '1.0.66', 'elementor_one_initialize_1_dot_0_dot_66' );
48 48 }
49 49
50 - function elementor_one_initialize_1_dot_0_dot_59() {
50 + function elementor_one_initialize_1_dot_0_dot_66() {
51 51 // The Loader class will be autoloaded from the highest version source
52 52 \ElementorOne\Loader::init();
53 53 }
54 54 }