update docs, tentative 2.1.0

This commit is contained in:
Robin Cornett
2015-02-18 18:28:07 -05:00
parent 1dba657602
commit 24a3836466
5 changed files with 17 additions and 3 deletions
+6
View File
@@ -184,6 +184,12 @@ _Note:_ because the entry header applies to all posts on a page, such as a blog
## Changelog ## Changelog
### 2.1.0
* added HTML5 headline support
* added lots of filters: for large image output, descriptions, titles, body clases, backstretch image settings
* fixed image assignment process to correctly handle term, post type featured images as intermediate fallback images
* bugfix: corrected output if term image has been deleted
### 2.0.0 - 2015-02-03 ### 2.0.0 - 2015-02-03
* added featured images to taxonomy terms! * added featured images to taxonomy terms!
* added featured images to custom post type archive pages! * added featured images to custom post type archive pages!
+1 -1
View File
@@ -12,7 +12,7 @@
* Plugin Name: Display Featured Image for Genesis * Plugin Name: Display Featured Image for Genesis
* Plugin URI: http://github.com/robincornett/display-featured-image-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. * Description: This plugin works within the Genesis Framework, to display featured images in beautiful and dynamic ways.
* Version: 2.0.0 * Version: 2.1.0
* Author: Robin Cornett * Author: Robin Cornett
* Author URI: http://robincornett.com * Author URI: http://robincornett.com
* License: GPL-2.0+ * License: GPL-2.0+
@@ -13,7 +13,7 @@ class Display_Featured_Image_Genesis_Common {
* @var string * @var string
* @since 1.4.3 * @since 1.4.3
*/ */
public static $version = '2.0.1'; public static $version = '2.1.0';
protected static $post_types; protected static $post_types;
+2
View File
@@ -12,6 +12,8 @@
/** /**
* gets the term image ID * gets the term image ID
* @return image_id reusable function to get a post's term image, if it exists * @return image_id reusable function to get a post's term image, if it exists
*
* @since 2.1.0
*/ */
function display_featured_image_genesis_get_term_image() { function display_featured_image_genesis_get_term_image() {
$taxonomies = get_taxonomies(); $taxonomies = get_taxonomies();
+7 -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 Tags: backstretch, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss
Requires at least: 3.8 Requires at least: 3.8
Tested up to: 4.1 Tested up to: 4.1
Stable tag: 2.0.0 Stable tag: 2.1.0
License: GPL-2.0+ License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -151,6 +151,12 @@ New feature! Add featured images to taxonomy terms and custom post type archives
== Changelog == == Changelog ==
= 2.1.0 =
* added HTML5 headline support
* added lots of filters: for large image output, descriptions, titles, body clases, backstretch image settings
* fixed image assignment process to correctly handle term, post type featured images as intermediate fallback images
* bugfix: corrected output if term image has been deleted
= 2.0.0 = = 2.0.0 =
* added featured images to taxonomy terms! * added featured images to taxonomy terms!
* added featured images to custom post type archive pages! * added featured images to custom post type archive pages!