Version Description
- changed Lyte widget constructor to PHP5-style object contructor
- tested & confirmed working with WordPress 4.3
Download this release
Release Info
Developer | futtta |
Plugin | WP YouTube Lyte |
Version | 1.6.3 |
Comparing to | |
See all releases |
Code changes from version 1.6.2 to 1.6.3
- readme.txt +7 -3
- widget.php +2 -2
- wp-youtube-lyte.php +1 -1
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WP YouTube Lyte ===
|
2 |
-
Contributors: futtta
|
3 |
Tags: youtube, video, lyte, lite youtube embeds, html5 video, widget, youtube audio, audio, playlist, performance, accessibility, sidebar, lazy load, responsive, microdata, videoobject
|
4 |
Donate link: http://blog.futtta.be/2013/10/21/do-not-donate-to-me/
|
5 |
Requires at least: 2.9
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.6.
|
8 |
|
9 |
High performance YouTube video, playlist and audio-only embeds which don't slow down your blog and offer optimal accessibility.
|
10 |
|
@@ -144,6 +144,10 @@ Just tell me, I like the feedback! Use the [Contact-page on my blog](http://blog
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
147 |
= 1.6.2 =
|
148 |
* improvement: youtube playlist URL will now be recognized automatically and rendered LYTE as well (hat tip to [markothaler for proposing this](https://wordpress.org/support/topic/playlist-recognition-possible))
|
149 |
* improvement: enter "none" in API key not to be bothered by the missing key notice any more (as [requested by TheGiantRedFox1986](https://wordpress.org/support/topic/remove-notice-in-backend))
|
1 |
=== WP YouTube Lyte ===
|
2 |
+
Contributors: futtta, optimizingmatters
|
3 |
Tags: youtube, video, lyte, lite youtube embeds, html5 video, widget, youtube audio, audio, playlist, performance, accessibility, sidebar, lazy load, responsive, microdata, videoobject
|
4 |
Donate link: http://blog.futtta.be/2013/10/21/do-not-donate-to-me/
|
5 |
Requires at least: 2.9
|
6 |
+
Tested up to: 4.3
|
7 |
+
Stable tag: 1.6.3
|
8 |
|
9 |
High performance YouTube video, playlist and audio-only embeds which don't slow down your blog and offer optimal accessibility.
|
10 |
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
= 1.6.3 =
|
148 |
+
* changed Lyte widget constructor to PHP5-style object contructor
|
149 |
+
* tested & confirmed working with WordPress 4.3
|
150 |
+
|
151 |
= 1.6.2 =
|
152 |
* improvement: youtube playlist URL will now be recognized automatically and rendered LYTE as well (hat tip to [markothaler for proposing this](https://wordpress.org/support/topic/playlist-recognition-possible))
|
153 |
* improvement: enter "none" in API key not to be bothered by the missing key notice any more (as [requested by TheGiantRedFox1986](https://wordpress.org/support/topic/remove-notice-in-backend))
|
widget.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
class WYLWidget extends WP_Widget {
|
3 |
-
function
|
4 |
-
|
5 |
}
|
6 |
|
7 |
function widget($args, $instance) {
|
1 |
<?php
|
2 |
class WYLWidget extends WP_Widget {
|
3 |
+
public function __construct() {
|
4 |
+
parent::__construct(false, $name = 'WP YouTube Lyte');
|
5 |
}
|
6 |
|
7 |
function widget($args, $instance) {
|
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.6.
|
8 |
Author URI: http://blog.futtta.be/
|
9 |
Text Domain: wp-youtube-lyte
|
10 |
Domain Path: /languages
|
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.6.3
|
8 |
Author URI: http://blog.futtta.be/
|
9 |
Text Domain: wp-youtube-lyte
|
10 |
Domain Path: /languages
|