From 536bd5f6f5e70b7b3300bc4a23a53260259482e5 Mon Sep 17 00:00:00 2001 From: Robin Cornett Date: Mon, 31 Aug 2015 18:27:43 -0400 Subject: [PATCH] updated readme, version --- README.md | 4 ++++ display-featured-image-genesis.php | 2 +- includes/class-displayfeaturedimagegenesis-common.php | 2 +- includes/class-displayfeaturedimagegenesis-output.php | 2 +- readme.txt | 9 ++++++++- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5ddb142..6ec1c17 100644 --- a/README.md +++ b/README.md @@ -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! diff --git a/display-featured-image-genesis.php b/display-featured-image-genesis.php index df31195..c029f7b 100644 --- a/display-featured-image-genesis.php +++ b/display-featured-image-genesis.php @@ -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+ diff --git a/includes/class-displayfeaturedimagegenesis-common.php b/includes/class-displayfeaturedimagegenesis-common.php index 357c0e5..77c2722 100644 --- a/includes/class-displayfeaturedimagegenesis-common.php +++ b/includes/class-displayfeaturedimagegenesis-common.php @@ -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. diff --git a/includes/class-displayfeaturedimagegenesis-output.php b/includes/class-displayfeaturedimagegenesis-output.php index 6479ec7..6c7870b 100644 --- a/includes/class-displayfeaturedimagegenesis-output.php +++ b/includes/class-displayfeaturedimagegenesis-output.php @@ -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'; diff --git a/readme.txt b/readme.txt index 34fbb0a..6fc3908 100644 --- a/readme.txt +++ b/readme.txt @@ -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!