diff --git a/CHANGELOG.md b/CHANGELOG.md index 1134def3..63daf7cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +#### [Version 3.11.0](https://github.com/Codeinwp/optimole-wp/compare/v3.10.0...v3.11.0) (2023-11-15) + +### New Features + +- **Image Optimization for ICO Files**: Added support for optimizing ICO files, ensuring that these can benefit from Optimoles optimization capabilities. +- **Toast Notifications in Optimole Dashboard**: Introduced a toast notifications system within the Optimole dashboard, informing users when settings are saved. +- **Offload Images Without Database Replacement**: Images are now offloaded without the need to perform a database replacement, improving the speed of the process and reducing complexity. +- **Logging for Offloading Process**: Implemented logging for the image offloading process, allowing users to track progress more effectively. +- **Faster Zip Generation Routine**: Optimized the zip files generation routine from the Optimole Dashboard, making it faster and more efficient. Additionally, split the Zip files per each source website when downloading images, providing a smoother experience. +- **Motion.page Compatibility**: Addressed compatibility issues to ensure smooth integration with the Motion.page. + +### Improvements + +- **Remove Redundant Setting**: Removed redundant settings related to resizing large images from the original source, simplifying the user interface. +- **Review of Settings Descriptions and Documentation**: Reviewed and refined settings descriptions and documentation to make it easier for users to understand what each setting does, and to configure Optimole to their specific needs. +- **Beaver Builder Compatibility with Cloud Library**: Optimoles Cloud Library is now compatible with Beaver Builder, allowing users to import and use images from their Optimole account. +- **Progress Bar Design Consistency**: Refined the design of progress bars for a more consistent and polished user interface. + +### Bug Fixes + +- **Scheduled Crons Removal During Uninstall**: Fixed an issue where scheduled cron jobs were not being removed when uninstalling Optimole. +- **Cloud Library in Safari**: Resolved an issue where the Cloud Library was not functioning correctly in Safari. +- **Guidance on Third-Party Cookies for Cloud Library**: Added instructions on how to allow third-party cookies to ensure seamless functionality of the Cloud Library. + #### [Version 3.10.0](https://github.com/Codeinwp/optimole-wp/compare/v3.9.2...v3.10.0) (2023-09-18) ### New Features diff --git a/optimole-wp.php b/optimole-wp.php index 49f963b1..5bf48fdf 100644 --- a/optimole-wp.php +++ b/optimole-wp.php @@ -2,7 +2,7 @@ /** * Plugin Name: Image optimization service by Optimole * Description: Complete handling of your website images. - * Version: 3.10.0 + * Version: 3.11.0 * Author: Optimole * Author URI: https://optimole.com * License: GPL-2.0+ @@ -74,7 +74,7 @@ function optml() { } define( 'OPTML_URL', plugin_dir_url( __FILE__ ) ); define( 'OPTML_PATH', plugin_dir_path( __FILE__ ) ); - define( 'OPTML_VERSION', '3.10.0' ); + define( 'OPTML_VERSION', '3.11.0' ); define( 'OPTML_NAMESPACE', 'optml' ); define( 'OPTML_BASEFILE', __FILE__ ); // Fallback for old PHP versions when this constant is not defined. diff --git a/package-lock.json b/package-lock.json index 25516e09..a1580a83 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "3.10.0", + "version": "3.11.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9bbe4d1e..f1ea3826 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "3.10.0", + "version": "3.11.0", "description": "Cloud-based image optimization service - WordPress Integration", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 5945a324..76fabec8 100755 --- a/readme.txt +++ b/readme.txt @@ -148,6 +148,33 @@ Discover how to make the most of Otter Blocks with our detailed and user-friendl == Changelog == +#### [Version 3.11.0](https://github.com/Codeinwp/optimole-wp/compare/v3.10.0...v3.11.0) (2023-11-15) + +### New Features + +- **Image Optimization for ICO Files**: Added support for optimizing ICO files, ensuring that these can benefit from Optimoles optimization capabilities. +- **Toast Notifications in Optimole Dashboard**: Introduced a toast notifications system within the Optimole dashboard, informing users when settings are saved. +- **Offload Images Without Database Replacement**: Images are now offloaded without the need to perform a database replacement, improving the speed of the process and reducing complexity. +- **Logging for Offloading Process**: Implemented logging for the image offloading process, allowing users to track progress more effectively. +- **Faster Zip Generation Routine**: Optimized the zip files generation routine from the Optimole Dashboard, making it faster and more efficient. Additionally, split the Zip files per each source website when downloading images, providing a smoother experience. +- **Motion.page Compatibility**: Addressed compatibility issues to ensure smooth integration with the Motion.page. + +### Improvements + +- **Remove Redundant Setting**: Removed redundant settings related to resizing large images from the original source, simplifying the user interface. +- **Review of Settings Descriptions and Documentation**: Reviewed and refined settings descriptions and documentation to make it easier for users to understand what each setting does, and to configure Optimole to their specific needs. +- **Beaver Builder Compatibility with Cloud Library**: Optimoles Cloud Library is now compatible with Beaver Builder, allowing users to import and use images from their Optimole account. +- **Progress Bar Design Consistency**: Refined the design of progress bars for a more consistent and polished user interface. + +### Bug Fixes + +- **Scheduled Crons Removal During Uninstall**: Fixed an issue where scheduled cron jobs were not being removed when uninstalling Optimole. +- **Cloud Library in Safari**: Resolved an issue where the Cloud Library was not functioning correctly in Safari. +- **Guidance on Third-Party Cookies for Cloud Library**: Added instructions on how to allow third-party cookies to ensure seamless functionality of the Cloud Library. + + + + #### [Version 3.10.0](https://github.com/Codeinwp/optimole-wp/compare/v3.9.2...v3.10.0) (2023-09-18) ### New Features