Plugin Directory

Changeset 1860529


Ignore:
Timestamp:
04/18/2018 01:12:53 PM (8 years ago)
Author:
octify
Message:

Read me update, implement presentation of re-compressing.

Location:
octify/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • octify/trunk/Libs/OctifyApi.php

    r1859904 r1860529  
    237237        $imageToProcess = array_filter( $imageToProcess );
    238238        if ( count( $imageToProcess ) ) {
    239             $chunks = array_chunk( $imageToProcess, 10 );
     239            $chunks = array_chunk( $imageToProcess, 50 );
    240240            $data   = array(
    241241                'success' => array(),
     
    341341//              return;
    342342//          }
     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
    343350            $file = get_attached_file( $attachmentId );
    344351            if ( ! function_exists( 'download_url' ) ) {
  • octify/trunk/Octify.php

    r1859904 r1860529  
    44 * Plugin URI: https://octify.io
    55 * Description: Octify Image Compression for WordPress.
    6  * Version: 1.1.3
     6 * Version: 1.1.4
    77 * Author: Octify
    88 * Author URI: https://octify.io
  • octify/trunk/readme.txt

    r1859904 r1860529  
    11=== WordPress Image Compression Plugin - Octify ===
    22Plugin Name: Octify
    3 Version: 1.1.3
     3Version: 1.1.4
    44Author: Octify
    55Author URI: https://octify.io/
     
    77Tags: Image Compression, Image Optimisation, resize, optimise, performance, optimize, compress images, optimize images, optimise images, image optimization.
    88Tested up to: 4.9.5
    9 Stable tag: 1.1.3
    10 Requires PHP: 5.2.4
     9Stable tag: 1.1.4
     10Requires PHP: 5.3
    1111License: GPLv2
    1212License URI: License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    141141== Changelog ==
    142142
    143 == 1.1.3 ==
     143= 1.1.4 =
     144-Prevent images from being re-compressed.
    144145
    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
    147149
    148 == 1.1.2 ==
     150= 1.1.2 =
     151-Small fixes
    149152
    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.
    151158
    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
    167168
    168169= 1.0 =
    169 * Initial Release.
     170-Initial Release.
Note: See TracChangeset for help on using the changeset viewer.