From b44ac7e43a0755c36e22cc87121151ac16454cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20H=C3=B6reth?= Date: Mon, 20 Jul 2015 15:11:47 +0200 Subject: [PATCH] Updated changelog and bump to 2.2.0 --- CHANGELOG.md | 18 +++++++++++++----- featured-video-plus.php | 5 +++-- package.json | 2 +- readme.txt | 20 ++++++++++++++------ 4 files changed, 31 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1258e91..1952e62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,28 @@ # Changelog # -## 2.2.0: 2015-06-xx ## +## 2.2.0: 2015-07-20 ## * Shortcodes can now be used as featured content (e.g. `[gallery]`). +* Added fine tuned autoplay options. +* New option for hiding YouTube video annotations. ([*](https://wordpress.org/support/topic/add-feature-to-hide-youtube-screen-annotation)) +* Expose a JS function to manually re-initialize the plugin's JS behavior like responsive sizing and overlays. Specifically interesting when using FVP in combination with a infinite scroll plugin. ([*](https://wordpress.org/support/topic/open-video-overlay-when-featured-image-is-clicked-in-loop)) +* Fetch high quality thumbnails for YouTube and Dailymotion. ([*](https://wordpress.org/support/topic/featured-image-size-42)) +* Fix bug which suppressed the removal of foreign featured images. ([*](https://wordpress.org/support/topic/cannot-remove-featured-image-if-a-featured-video-is-set)) +* Fix 'undefined function exif_imagetype' error. ([*](https://wordpress.org/support/topic/cant-add-featured-video-1), [*](https://wordpress.org/support/topic/infinite-spinning-wheel-all-previous-videos-not-working-anymore), [*](https://wordpress.org/support/topic/error-message-444)) +* Implement a workaround for a bug with iframes in Google Chrome, see [[0](https://code.google.com/p/chromium/issues/detail?id=395533)], [[1](https://code.google.com/p/chromium/issues/detail?id=395791)]. ([*](https://wordpress.org/support/topic/found-a-huge-critical-bug-videos-vanish-after-using-back)) +* Fix bug which resulted in a invisible video playing in the background when using autoplay and overlay mode. ([*](https://wordpress.org/support/topic/video-overlay-with-autoplay-causes-two-videos-to-play)) ## 2.1.2: 2015-06-16 ## * Fix bug which resulted in missing featured images when a post did not have a featured video. ([*](https://wordpress.org/support/topic/cookie-send-to-you-and-video-yes-image-no), [*](https://wordpress.org/support/topic/version-221-featured-image-not-diplayed)) ## 2.1.1: 2015-06-15 ## -* Fix play and loading featured image overlay for some themes ([*](https://wordpress.org/support/topic/play-icon-missing)). +* Fix play and loading featured image overlay for some themes. ([*](https://wordpress.org/support/topic/play-icon-missing)) * Fix broken `remove featured image` link. ([*](https://wordpress.org/support/topic/cant-remove-featured-image-2), [*](https://wordpress.org/support/topic/version-210-conflict-with-wp-featured-image), [*](https://wordpress.org/support/topic/fvp-not-working-after-210-update)) ## 2.1.0: 2015-06-11 ## * Display options are now chained using OR - if one of them holds, the replace mode is used. -* Added `always use replace mode when viewing single posts and pages` option, was implicitly true since 2.0.0. ([*](https://wordpress.org/support/topic/featured-video-overrides-featured-image)). -* Fixed undefined warnings when using `WP_DEBUG` ([*](https://wordpress.org/support/topic/debug-error-16)). -* Fixed double-wrapped .post-thumbnails ([*](https://wordpress.org/support/topic/video-no-longer-appearing)). +* Added `always use replace mode when viewing single posts and pages` option, was implicitly true since 2.0.0. ([*](https://wordpress.org/support/topic/featured-video-overrides-featured-image)) +* Fixed undefined warnings when using `WP_DEBUG`. ([*](https://wordpress.org/support/topic/debug-error-16)) +* Fixed double-wrapped .post-thumbnails. ([*](https://wordpress.org/support/topic/video-no-longer-appearing)) * Lazy loading a video no longer breaks other videos. ([*](https://wordpress.org/support/topic/blank-screen-after-the-video-is-played)) ## 2.0.3: 2015-06-01 ## diff --git a/featured-video-plus.php b/featured-video-plus.php index 24d29a2..348d097 100644 --- a/featured-video-plus.php +++ b/featured-video-plus.php @@ -3,7 +3,7 @@ Plugin Name: Featured Video Plus Plugin URI: http://yrnxt.com/wordpress/featured-video-plus/ Description: Add Featured Videos to your posts and pages. -Version: 2.1.2 +Version: 2.2.0 Author: Alexander Höreth Author URI: http://yrnxt.com Text Domain: featured-video-plus @@ -32,7 +32,7 @@ // ******************** // CONSTANTS if ( ! defined( 'FVP_VERSION' ) ) { - define( 'FVP_VERSION', '2.1.2' ); + define( 'FVP_VERSION', '2.2.0' ); } $pathinfo = pathinfo( dirname( plugin_basename( __FILE__ ) ) ); @@ -72,6 +72,7 @@ $featured_video_plus = new FVP_Frontend(); } + // ******************** // PUBLIC API include_once( FVP_DIR . 'php/functions.php' ); diff --git a/package.json b/package.json index 3e3f56b..70fdd68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "featured-video-plus", - "version": "2.1.2", + "version": "2.2.0", "description": "A WordPress plugin adding featured image like functionality for videos.", "homepage": "http://yrnxt.com/wordpress/featured-video-plus", "main": "featured-video-plus.php", diff --git a/readme.txt b/readme.txt index 27680c7..e0f7889 100644 --- a/readme.txt +++ b/readme.txt @@ -10,7 +10,7 @@ License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Requires at least: 3.7 Tested up to: 4.2.2 -Stable tag: 2.1.2 +Stable tag: 2.2.0 Add Featured Videos to your posts and pages. Works like magic with most themes which use Featured Images. Local Media, YouTube, Vimeo and many more. @@ -107,21 +107,29 @@ Yes, please! Check out the public [Featured Video Plus Translation Project](http == Changelog == -= 2.2.0: 2015-06-xx = += 2.2.0: 2015-07-20 = * Shortcodes can now be used as featured content (e.g. `[gallery]`). +* Added fine tuned autoplay options. +* New option for hiding YouTube video annotations. ([*](https://wordpress.org/support/topic/add-feature-to-hide-youtube-screen-annotation)) +* Expose a JS function to manually re-initialize the plugin's JS behavior like responsive sizing and overlays. Specifically interesting when using FVP in combination with a infinite scroll plugin. ([*](https://wordpress.org/support/topic/open-video-overlay-when-featured-image-is-clicked-in-loop)) +* Fetch high quality thumbnails for YouTube and Dailymotion. ([*](https://wordpress.org/support/topic/featured-image-size-42)) +* Fix bug which suppressed the removal of foreign featured images. ([*](https://wordpress.org/support/topic/cannot-remove-featured-image-if-a-featured-video-is-set)) +* Fix 'undefined function exif_imagetype' error. ([*](https://wordpress.org/support/topic/cant-add-featured-video-1), [*](https://wordpress.org/support/topic/infinite-spinning-wheel-all-previous-videos-not-working-anymore), [*](https://wordpress.org/support/topic/error-message-444)) +* Implement a workaround for a bug with iframes in Google Chrome, see [[0](https://code.google.com/p/chromium/issues/detail?id=395533)], [[1](https://code.google.com/p/chromium/issues/detail?id=395791)]. ([*](https://wordpress.org/support/topic/found-a-huge-critical-bug-videos-vanish-after-using-back)) +* Fix bug which resulted in a invisible video playing in the background when using autoplay and overlay mode. ([*](https://wordpress.org/support/topic/video-overlay-with-autoplay-causes-two-videos-to-play)) = 2.1.2: 2015-06-16 = * Fix bug which resulted in missing featured images when a post did not have a featured video. ([*](https://wordpress.org/support/topic/cookie-send-to-you-and-video-yes-image-no), [*](https://wordpress.org/support/topic/version-221-featured-image-not-diplayed)) = 2.1.1: 2015-06-15 = -* Fix play and loading featured image overlay for some themes ([*](https://wordpress.org/support/topic/play-icon-missing)). +* Fix play and loading featured image overlay for some themes. ([*](https://wordpress.org/support/topic/play-icon-missing)) * Fix broken `remove featured image` link. ([*](https://wordpress.org/support/topic/cant-remove-featured-image-2), [*](https://wordpress.org/support/topic/version-210-conflict-with-wp-featured-image), [*](https://wordpress.org/support/topic/fvp-not-working-after-210-update)) = 2.1.0: 2015-06-11 = * Display options are now chained using OR - if one of them holds, the replace mode is used. -* Added `always use replace mode when viewing single posts and pages` option, was implicitly true since 2.0.0. ([*](https://wordpress.org/support/topic/featured-video-overrides-featured-image)). -* Fixed undefined warnings when using `WP_DEBUG` ([*](https://wordpress.org/support/topic/debug-error-16)). -* Fixed double-wrapped .post-thumbnails ([*](https://wordpress.org/support/topic/video-no-longer-appearing)). +* Added `always use replace mode when viewing single posts and pages` option, was implicitly true since 2.0.0. ([*](https://wordpress.org/support/topic/featured-video-overrides-featured-image)) +* Fixed undefined warnings when using `WP_DEBUG`. ([*](https://wordpress.org/support/topic/debug-error-16)) +* Fixed double-wrapped .post-thumbnails. ([*](https://wordpress.org/support/topic/video-no-longer-appearing)) * Lazy loading a video no longer breaks other videos. ([*](https://wordpress.org/support/topic/blank-screen-after-the-video-is-played)) = 2.0.3: 2015-06-01 =