Version Description
- Fix deprecated warning
- Tested with WordPress 3.1
Download this release
Release Info
Developer | orangelab |
Plugin | ImageMagick Engine |
Version | 1.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.2.0 to 1.2.1
- imagemagick-engine.php +5 -3
- readme.txt +6 -2
imagemagick-engine.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: Improve the quality of re-sized images by replacing standard GD library with ImageMagick
|
6 |
Author: Orangelab
|
7 |
Author URI: http://www.orangelab.se
|
8 |
-
Version: 1.2.
|
9 |
Text Domain: imagemagick-engine
|
10 |
|
11 |
Copyright 2010, 2011 Orangelab
|
@@ -29,9 +29,11 @@
|
|
29 |
|
30 |
/*
|
31 |
* Current todo list:
|
32 |
-
* -
|
|
|
33 |
*
|
34 |
* Future todo list:
|
|
|
35 |
* - admin: smarter find path to executable (maybe try 'which' or package handler?)
|
36 |
* - allow customization of command line / class functions (safely!), check memory limit
|
37 |
* - handle TIF and other IM formats if possible
|
@@ -635,7 +637,7 @@ function ime_ajax_process_image() {
|
|
635 |
|
636 |
/* Add admin page */
|
637 |
function ime_admin_menu() {
|
638 |
-
$page = add_options_page('ImageMagick Engine', 'ImageMagick Engine',
|
639 |
|
640 |
add_action('admin_print_scripts-' . $page, 'ime_admin_scripts');
|
641 |
add_action('admin_print_styles-' . $page, 'ime_admin_styles');
|
5 |
Description: Improve the quality of re-sized images by replacing standard GD library with ImageMagick
|
6 |
Author: Orangelab
|
7 |
Author URI: http://www.orangelab.se
|
8 |
+
Version: 1.2.1
|
9 |
Text Domain: imagemagick-engine
|
10 |
|
11 |
Copyright 2010, 2011 Orangelab
|
29 |
|
30 |
/*
|
31 |
* Current todo list:
|
32 |
+
* - position of resize progressbar in Chrome
|
33 |
+
* - do not iterate through all images if only resizing non-ime images
|
34 |
*
|
35 |
* Future todo list:
|
36 |
+
* - edit post insert image: add custom sizes?
|
37 |
* - admin: smarter find path to executable (maybe try 'which' or package handler?)
|
38 |
* - allow customization of command line / class functions (safely!), check memory limit
|
39 |
* - handle TIF and other IM formats if possible
|
637 |
|
638 |
/* Add admin page */
|
639 |
function ime_admin_menu() {
|
640 |
+
$page = add_options_page('ImageMagick Engine', 'ImageMagick Engine', 'manage_options', 'imagemagick-engine', 'ime_option_page');
|
641 |
|
642 |
add_action('admin_print_scripts-' . $page, 'ime_admin_scripts');
|
643 |
add_action('admin_print_styles-' . $page, 'ime_admin_styles');
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: orangelab
|
3 |
Tags: image, images, picture, imagemagick, gd
|
4 |
Requires at least: 2.9
|
5 |
-
Tested up to: 3.1
|
6 |
-
Stable tag: 1.2.
|
7 |
|
8 |
Improve the quality of re-sized images by replacing standard GD library with ImageMagick.
|
9 |
|
@@ -65,6 +65,10 @@ You can also find binary releases at http://www.imagemagick.org including a Wind
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
|
|
68 |
= 1.2.0 =
|
69 |
* Rewrite image cropping for Imagick PHP module to make sure we keep image profiles. Thanks to Christian Münch for report
|
70 |
* Improve test for IM executable
|
2 |
Contributors: orangelab
|
3 |
Tags: image, images, picture, imagemagick, gd
|
4 |
Requires at least: 2.9
|
5 |
+
Tested up to: 3.1
|
6 |
+
Stable tag: 1.2.1
|
7 |
|
8 |
Improve the quality of re-sized images by replacing standard GD library with ImageMagick.
|
9 |
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 1.2.1 =
|
69 |
+
* Fix deprecated warning
|
70 |
+
* Tested with WordPress 3.1
|
71 |
+
|
72 |
= 1.2.0 =
|
73 |
* Rewrite image cropping for Imagick PHP module to make sure we keep image profiles. Thanks to Christian Münch for report
|
74 |
* Improve test for IM executable
|