Version Description
- Performance improvements.
Download this release
Release Info
Developer | karim79 |
Plugin | Kraken.io Image Optimizer |
Version | 1.0.3.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3.3 to 1.0.3.4
- kraken.php +2 -2
- lib/Kraken.php +1 -1
- readme.txt +5 -1
kraken.php
CHANGED
@@ -21,8 +21,8 @@
|
|
21 |
* Plugin URI: http://wordpress.org/plugins/kraken-image-optimizer/
|
22 |
* Description: Optimize Wordpress image uploads through Kraken.io's Image Optimization API
|
23 |
* Author: Karim Salman
|
24 |
-
* Version: 1.0.3.
|
25 |
-
* Stable Tag: 1.0.3.
|
26 |
* Author URI: https://kraken.io
|
27 |
* License GPL2
|
28 |
*/
|
21 |
* Plugin URI: http://wordpress.org/plugins/kraken-image-optimizer/
|
22 |
* Description: Optimize Wordpress image uploads through Kraken.io's Image Optimization API
|
23 |
* Author: Karim Salman
|
24 |
+
* Version: 1.0.3.4
|
25 |
+
* Stable Tag: 1.0.3.4
|
26 |
* Author URI: https://kraken.io
|
27 |
* License GPL2
|
28 |
*/
|
lib/Kraken.php
CHANGED
@@ -18,7 +18,7 @@ class Kraken
|
|
18 |
public function url($opts = array())
|
19 |
{
|
20 |
$data = json_encode(array_merge($this->auth, $opts));
|
21 |
-
$response = self::request($data, "https://api.kraken.io/v1/url");
|
22 |
|
23 |
return $response;
|
24 |
}
|
18 |
public function url($opts = array())
|
19 |
{
|
20 |
$data = json_encode(array_merge($this->auth, $opts));
|
21 |
+
$response = self::request($data, "https://api-worker-5.kraken.io/v1/url");
|
22 |
|
23 |
return $response;
|
24 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: Image Optimizer, Optimize, Images, Media, Performance, SEO, smushit, compr
|
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 3.9.2
|
6 |
Donate link: https://kraken.io
|
7 |
-
Stable tag: 1.0.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
10 |
|
@@ -24,6 +24,7 @@ This plugin allows you to optimize new and existing Wordpress image uploads thro
|
|
24 |
* All optimization is carried out by sending images to Kraken.io's infrastructure, and pulling the optimized files to your Wordpress installation.
|
25 |
* To use this plugin, you must obtain a full API key and secret from [https://kraken.io/plans](https://kraken.io/plans "Kraken Image Optimizer"). The Developer API key/secret will **not** work with this plugin.
|
26 |
* You can use your Kraken API key and secret on as many sites/blogs as you like. We have no per-site license.
|
|
|
27 |
|
28 |
|
29 |
Once you have obtained your credentials, from your Wordpress admin, go to the Settings->Media page. The Kraken Wordpress plugin adds a Kraken.io Settings section to the bottom of the page, from where you can enter your API credentials, and select your optimization preferences. Once you have done this, click **Save**. If everything is in order, it will simply say "settings saved" and give you a reassuring green tick in the **Kraken.io settings** section. You can now start optimizing images from within Media Library. Any image you upload from now on, through any of the media upload screens will be optimized on-the-fly by Kraken.
|
@@ -72,6 +73,9 @@ From our plans page, right [here](https://kraken.io/plans "Kraken.io plans and p
|
|
72 |
|
73 |
== Changelog ==
|
74 |
|
|
|
|
|
|
|
75 |
= 1.0.3.3 =
|
76 |
* Bug and cleanup release prior to next feature release (Amazon S3 support, in the near future).
|
77 |
* Fixed bug related to SSL certificates on some blogs.
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 3.9.2
|
6 |
Donate link: https://kraken.io
|
7 |
+
Stable tag: 1.0.3.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
10 |
|
24 |
* All optimization is carried out by sending images to Kraken.io's infrastructure, and pulling the optimized files to your Wordpress installation.
|
25 |
* To use this plugin, you must obtain a full API key and secret from [https://kraken.io/plans](https://kraken.io/plans "Kraken Image Optimizer"). The Developer API key/secret will **not** work with this plugin.
|
26 |
* You can use your Kraken API key and secret on as many sites/blogs as you like. We have no per-site license.
|
27 |
+
* Works great with WPEngine hosted blogs, including the staging area.
|
28 |
|
29 |
|
30 |
Once you have obtained your credentials, from your Wordpress admin, go to the Settings->Media page. The Kraken Wordpress plugin adds a Kraken.io Settings section to the bottom of the page, from where you can enter your API credentials, and select your optimization preferences. Once you have done this, click **Save**. If everything is in order, it will simply say "settings saved" and give you a reassuring green tick in the **Kraken.io settings** section. You can now start optimizing images from within Media Library. Any image you upload from now on, through any of the media upload screens will be optimized on-the-fly by Kraken.
|
73 |
|
74 |
== Changelog ==
|
75 |
|
76 |
+
= 1.0.3.4 =
|
77 |
+
* Performance improvements.
|
78 |
+
|
79 |
= 1.0.3.3 =
|
80 |
* Bug and cleanup release prior to next feature release (Amazon S3 support, in the near future).
|
81 |
* Fixed bug related to SSL certificates on some blogs.
|