Update readme, version

This commit is contained in:
Robin Cornett
2018-05-30 09:36:46 -04:00
parent cde32c7c8d
commit e749c14189
4 changed files with 25 additions and 5 deletions
+9
View File
@@ -106,6 +106,12 @@ The parameters/attributes for these mirror the widget options, so you can explor
Alternatively, the much easier method entails visiting the settings page (under Appearance) and enabling the shortcode buttons for the post editor. With the shortcode buttons enabled, you can use the familiar widget form to build the shortcode and add it anywhere you like.
### What happened to my default/post type featured image?
If these images were saved to your database prior to version 2.2.0 of this plugin and you've never updated the plugin settings since then, these images may have effectively disappeared in version 3.0.0. To fix this, visit the plugin settings page, reselect your default/post type image(s), and save.
Prior to version 2.2.0 of the plugin, these images were saved to the database as URL strings, rather than as ID numbers, which was hugely inefficient. This was changed in version 2.2.0, with backwards compatible helper functions to ease the transition, but the helper functions are no longer used as of version 3.0.0.
### What is term metadata and why does it matter to me?
*Update for version 2.5:* Genesis 2.3 changed how term archive headlines/descriptions will be pulled from the database. __Display Featured Image for Genesis__ has been using the old, inefficient method for getting the Genesis term information, which is no longer supported in Genesis. Version 2.5 uses the new, better method to retrieve the Genesis term metadata (for archive headlines and intro text). Please make sure that your plugin is up to date so that you do not get unexpected behavior. (see [StudioPress](http://www.studiopress.com/important-announcement-for-genesis-plugin-developers/) for more information)
@@ -243,6 +249,9 @@ Similar hooks:
## Changelog
### 3.0.1
* fixed: check for default featured image
### 3.0.0
* added: preferred image size (set to backstretch or large for the entire site)
* added: setting to prefer fallback/large images per content type
+1 -1
View File
@@ -12,7 +12,7 @@
* Plugin Name: Display Featured Image for Genesis
* Plugin URI: https://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: 3.0.0
* Version: 3.0.1
* Author: Robin Cornett
* Author URI: https://robincornett.com
* Text Domain: display-featured-image-genesis
@@ -18,7 +18,7 @@ class Display_Featured_Image_Genesis_Common {
* @var string
* @since 1.4.3
*/
public $version = '3.0.0';
public $version = '3.0.1';
/**
* set and retrieve variables for the featured image.
+13 -2
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: 4.4
Tested up to: 4.9
Stable tag: 3.0.0
Stable tag: 3.0.1
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -77,6 +77,12 @@ The parameters/attributes for these mirror the widget options, so you can explor
Alternatively, the much easier method entails visiting the settings page (under Appearance) and enabling the shortcode buttons for the post editor. With the shortcode buttons enabled, you can use the familiar widget form to build the shortcode and add it anywhere you like.
= What happened to my default/post type featured image? =
If these images were saved to your database prior to version 2.2.0 of this plugin and you've never updated the plugin settings since then, these images may have effectively disappeared in version 3.0.0. To fix this, visit the plugin settings page, reselect your default/post type image(s), and save.
Prior to version 2.2.0 of the plugin, these images were saved to the database as URL strings, rather than as ID numbers, which was hugely inefficient. This was changed in version 2.2.0, with backwards compatible helper functions to ease the transition, but the helper functions are no longer used as of version 3.0.0.
= What is term metadata and why does it matter to me? =
*Update for version 2.5:* Genesis 2.3 changed how term archive headlines/descriptions are pulled from the database. As of version 2.5, __Display Featured Image for Genesis__ uses the new, better method to retrieve the Genesis term metadata (for archive headlines and intro text). Please make sure that your plugin is up to date so that you do not get unexpected behavior. (see [StudioPress](http://www.studiopress.com/important-announcement-for-genesis-plugin-developers/) for more information)
@@ -201,10 +207,15 @@ Similar hooks:
4. Quickly see the featured image assigned to each post or term.
== Upgrade Notice ==
3.0.0: potential breaking changes. new minimum WP version supported is 4.4! Also, widgets have been updated, shortcodes introduced, and new and post meta for more image control.
3.0.1: fixed default image not being included in image selection
3.0.0: potential breaking changes. new minimum WP version supported is 4.4! Also, widgets have been updated, shortcodes introduced, and new settings/post meta for more image control.
== Changelog ==
= 3.0.1 =
* fixed: check for default featured image
= 3.0.0 =
* added: preferred image size (set to backstretch or large for the entire site)
* added: setting to prefer fallback/large images per content type