Changeset 1860529
- Timestamp:
- 04/18/2018 01:12:53 PM (8 years ago)
- Location:
- octify/trunk
- Files:
-
- 3 edited
-
Libs/OctifyApi.php (modified) (2 diffs)
-
Octify.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
octify/trunk/Libs/OctifyApi.php
r1859904 r1860529 237 237 $imageToProcess = array_filter( $imageToProcess ); 238 238 if ( count( $imageToProcess ) ) { 239 $chunks = array_chunk( $imageToProcess, 10 );239 $chunks = array_chunk( $imageToProcess, 50 ); 240 240 $data = array( 241 241 'success' => array(), … … 341 341 // return; 342 342 // } 343 344 $currentStatus = get_post_meta( $attachmentId, self::META_STATUS, true ); 345 if ( $currentStatus == 'compressed' ) { 346 //wont compress which already compressed 347 return; 348 } 349 343 350 $file = get_attached_file( $attachmentId ); 344 351 if ( ! function_exists( 'download_url' ) ) { -
octify/trunk/Octify.php
r1859904 r1860529 4 4 * Plugin URI: https://octify.io 5 5 * Description: Octify Image Compression for WordPress. 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Author: Octify 8 8 * Author URI: https://octify.io -
octify/trunk/readme.txt
r1859904 r1860529 1 1 === WordPress Image Compression Plugin - Octify === 2 2 Plugin Name: Octify 3 Version: 1.1. 33 Version: 1.1.4 4 4 Author: Octify 5 5 Author URI: https://octify.io/ … … 7 7 Tags: Image Compression, Image Optimisation, resize, optimise, performance, optimize, compress images, optimize images, optimise images, image optimization. 8 8 Tested up to: 4.9.5 9 Stable tag: 1.1. 310 Requires PHP: 5. 2.49 Stable tag: 1.1.4 10 Requires PHP: 5.3 11 11 License: GPLv2 12 12 License URI: License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 141 141 == Changelog == 142 142 143 == 1.1.3 == 143 = 1.1.4 = 144 -Prevent images from being re-compressed. 144 145 145 * Fix issue with sending images to API timing out 146 * Improve chunked data 146 = 1.1.3 = 147 -Fix issue with sending images to API timing out 148 -Improve chunked data 147 149 148 == 1.1.2 == 150 = 1.1.2 = 151 -Small fixes 149 152 150 * Small fixes 153 = 1.1.1 = 154 -Add top level menu link 155 -Add OceanWP banner 156 -Fix broken bulk compression when image file is corrupted 157 -Fix quota not being tracked. 151 158 152 == 1.1.1 == 153 * Add top level menu link 154 * Add OceanWP banner 155 * Fix broken bulk compression when image file is corrupted 156 * Fix quota not being tracked. 157 158 == 1.1.0 == 159 * Add new Wizard 160 * Allow activation of plugin without needing to visit Octify.io 161 * Fix a bug that prevented bulk compression from working 162 * Add new UI 163 * Clean up options area 164 * Improve Compress rate for “balanced” compression. 165 * Add new stats area 166 * Add subscription management area 159 = 1.1.0 = 160 -Add new Wizard 161 -Allow activation of plugin without needing to visit Octify.io 162 -Fix a bug that prevented bulk compression from working 163 -Add new UI 164 -Clean up options area 165 -Improve Compress rate for “balanced” compression. 166 -Add new stats area 167 -Add subscription management area 167 168 168 169 = 1.0 = 169 *Initial Release.170 -Initial Release.
Note: See TracChangeset
for help on using the changeset viewer.