Version Description
- Fixed minor errors for SVG support
- Tested successfully with WordPress 4.7.4
Download this release
Release Info
Developer | Hinjiriyo |
Plugin | Quick Featured Images |
Version | 12.3.4 |
Comparing to | |
See all releases |
Code changes from version 12.3.3 to 12.3.4
README.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Hinjiriyo
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2KUW27NECWVWJ
|
4 |
Tags: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.7.
|
7 |
-
Stable tag: 12.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -278,6 +278,10 @@ If you want to contribute a translation of the plugin in your language it would
|
|
278 |
|
279 |
== Changelog ==
|
280 |
|
|
|
|
|
|
|
|
|
281 |
= 12.3.3 =
|
282 |
* Revised translations
|
283 |
|
@@ -418,6 +422,9 @@ Added spanish translation for the main texts of the plugin
|
|
418 |
|
419 |
== Upgrade Notice ==
|
420 |
|
|
|
|
|
|
|
421 |
= 12.3.3 =
|
422 |
Revised translations
|
423 |
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2KUW27NECWVWJ
|
4 |
Tags: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.7.4
|
7 |
+
Stable tag: 12.3.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
278 |
|
279 |
== Changelog ==
|
280 |
|
281 |
+
= 12.3.4 =
|
282 |
+
* Fixed minor errors for SVG support
|
283 |
+
* Tested successfully with WordPress 4.7.4
|
284 |
+
|
285 |
= 12.3.3 =
|
286 |
* Revised translations
|
287 |
|
422 |
|
423 |
== Upgrade Notice ==
|
424 |
|
425 |
+
= 12.3.4 =
|
426 |
+
Fixed minor errors for SVG support, tested with WP 4.7.4
|
427 |
+
|
428 |
= 12.3.3 =
|
429 |
Revised translations
|
430 |
|
admin/assets/css/admin.css
CHANGED
@@ -271,6 +271,14 @@ body[class*=_page_quick-featured-images-settings] #qfi_main .qfi_content form h2
|
|
271 |
-webkit-box-shadow: 3px 3px 3px 1px #999;
|
272 |
margin-bottom: 9px;
|
273 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
#qfi_max_width,
|
275 |
#qfi_max_height {
|
276 |
width: 4em;
|
271 |
-webkit-box-shadow: 3px 3px 3px 1px #999;
|
272 |
margin-bottom: 9px;
|
273 |
}
|
274 |
+
#qfi_main .selected_images li img[src$="svg"] {
|
275 |
+
width: 60px;
|
276 |
+
height: auto;
|
277 |
+
}
|
278 |
+
#qfi_main .qfi_w50percent p img[src$="svg"] {
|
279 |
+
width: 150px;
|
280 |
+
height: auto;
|
281 |
+
}
|
282 |
#qfi_max_width,
|
283 |
#qfi_max_height {
|
284 |
width: 4em;
|
admin/class-quick-featured-images-admin.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
-
protected $plugin_version = '12.3.
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
+
protected $plugin_version = '12.3.4';
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
admin/class-quick-featured-images-tools.php
CHANGED
@@ -764,7 +764,10 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
|
|
764 |
absint( $this->used_thumbnail_width / 2 ),
|
765 |
absint( $this->used_thumbnail_height / 2 )
|
766 |
);
|
767 |
-
$attr = array(
|
|
|
|
|
|
|
768 |
// define caching arrays for better performance while calculating attachment images
|
769 |
$false_id = 'false_id'; // something to use as an array key
|
770 |
$current_featured_images = array();
|
764 |
absint( $this->used_thumbnail_width / 2 ),
|
765 |
absint( $this->used_thumbnail_height / 2 )
|
766 |
);
|
767 |
+
$attr = array(
|
768 |
+
'class' => 'attachment-thumbnail',
|
769 |
+
'style' => vsprintf( 'width: %dpx; height: %dpx;', $size ), /* for SVGs */
|
770 |
+
);
|
771 |
// define caching arrays for better performance while calculating attachment images
|
772 |
$false_id = 'false_id'; // something to use as an array key
|
773 |
$current_featured_images = array();
|
quick-featured-images.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: Quick Featured Images
|
11 |
* Plugin URI: http://wordpress.org/plugins/quick-featured-images
|
12 |
* Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
|
13 |
-
* Version: 12.3.
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|
10 |
* Plugin Name: Quick Featured Images
|
11 |
* Plugin URI: http://wordpress.org/plugins/quick-featured-images
|
12 |
* Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
|
13 |
+
* Version: 12.3.4
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|