Version Description
- Regression Fix
- Fix PHP Fatal error on the metabox of the attachment edit page
Download this release
Release Info
Developer | wp_media |
Plugin | Imagify Image Optimizer |
Version | 1.3.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.6 to 1.3.6.1
- imagify.php +2 -2
- inc/admin/meta-boxes.php +0 -2
- readme.txt +5 -1
imagify.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Imagify
|
4 |
Plugin URI: https://wordpress.org/plugins/imagify/
|
5 |
Description: Dramaticaly reduce image file sizes without loosing quality, make your website load faster, boost your SEO and save money on your bandwith using Imagify, the new most advanced image optimization tool.
|
6 |
-
Version: 1.3.6
|
7 |
Author: WP Media
|
8 |
Author URI: http://wp-media.me
|
9 |
Licence: GPLv2
|
@@ -17,7 +17,7 @@ Copyright 2015 WP Media
|
|
17 |
defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );
|
18 |
|
19 |
// Imagify defines
|
20 |
-
define( 'IMAGIFY_VERSION' , '1.3.6' );
|
21 |
define( 'IMAGIFY_SLUG' , 'imagify' );
|
22 |
define( 'IMAGIFY_SETTINGS_SLUG' , IMAGIFY_SLUG . '_settings' );
|
23 |
define( 'IMAGIFY_WEB_MAIN' , 'https://imagify.io' );
|
3 |
Plugin Name: Imagify
|
4 |
Plugin URI: https://wordpress.org/plugins/imagify/
|
5 |
Description: Dramaticaly reduce image file sizes without loosing quality, make your website load faster, boost your SEO and save money on your bandwith using Imagify, the new most advanced image optimization tool.
|
6 |
+
Version: 1.3.6.1
|
7 |
Author: WP Media
|
8 |
Author URI: http://wp-media.me
|
9 |
Licence: GPLv2
|
17 |
defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );
|
18 |
|
19 |
// Imagify defines
|
20 |
+
define( 'IMAGIFY_VERSION' , '1.3.6.1' );
|
21 |
define( 'IMAGIFY_SLUG' , 'imagify' );
|
22 |
define( 'IMAGIFY_SETTINGS_SLUG' , IMAGIFY_SLUG . '_settings' );
|
23 |
define( 'IMAGIFY_WEB_MAIN' , 'https://imagify.io' );
|
inc/admin/meta-boxes.php
CHANGED
@@ -23,8 +23,6 @@ function _imagify_attachment_submitbox_misc_actions() {
|
|
23 |
} elseif ( $attachment->is_optimized() || $attachment->has_error() ) {
|
24 |
echo '<div class="misc-pub-section misc-pub-imagify"><h4>' . __( 'Imagify', 'imagify' ) . '</h4></div>';
|
25 |
echo get_imagify_attachment_optimization_text( $post->ID );
|
26 |
-
echo '<input id="imagify-full-original-url" type="hidden" value="' . $attachment->get_backup_url() . '">';
|
27 |
-
echo '<input id="imagify-full-original-size" type="hidden" value="' . $attachment->get_original_size() . '">';
|
28 |
} else {
|
29 |
$url = get_imagify_admin_url( 'manual-upload', $post->ID );
|
30 |
printf( '<div class="misc-pub-section misc-pub-imagify"><a class="button-primary" href="%s">%s</a></div>', $url, __( 'Optimize', 'imagify' ) );
|
23 |
} elseif ( $attachment->is_optimized() || $attachment->has_error() ) {
|
24 |
echo '<div class="misc-pub-section misc-pub-imagify"><h4>' . __( 'Imagify', 'imagify' ) . '</h4></div>';
|
25 |
echo get_imagify_attachment_optimization_text( $post->ID );
|
|
|
|
|
26 |
} else {
|
27 |
$url = get_imagify_admin_url( 'manual-upload', $post->ID );
|
28 |
printf( '<div class="misc-pub-section misc-pub-imagify"><a class="button-primary" href="%s">%s</a></div>', $url, __( 'Optimize', 'imagify' ) );
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: wp_media
|
|
3 |
Tags: compress image, images, performance, optimization, photos, upload, resize, gif, png, jpg, reduce image size, retina
|
4 |
Requires at least: 3.7.0
|
5 |
Tested up to: 4.4.2
|
6 |
-
Stable tag: 1.3.6
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -134,6 +134,10 @@ When the plugin is disabled, your existing images remain optimized. Backups of t
|
|
134 |
|
135 |
== Changelog ==
|
136 |
|
|
|
|
|
|
|
|
|
137 |
= 1.3.6 =
|
138 |
* Improvement
|
139 |
* Optimize attachments resized with the WordPress editor tool
|
3 |
Tags: compress image, images, performance, optimization, photos, upload, resize, gif, png, jpg, reduce image size, retina
|
4 |
Requires at least: 3.7.0
|
5 |
Tested up to: 4.4.2
|
6 |
+
Stable tag: 1.3.6.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
134 |
|
135 |
== Changelog ==
|
136 |
|
137 |
+
= 1.3.6.1 =
|
138 |
+
* Regression Fix
|
139 |
+
* Fix PHP Fatal error on the metabox of the attachment edit page
|
140 |
+
|
141 |
= 1.3.6 =
|
142 |
* Improvement
|
143 |
* Optimize attachments resized with the WordPress editor tool
|