mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
update version
This commit is contained in:
@@ -228,6 +228,10 @@ to a convenient location, such as your functions.php file. Otherwise, the page t
|
||||
|
||||
## Changelog
|
||||
|
||||
### 2.4.1 - 2015-12-16
|
||||
* bugfix: correctly retrieves posts page image as fallback for single posts
|
||||
* bugfix: medium image size comparison consistent throughout plugin
|
||||
|
||||
### 2.4.0 - 2015-12-11
|
||||
* Now supports term metadata, added in WordPress 4.4. All new featured images for terms will be added to the termmeta table instead of wp_options. Old term images can be converted from the settings page.
|
||||
* improved: alternate sources for backstretch image on smaller screens
|
||||
|
||||
@@ -6,13 +6,13 @@
|
||||
* @author Robin Cornett <hello@robincornett.com>
|
||||
* @license GPL-2.0+
|
||||
* @link http://robincornett.com
|
||||
* @copyright 2014-2015-2015 Robin Cornett Creative, LLC
|
||||
* @copyright 2014-2015 Robin Cornett Creative, LLC
|
||||
*
|
||||
* @wordpress-plugin
|
||||
* Plugin Name: Display Featured Image for Genesis
|
||||
* Plugin URI: http://github.com/robincornett/display-featured-image-genesis/
|
||||
* Description: This plugin works within the Genesis Framework, to display featured images in beautiful and dynamic ways.
|
||||
* Version: 2.4.0
|
||||
* Version: 2.4.1
|
||||
* Author: Robin Cornett
|
||||
* Author URI: http://robincornett.com
|
||||
* Text Domain: display-featured-image-genesis
|
||||
|
||||
@@ -13,7 +13,7 @@ class Display_Featured_Image_Genesis_Common {
|
||||
* @var string
|
||||
* @since 1.4.3
|
||||
*/
|
||||
public $version = '2.4.0';
|
||||
public $version = '2.4.1';
|
||||
|
||||
/**
|
||||
* set and retreive variables for the featured image.
|
||||
|
||||
@@ -176,11 +176,18 @@ This will follow the settings you choose in the Genesis Theme Settings.
|
||||
3. Quickly see the featured image assigned to each post or term.
|
||||
|
||||
== Upgrade Notice ==
|
||||
= 2.4.1 =
|
||||
bugfixes related to blog/posts page image
|
||||
|
||||
= 2.4.0 =
|
||||
Featured images for terms now use term metadata, introduced in WP 4.4. Old images can be updated automatically or by hand.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.4.1 =
|
||||
* bugfix: correctly retrieves posts page image as fallback for single posts
|
||||
* bugfix: medium image size comparison consistent throughout plugin
|
||||
|
||||
= 2.4.0 =
|
||||
* Now supports term metadata, added in WordPress 4.4. All new featured images for terms will be added to the termmeta table instead of wp_options. Old term images can be converted from the settings page.
|
||||
* improved: alternate sources for backstretch image on smaller screens
|
||||
|
||||
Reference in New Issue
Block a user