Update readme, version

This commit is contained in:
Robin Cornett
2019-06-30 16:05:36 -04:00
parent 17228b2f7b
commit 0aecc9982d
5 changed files with 18 additions and 8 deletions
+7 -2
View File
@@ -46,7 +46,7 @@ __Display Featured Image for Genesis__ has some styling built in but I have inte
* `.featured` is appended to the large image output directly above the post/page content.
## Requirements
* WordPress 4.8, tested up to 5.2
* WordPress 5.0, tested up to 5.2
* the Genesis Framework
## Installation
@@ -65,7 +65,7 @@ __Display Featured Image for Genesis__ has some styling built in but I have inte
3. Copy the folder to your `/wp-content/plugins/` directory.
4. Go to the Plugins screen and click __Activate__.
Check out the Codex for more information about [installing plugins manually](http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation).
Check out the Codex for more information about [installing plugins manually](https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation).
### Git
@@ -254,6 +254,11 @@ Similar hooks:
## Changelog
### 3.2.0
* added: blocks for featured term, featured content type, and featured author
* fixed: output when multiple widgets/blocks are displayed
* updated: shortcode/block validation
### 3.1.0
* added: option to display the banner image using only CSS and responsive images, instead of JavaScript
* changed: CSS, mostly related to the CSS-only banner image, but also made entry title CSS less specific
+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.1.0
* Version: 3.2.0
* 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.1.0';
public $version = '3.2.0';
/**
* @var $instance
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "display-featured-image-genesis",
"description": "Display Featured Image for Genesis",
"version": "3.1.0",
"version": "3.2.0",
"private": true,
"license": "GPL-2.0",
"devDependencies": {
+8 -3
View File
@@ -3,9 +3,9 @@
Contributors: littler.chicken
Donate link: https://robincornett.com/donate/
Tags: banner, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss
Requires at least: 4.8
Requires at least: 5.0
Tested up to: 5.2
Stable tag: 3.1.0
Stable tag: 3.2.0
Requires PHP: 5.6
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -216,10 +216,15 @@ Similar hooks:
== Upgrade Notice ==
3.1.0: new scriptless image option, improved/simplified styling. Significant changes in code organization!
3.2.0: the featured image widgets are now available as blocks!
== Changelog ==
= 3.2.0 =
* added: blocks for featured term, featured content type, and featured author
* fixed: output when multiple widgets/blocks are displayed
* updated: shortcode/block validation
= 3.1.0 =
* added: option to display the banner image using only CSS and responsive images, instead of JavaScript
* changed: CSS, mostly related to the CSS-only banner image, but also made entry title CSS less specific