WP YouTube Lyte - Version 1.1.7

Version Description

  • bugfix: 1.1.6 broke excerpts, as reported by Franz of noobtech.at
Download this release

Release Info

Developer futtta
Plugin Icon 128x128 WP YouTube Lyte
Version 1.1.7
Comparing to
See all releases

Code changes from version 1.1.6 to 1.1.7

Files changed (2) hide show
  1. readme.txt +4 -1
  2. wp-youtube-lyte.php +3 -2
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: futtta
3
  Tags: youtube, video, lyte, lite youtube embeds, html5 video, html5, widget, youtube audio, audio, playlist, youtube playlist, hd, performance, accessibility, sidebar, lazy load
4
  Requires at least: 2.9
5
  Tested up to: 3.4
6
- Stable tag: 1.1.6
7
 
8
  High performance YouTube video, playlist and audio-only embeds which don't slow down your blog and offer optimal accessibility.
9
 
@@ -76,6 +76,9 @@ Just tell me, I like the feedback! Use the [Contact-page on my blog](http://blog
76
 
77
  == Changelog ==
78
 
 
 
 
79
  = 1.1.6 =
80
  * bugfix: remove noscript-stuff from the_excerpt [as requested by wordpressvoxbox13](http://wordpress.org/support/topic/plugin-wp-youtube-lyte-wp-youtube-lyte-adds-text-to-my-posts?replies=8#post-2977006)
81
  * bugfix: switch HTTPS detection to is_ssl() WordPress function to avoid breakage on MS IIS
3
  Tags: youtube, video, lyte, lite youtube embeds, html5 video, html5, widget, youtube audio, audio, playlist, youtube playlist, hd, performance, accessibility, sidebar, lazy load
4
  Requires at least: 2.9
5
  Tested up to: 3.4
6
+ Stable tag: 1.1.7
7
 
8
  High performance YouTube video, playlist and audio-only embeds which don't slow down your blog and offer optimal accessibility.
9
 
76
 
77
  == Changelog ==
78
 
79
+ = 1.1.7 =
80
+ * bugfix: 1.1.6 broke excerpts, as reported by Franz of [noobtech.at](http://www.noobtech.at)
81
+
82
  = 1.1.6 =
83
  * bugfix: remove noscript-stuff from the_excerpt [as requested by wordpressvoxbox13](http://wordpress.org/support/topic/plugin-wp-youtube-lyte-wp-youtube-lyte-adds-text-to-my-posts?replies=8#post-2977006)
84
  * bugfix: switch HTTPS detection to is_ssl() WordPress function to avoid breakage on MS IIS
wp-youtube-lyte.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP YouTube Lyte
4
  Plugin URI: http://blog.futtta.be/wp-youtube-lyte/
5
  Description: Lite and accessible YouTube audio and video embedding.
6
  Author: Frank Goossens (futtta)
7
- Version: 1.1.6
8
  Author URI: http://blog.futtta.be/
9
  Text Domain: wp-youtube-lyte
10
  Domain Path: /languages
@@ -13,7 +13,7 @@ Domain Path: /languages
13
  $debug=false;
14
 
15
  if (!$debug) {
16
- $wyl_version="1.1.6";
17
  $wyl_file="lyte-min.js";
18
  } else {
19
  $wyl_version=rand()/1000;
@@ -178,6 +178,7 @@ function lyte_init() {
178
 
179
  function lyte_parse_excerpt($the_content){
180
  lyte_parse($the_content,$doExcerpt="true");
 
181
  }
182
 
183
  /** YouTube shortcode */
4
  Plugin URI: http://blog.futtta.be/wp-youtube-lyte/
5
  Description: Lite and accessible YouTube audio and video embedding.
6
  Author: Frank Goossens (futtta)
7
+ Version: 1.1.7
8
  Author URI: http://blog.futtta.be/
9
  Text Domain: wp-youtube-lyte
10
  Domain Path: /languages
13
  $debug=false;
14
 
15
  if (!$debug) {
16
+ $wyl_version="1.1.7";
17
  $wyl_file="lyte-min.js";
18
  } else {
19
  $wyl_version=rand()/1000;
178
 
179
  function lyte_parse_excerpt($the_content){
180
  lyte_parse($the_content,$doExcerpt="true");
181
+ return $the_content;
182
  }
183
 
184
  /** YouTube shortcode */