updated readme, version

This commit is contained in:
Robin Cornett
2015-08-31 18:27:43 -04:00
parent 9caf313126
commit 536bd5f6f5
5 changed files with 15 additions and 4 deletions
+4
View File
@@ -214,6 +214,10 @@ to a convenient location, such as your functions.php file. Otherwise, the page t
## Changelog
### 2.3.1 - 2015-08-31
* bugfix: no longer removes titles on pages using the Genesis blog template.
* sanity check: cleaned up code redundancies and confusions.
### 2.3.0 - 2015-08-17
* new: set a featured image for each author!
* new: load smaller images on smaller screens!
+1 -1
View File
@@ -12,7 +12,7 @@
* 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.3.0
* Version: 2.3.1
* Author: Robin Cornett
* Author URI: http://robincornett.com
* License: GPL-2.0+
@@ -13,7 +13,7 @@ class Display_Featured_Image_Genesis_Common {
* @var string
* @since 1.4.3
*/
public $version = '2.3.0';
public $version = '2.3.1';
/**
* set and retreive variables for the featured image.
@@ -244,7 +244,7 @@ class Display_Featured_Image_Genesis_Output {
$show_front_title = apply_filters( 'display_featured_image_genesis_excerpt_show_front_page_title', false );
$show_front_title = true === $show_front_title ? $show_front_title : false;
if ( ( is_front_page() && ! $show_front_title ) || ( is_page_template( 'page_blog.php' ) && function_exists( 'genesis_a11y' ) && genesis_a11y( 'headings' ) ) ) {
if ( ( is_front_page() && ! $show_front_title ) || is_page_template( 'page_blog.php' ) ) {
return;
}
$class = is_singular() ? 'entry-title' : 'archive-title';
+8 -1
View File
@@ -5,7 +5,7 @@ Donate link: https://robincornett.com/donate/
Tags: backstretch, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss
Requires at least: 3.8
Tested up to: 4.3
Stable tag: 2.3.0
Stable tag: 2.3.1
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -162,11 +162,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.3.1 =
bugfix for blog page template users.
= 2.3.0 =
New features: featured images for authors, smaller images loaded for smaller screens!
== Changelog ==
= 2.3.1 =
* bugfix: no longer removes titles on pages using the Genesis blog template.
* sanity check: cleaned up code redundancies and confusions.
= 2.3.0 =
* new: set a featured image for each author!
* new: load smaller images on smaller screens!