Changeset 409526
- Timestamp:
- 07/13/2011 10:41:32 PM (14 years ago)
- Location:
- wp-smushit/trunk
- Files:
-
- 3 edited
-
bulk.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-smushit.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-smushit/trunk/bulk.php
r409513 r409526 45 45 46 46 // rate limiting is good manners, let's be nice to Yahoo! 47 //sleep(0.5);47 sleep(0.5); 48 48 @ob_flush(); 49 49 flush(); -
wp-smushit/trunk/readme.txt
r409513 r409526 1 1 === WP Smush.it === 2 2 Plugin Name: WP Smush.it 3 Version: 1.4. 03 Version: 1.4.1 4 4 Author: Dialect 5 5 Author URI: http://dialect.ca/?wp_smush_it 6 6 Contributors: alexdunae 7 7 Tags: images, image, attachments, attachment 8 Requires at least: 2. 88 Requires at least: 2.9 9 9 Tested up to: 3.2.1 10 Stable tag: 1.4. 010 Stable tag: 1.4.1 11 11 12 12 Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress. … … 29 29 You 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. 30 30 31 As of version 1. 3.5there is a new, experimental `Bulk Smush.it` feature. You can find the link under the `Media Library` tab.31 As of version 1.4.0 there is a new, experimental `Bulk Smush.it` feature. You can find the link under the `Media Library` tab. 32 32 33 33 = Privacy = -
wp-smushit/trunk/wp-smushit.php
r409513 r409526 2 2 /** 3 3 * Integrate the Smush.it API into WordPress. 4 * @version 1.4. 04 * @version 1.4.1 5 5 * @package WP_SmushIt 6 6 */ … … 10 10 Description: Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress. 11 11 Author: Dialect 12 Version: 1.4. 012 Version: 1.4.1 13 13 Author URI: http://dialect.ca/ 14 14 */ … … 29 29 30 30 define('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'))); 31 define('WP_SMUSHIT_UA', 'WP Smush.it/1.4.1 (+http://dialect.ca/code/wp-smushit)'); 33 32 define('WP_SMUSHIT_PLUGIN_DIR', dirname(plugin_basename(__FILE__))); 34 33 … … 37 36 * Hooks 38 37 */ 39 register_activation_hook(__FILE__,'wp_smushit_install');40 41 38 add_filter('wp_generate_attachment_metadata', 'wp_smushit_resize_from_meta_data', 10, 2); 42 39 add_filter('manage_media_columns', 'wp_smushit_columns'); … … 48 45 * Plugin admin functions 49 46 */ 50 function wp_smushit_install() {51 // clean up from previous versions52 delete_option('wp_smushit_gif_to_png');53 }54 55 47 function wp_smushit_admin_init() { 56 48 load_plugin_textdomain(WP_SMUSHIT_DOMAIN);
Note: See TracChangeset
for help on using the changeset viewer.