Version Description
- Fixed missed binding to dynamically created selection options in 'Default Images'
- Fixed missed higher upgrade of the version number
Download this release
Release Info
Developer | Hinjiriyo |
Plugin | Quick Featured Images |
Version | 13.5.0 |
Comparing to | |
See all releases |
Code changes from version 13.4.2 to 13.5.0
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: featured image,featured images,bulk set,automatic,thumbnails
|
|
5 |
Requires at least: 3.8
|
6 |
Requires PHP: 5.2
|
7 |
Tested up to: 5.5
|
8 |
-
Stable tag: 13.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -290,6 +290,10 @@ If you want to contribute a translation of the plugin in your language it would
|
|
290 |
|
291 |
== Changelog ==
|
292 |
|
|
|
|
|
|
|
|
|
293 |
= 13.4.2 =
|
294 |
* Revised an error message in 'Bulk Edit'
|
295 |
* Fixed deprecated jQuery function live() in 'Default Images'
|
@@ -525,6 +529,9 @@ Added spanish translation for the main texts of the plugin
|
|
525 |
|
526 |
== Upgrade Notice ==
|
527 |
|
|
|
|
|
|
|
528 |
= 13.4.2 =
|
529 |
Revisions and fixes for WordPress 5.5, tested successfully with WP 5.5
|
530 |
|
5 |
Requires at least: 3.8
|
6 |
Requires PHP: 5.2
|
7 |
Tested up to: 5.5
|
8 |
+
Stable tag: 13.5.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
290 |
|
291 |
== Changelog ==
|
292 |
|
293 |
+
= 13.5.0 =
|
294 |
+
* Fixed missed binding to dynamically created selection options in 'Default Images'
|
295 |
+
* Fixed missed higher upgrade of the version number
|
296 |
+
|
297 |
= 13.4.2 =
|
298 |
* Revised an error message in 'Bulk Edit'
|
299 |
* Fixed deprecated jQuery function live() in 'Default Images'
|
529 |
|
530 |
== Upgrade Notice ==
|
531 |
|
532 |
+
= 13.5.0 =
|
533 |
+
Fixed missed binding to dynamically created selection options in 'Default Images'
|
534 |
+
|
535 |
= 13.4.2 =
|
536 |
Revisions and fixes for WordPress 5.5, tested successfully with WP 5.5
|
537 |
|
admin/class-quick-featured-images-admin.php
CHANGED
@@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
21 |
*
|
22 |
* @var string
|
23 |
*/
|
24 |
-
protected $plugin_version = '13.
|
25 |
|
26 |
/**
|
27 |
* Instance of this class.
|
21 |
*
|
22 |
* @var string
|
23 |
*/
|
24 |
+
protected $plugin_version = '13.5.0';
|
25 |
|
26 |
/**
|
27 |
* Instance of this class.
|
admin/views/section_defaults.php
CHANGED
@@ -191,7 +191,7 @@ foreach ( $users as $user ) {
|
|
191 |
/*
|
192 |
* Options changes
|
193 |
*/
|
194 |
-
$( '.selection_rules'
|
195 |
// get number of row
|
196 |
var row_number = this.id.match( /[0-9]+/ );
|
197 |
// set selector names
|
191 |
/*
|
192 |
* Options changes
|
193 |
*/
|
194 |
+
$( document ).on( 'change', '.selection_rules', function() {
|
195 |
// get number of row
|
196 |
var row_number = this.id.match( /[0-9]+/ );
|
197 |
// set selector names
|
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: 13.
|
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: 13.5.0
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|