🔞 ADULT: Changeset/ - High Quality

Changeset 409526


Ignore:
Timestamp:
07/13/2011 10:41:32 PM (14 years ago)
Author:
alexdunae
Message:

Remove unused GIF to PNG check

Location:
wp-smushit/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-smushit/trunk/bulk.php

    r409513 r409526  
    4545
    4646        // rate limiting is good manners, let's be nice to Yahoo!
    47         // sleep(0.5);
     47        sleep(0.5);
    4848        @ob_flush();
    4949        flush();
  • wp-smushit/trunk/readme.txt

    r409513 r409526  
    11=== WP Smush.it ===
    22Plugin Name: WP Smush.it
    3 Version: 1.4.0
     3Version: 1.4.1
    44Author: Dialect
    55Author URI: http://dialect.ca/?wp_smush_it
    66Contributors: alexdunae
    77Tags: images, image, attachments, attachment
    8 Requires at least: 2.8
     8Requires at least: 2.9
    99Tested up to: 3.2.1
    10 Stable tag: 1.4.0
     10Stable tag: 1.4.1
    1111
    1212Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
     
    2929You can also run your existing images through Smush.it via the WordPress `Media Library`.  Click on the `Smush.it now!` link for any image you'd like to smush.
    3030
    31 As of version 1.3.5 there is a new, experimental `Bulk Smush.it` feature.  You can find the link under the `Media Library` tab.
     31As of version 1.4.0 there is a new, experimental `Bulk Smush.it` feature.  You can find the link under the `Media Library` tab.
    3232
    3333= Privacy =
  • wp-smushit/trunk/wp-smushit.php

    r409513 r409526  
    22/**
    33 * Integrate the Smush.it API into WordPress.
    4  * @version 1.4.0
     4 * @version 1.4.1
    55 * @package WP_SmushIt
    66 */
     
    1010Description: Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
    1111Author: Dialect
    12 Version: 1.4.0
     12Version: 1.4.1
    1313Author URI: http://dialect.ca/
    1414*/
     
    2929
    3030define('WP_SMUSHIT_DOMAIN', 'wp_smushit');
    31 define('WP_SMUSHIT_UA', 'WP Smush.it/1.4.0 (+http://dialect.ca/code/wp-smushit)');
    32 define('WP_SMUSHIT_GIF_TO_PNG', intval(get_option('wp_smushit_gif_to_png')));
     31define('WP_SMUSHIT_UA', 'WP Smush.it/1.4.1 (+http://dialect.ca/code/wp-smushit)');
    3332define('WP_SMUSHIT_PLUGIN_DIR', dirname(plugin_basename(__FILE__)));
    3433
     
    3736 * Hooks
    3837 */
    39 register_activation_hook(__FILE__,'wp_smushit_install');
    40 
    4138add_filter('wp_generate_attachment_metadata', 'wp_smushit_resize_from_meta_data', 10, 2);
    4239add_filter('manage_media_columns', 'wp_smushit_columns');
     
    4845 * Plugin admin functions
    4946 */
    50 function wp_smushit_install() {
    51     // clean up from previous versions
    52     delete_option('wp_smushit_gif_to_png');
    53 }
    54 
    5547function wp_smushit_admin_init() {
    5648    load_plugin_textdomain(WP_SMUSHIT_DOMAIN);
Note: See TracChangeset for help on using the changeset viewer.