Version Description
- Fixed: outdated translations for post statusses
- Tested successfully with WordPress 4.5.2
Download this release
Release Info
Developer | Hinjiriyo |
Plugin | Quick Featured Images |
Version | 11.7.3 |
Comparing to | |
See all releases |
Code changes from version 11.7.2 to 11.7.3
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: add, arabic, assign, associate, attach, attachment, attachments, audio, audios, author, auto, automatic, batch, bulk, categories, category, change, column, control, custom post type, custom post types, custom taxonomies, custom taxonomy, date, dates, default, define, delete, detach, exchange, featured, featured image, featured images, filter, gallery, galleries, image, image size, images, mass, media, mime, multimedia, nextgen, pages, parent page, period, post type, post types, posts, quick, random, rapid, remove, replace, rules, search, set, standard, tag, taxonomies, taxonomy, thumb, thumbnail, thumbnails, thumbs, time, unset, update, user, video, videos, spanish, español, deutsch, german
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.5.
|
7 |
-
Stable tag: 11.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -277,6 +277,10 @@ If you want to contribute a translation of the plugin in your language it would
|
|
277 |
|
278 |
== Changelog ==
|
279 |
|
|
|
|
|
|
|
|
|
280 |
= 11.7.2 =
|
281 |
* Fixed: broken recognition of first post image works in multilines
|
282 |
* Tested successfully with WordPress 4.5.1
|
@@ -558,6 +562,9 @@ Fixed an insufficient security check which prevented to set a featured image
|
|
558 |
|
559 |
== Upgrade Notice ==
|
560 |
|
|
|
|
|
|
|
561 |
= 11.7.2 =
|
562 |
Fixed: broken recognition of first post image works in multilines
|
563 |
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2KUW27NECWVWJ
|
4 |
Tags: add, arabic, assign, associate, attach, attachment, attachments, audio, audios, author, auto, automatic, batch, bulk, categories, category, change, column, control, custom post type, custom post types, custom taxonomies, custom taxonomy, date, dates, default, define, delete, detach, exchange, featured, featured image, featured images, filter, gallery, galleries, image, image size, images, mass, media, mime, multimedia, nextgen, pages, parent page, period, post type, post types, posts, quick, random, rapid, remove, replace, rules, search, set, standard, tag, taxonomies, taxonomy, thumb, thumbnail, thumbnails, thumbs, time, unset, update, user, video, videos, spanish, español, deutsch, german
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.5.2
|
7 |
+
Stable tag: 11.7.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
277 |
|
278 |
== Changelog ==
|
279 |
|
280 |
+
= 11.7.3 =
|
281 |
+
* Fixed: outdated translations for post statusses
|
282 |
+
* Tested successfully with WordPress 4.5.2
|
283 |
+
|
284 |
= 11.7.2 =
|
285 |
* Fixed: broken recognition of first post image works in multilines
|
286 |
* Tested successfully with WordPress 4.5.1
|
562 |
|
563 |
== Upgrade Notice ==
|
564 |
|
565 |
+
= 11.7.3 =
|
566 |
+
Fixed: outdated translations for post statusses, tested with WP 4.5.2
|
567 |
+
|
568 |
= 11.7.2 =
|
569 |
Fixed: broken recognition of first post image works in multilines
|
570 |
|
admin/class-quick-featured-images-admin.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
-
protected $plugin_version = '11.7.
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
+
protected $plugin_version = '11.7.3';
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
admin/class-quick-featured-images-tools.php
CHANGED
@@ -554,15 +554,15 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
|
|
554 |
);
|
555 |
// statuses
|
556 |
$text = 'Private';
|
557 |
-
$label_private = _x( $text, 'post' );
|
558 |
$text = 'Published';
|
559 |
-
$label_publish = _x( $text, 'post' );
|
560 |
$text = 'Scheduled';
|
561 |
-
$label_future = _x( $text, 'post' );
|
562 |
$text = 'Pending';
|
563 |
-
$label_pending = _x( $text, 'post' );
|
564 |
$text = 'Draft';
|
565 |
-
$label_draft = _x( $text, 'post' );
|
566 |
$this->valid_statuses = array(
|
567 |
'publish' => $label_publish,
|
568 |
'pending' => $label_pending,
|
554 |
);
|
555 |
// statuses
|
556 |
$text = 'Private';
|
557 |
+
$label_private = _x( $text, 'post status' );
|
558 |
$text = 'Published';
|
559 |
+
$label_publish = _x( $text, 'post status' );
|
560 |
$text = 'Scheduled';
|
561 |
+
$label_future = _x( $text, 'post status' );
|
562 |
$text = 'Pending';
|
563 |
+
$label_pending = _x( $text, 'post status' );
|
564 |
$text = 'Draft';
|
565 |
+
$label_draft = _x( $text, 'post status' );
|
566 |
$this->valid_statuses = array(
|
567 |
'publish' => $label_publish,
|
568 |
'pending' => $label_pending,
|
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, set default images, get overview lists.
|
13 |
-
* Version: 11.7.
|
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, set default images, get overview lists.
|
13 |
+
* Version: 11.7.3
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|