Skip to content

Commit aa79d4f

Browse files
committed
Merge branch 'development' of https://github.com/codeinwp/optimole-wp into development
2 parents ad1ba9c + 3a69db8 commit aa79d4f

File tree

11 files changed

+36188
-4011
lines changed

11 files changed

+36188
-4011
lines changed

.wordpress-org/banner-1544x500.jpg

-1.64 KB
Loading

.wordpress-org/banner-772x250.jpg

114 KB
Loading

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
##### [Version 3.12.3](https://github.com/Codeinwp/optimole-wp/compare/v3.12.2...v3.12.3) (2024-01-16)
2+
3+
### Enhancements
4+
5+
- **Improve default settings**: Ensure default settings for image optimization and lazyloading are optimal.
6+
7+
##### [Version 3.12.2](https://github.com/Codeinwp/optimole-wp/compare/v3.12.1...v3.12.2) (2024-01-08)
8+
9+
### Bug Fixes
10+
11+
- **Optimization Exclusions Fix**: Resolved an issue where some pages were excluded from optimization due to AJAX requests exclusions.
12+
13+
### Enhancements
14+
15+
- **Lazyloading Menu Item**: Ensure that turning off lazyloading now disables the lazyloading settings menu item in the plugin dashboard.
16+
- **Lazyload Support for Group Blocks**: Added lazyload support for group blocks background for improved performance.
17+
- **Cap Offloading Log**: Capped offloading log read lines to 10,000 for better performance and manageability.
18+
119
##### [Version 3.12.1](https://github.com/Codeinwp/optimole-wp/compare/v3.12.0...v3.12.1) (2023-12-21)
220

321
### Enhancements

inc/admin.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,9 @@ public function update_default_settings() {
241241

242242
$this->settings->update( 'limit_dimensions', 'enabled' );
243243
$this->settings->update( 'lazyload', 'enabled' );
244+
$this->settings->update( 'best_format', 'disabled' );
245+
$this->settings->update( 'skip_lazyload_images', '2' );
246+
$this->settings->update( 'avif', 'disabled' );
244247

245248
update_option( self::NEW_USER_DEFAULTS_UPDATED, 'yes' );
246249
}

optimole-wp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Image optimization service by Optimole
44
* Description: Complete handling of your website images.
5-
* Version: 3.12.1
5+
* Version: 3.12.3
66
* Author: Optimole
77
* Author URI: https://optimole.com
88
* License: GPL-2.0+
@@ -74,7 +74,7 @@ function optml() {
7474
}
7575
define( 'OPTML_URL', plugin_dir_url( __FILE__ ) );
7676
define( 'OPTML_PATH', plugin_dir_path( __FILE__ ) );
77-
define( 'OPTML_VERSION', '3.12.1' );
77+
define( 'OPTML_VERSION', '3.12.3' );
7878
define( 'OPTML_NAMESPACE', 'optml' );
7979
define( 'OPTML_BASEFILE', __FILE__ );
8080
// Fallback for old PHP versions when this constant is not defined.

0 commit comments

Comments
 (0)