ImageMagick Engine - Version 1.1.1

Version Description

Download this release

Release Info

Developer orangelab
Plugin Icon 128x128 ImageMagick Engine
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1 to 1.1.1

Files changed (2) hide show
  1. imagemagick-engine.php +4 -4
  2. readme.txt +12 -6
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.1
9
 
10
  Copyright 2010 Orangelab
11
 
@@ -28,7 +28,7 @@
28
 
29
  /*
30
  * Current todo list:
31
- * - check localization, translate strings
32
  *
33
  * Future todo list:
34
  * - AJAXify re-encode startup
@@ -564,7 +564,7 @@ function ime_admin_menu() {
564
  /* Add settings to plugin action links */
565
  function ime_filter_plugin_actions($links, $file) {
566
  if($file == plugin_basename(__FILE__)) {
567
- $settings_link = "<a href=\"options-general.php?page=ime\">"
568
  . __('Settings', 'imagemagick-engine') . '</a>';
569
  array_unshift( $links, $settings_link ); // before other links
570
  }
@@ -792,7 +792,7 @@ function ime_option_page() {
792
  ?>
793
  <div class="wrap">
794
  <h2><?php _e('ImageMagick Engine Settings','imagemagick-engine'); ?></h2>
795
- <form action="options-general.php?page=ime" method="post" name="update_options">
796
  <?php wp_nonce_field('ime-options'); ?>
797
  <input type="hidden" name="ajax_url" id="ajax_url" value="<?php bloginfo('wpurl'); ?>/wp-admin/admin-ajax.php" />
798
  <div id="poststuff" class="metabox-holder has-right-sidebar">
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.1.1
9
 
10
  Copyright 2010 Orangelab
11
 
28
 
29
  /*
30
  * Current todo list:
31
+ * - empty!
32
  *
33
  * Future todo list:
34
  * - AJAXify re-encode startup
564
  /* Add settings to plugin action links */
565
  function ime_filter_plugin_actions($links, $file) {
566
  if($file == plugin_basename(__FILE__)) {
567
+ $settings_link = "<a href=\"options-general.php?page=imagemagick-engine\">"
568
  . __('Settings', 'imagemagick-engine') . '</a>';
569
  array_unshift( $links, $settings_link ); // before other links
570
  }
792
  ?>
793
  <div class="wrap">
794
  <h2><?php _e('ImageMagick Engine Settings','imagemagick-engine'); ?></h2>
795
+ <form action="options-general.php?page=imagemagick-engine" method="post" name="update_options">
796
  <?php wp_nonce_field('ime-options'); ?>
797
  <input type="hidden" name="ajax_url" id="ajax_url" value="<?php bloginfo('wpurl'); ?>/wp-admin/admin-ajax.php" />
798
  <div id="poststuff" class="metabox-holder has-right-sidebar">
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: orangelab
3
  Tags: image images picture imagemagick gd
4
  Requires at least: 2.9
5
  Tested up to: 3.0.1
6
- Stable tag: 1.1
7
 
8
  Improve the quality of re-sized images by replacing standard GD library with ImageMagick.
9
 
@@ -14,18 +14,21 @@ Dramatically improve the quality of re-sized images by making WordPress use Imag
14
  Features
15
 
16
  * Preserve embedded color profile in re-sized image
 
17
  * Allow regeneration of existing images (optionally for selected image sizes only)
18
  * Configure image quality or use dynamically computed default value.
19
 
 
 
20
  Requires either ImageMagick binary or Imagick PHP module.
21
 
22
  == Installation ==
23
 
24
- 0. Install either ImageMagick or the Imagick PHP module (see FAQ for more information).
25
- 1. Download and extract plugin files to a folder in your wp-content/plugin directory.
26
- 2. Activate the plugin through the WordPress admin interface.
27
- 3. Configure ImageMagick settings and enable it on plugin settings page.
28
- 4. Regenerate existing images to take advantage of the new features.
29
 
30
  If you have any questions or problems please make a comment here: http://wp.orangelab.se/imagemagick-engine/
31
 
@@ -62,6 +65,9 @@ You can also find binary releases at http://www.imagemagick.org including Windo
62
 
63
  == Changelog ==
64
 
 
 
 
65
  = 1.1 =
66
  * Working localization
67
  * Added Swedish translation
3
  Tags: image images picture imagemagick gd
4
  Requires at least: 2.9
5
  Tested up to: 3.0.1
6
+ Stable tag: 1.1.1
7
 
8
  Improve the quality of re-sized images by replacing standard GD library with ImageMagick.
9
 
14
  Features
15
 
16
  * Preserve embedded color profile in re-sized image
17
+ * Automatically recognize custom image sizes
18
  * Allow regeneration of existing images (optionally for selected image sizes only)
19
  * Configure image quality or use dynamically computed default value.
20
 
21
+ Translations: Swedish
22
+
23
  Requires either ImageMagick binary or Imagick PHP module.
24
 
25
  == Installation ==
26
 
27
+ 1. Install either ImageMagick or the Imagick PHP module (see FAQ for more information).
28
+ 2. Download and extract plugin files to a folder in your wp-content/plugin directory.
29
+ 3. Activate the plugin through the WordPress admin interface.
30
+ 4. Configure ImageMagick settings and enable it on plugin settings page.
31
+ 5. Regenerate existing images to take advantage of the new features.
32
 
33
  If you have any questions or problems please make a comment here: http://wp.orangelab.se/imagemagick-engine/
34
 
65
 
66
  == Changelog ==
67
 
68
+ = 1.1.1=
69
+ * Fix search-and-replace error from 1.1 that made it impossible to change settings! Thanks to Marco M. Jaeger for report!
70
+
71
  = 1.1 =
72
  * Working localization
73
  * Added Swedish translation