Version Description
- removed testing link
Download this release
Release Info
Developer | alexdunae |
Plugin | Smush Image Compression and Optimization |
Version | 1.2.10 |
Comparing to | |
See all releases |
Code changes from version 1.2.9 to 1.2.10
- readme.txt +6 -3
- wp-smushit.php +3 -3
readme.txt
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
=== WP Smush.it ===
|
2 |
Plugin Name: WP Smush.it
|
3 |
-
Version: 1.2.
|
4 |
Author: Dialect
|
5 |
Author URI: http://dialect.ca/?wp_smush_it
|
6 |
Contributors: alexdunae
|
7 |
Tags: images, image, attachments, attachment
|
8 |
Requires at least: 2.5
|
9 |
Tested up to: 2.9.2
|
10 |
-
Stable tag: 1.2.
|
11 |
|
12 |
Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
|
13 |
|
@@ -47,7 +47,10 @@ Plugin updates are announced on [http://www.twitter.com/TheCHANGELOG](http://www
|
|
47 |
1. Activate the plugin through the 'Plugins' menu in WordPress.
|
48 |
1. Done!
|
49 |
|
50 |
-
== Changelog ==
|
|
|
|
|
|
|
51 |
= 1.2.9 =
|
52 |
* updated Smush.it endpoint URL
|
53 |
|
1 |
=== WP Smush.it ===
|
2 |
Plugin Name: WP Smush.it
|
3 |
+
Version: 1.2.10
|
4 |
Author: Dialect
|
5 |
Author URI: http://dialect.ca/?wp_smush_it
|
6 |
Contributors: alexdunae
|
7 |
Tags: images, image, attachments, attachment
|
8 |
Requires at least: 2.5
|
9 |
Tested up to: 2.9.2
|
10 |
+
Stable tag: 1.2.19
|
11 |
|
12 |
Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
|
13 |
|
47 |
1. Activate the plugin through the 'Plugins' menu in WordPress.
|
48 |
1. Done!
|
49 |
|
50 |
+
== Changelog ==
|
51 |
+
= 1.2.10 =
|
52 |
+
* removed testing link
|
53 |
+
|
54 |
= 1.2.9 =
|
55 |
* updated Smush.it endpoint URL
|
56 |
|
wp-smushit.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Integrate the Smush.it API into WordPress.
|
4 |
-
* @version 1.2.
|
5 |
* @package WP_SmushIt
|
6 |
*/
|
7 |
/*
|
@@ -9,7 +9,7 @@ Plugin Name: WP Smush.it
|
|
9 |
Plugin URI: http://dialect.ca/code/wp-smushit/
|
10 |
Description: Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
|
11 |
Author: Dialect
|
12 |
-
Version: 1.2.
|
13 |
Author URI: http://dialect.ca/?wp_smush_it
|
14 |
*/
|
15 |
|
@@ -24,7 +24,7 @@ if ( !function_exists('json_encode') ) {
|
|
24 |
|
25 |
//define('SMUSHIT_REQ_URL', 'http://smushit.com/ws.php?img=%s');
|
26 |
//define('SMUSHIT_REQ_URL', 'http://ws1.adq.ac4.yahoo.com/ysmush.it/ws.php?img=%s');
|
27 |
-
define('SMUSHIT_REQ_URL', 'http://www.smushit.com/ysmush.it/ws.php?img
|
28 |
|
29 |
define('SMUSHIT_BASE_URL', 'http://www.smushit.com/');
|
30 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Integrate the Smush.it API into WordPress.
|
4 |
+
* @version 1.2.10
|
5 |
* @package WP_SmushIt
|
6 |
*/
|
7 |
/*
|
9 |
Plugin URI: http://dialect.ca/code/wp-smushit/
|
10 |
Description: Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
|
11 |
Author: Dialect
|
12 |
+
Version: 1.2.10
|
13 |
Author URI: http://dialect.ca/?wp_smush_it
|
14 |
*/
|
15 |
|
24 |
|
25 |
//define('SMUSHIT_REQ_URL', 'http://smushit.com/ws.php?img=%s');
|
26 |
//define('SMUSHIT_REQ_URL', 'http://ws1.adq.ac4.yahoo.com/ysmush.it/ws.php?img=%s');
|
27 |
+
define('SMUSHIT_REQ_URL', 'http://www.smushit.com/ysmush.it/ws.php?img=%s');
|
28 |
|
29 |
define('SMUSHIT_BASE_URL', 'http://www.smushit.com/');
|
30 |
|