aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--languages/librevideojs-html5-player-es_ES.po2
-rw-r--r--languages/librevideojs-html5-player-ja.po2
-rw-r--r--languages/librevideojs-html5-player-pt_PT.po2
-rw-r--r--languages/librevideojs-html5-player.pot2
-rw-r--r--librevideojs-html5-player.php15
-rw-r--r--librevideojs/selector/video-quality-selector.js4
-rw-r--r--readme.txt7
7 files changed, 20 insertions, 14 deletions
diff --git a/languages/librevideojs-html5-player-es_ES.po b/languages/librevideojs-html5-player-es_ES.po
index 6c422de..dab18ba 100644
--- a/languages/librevideojs-html5-player-es_ES.po
+++ b/languages/librevideojs-html5-player-es_ES.po
@@ -36,6 +36,6 @@ msgstr ""
"Para obtener documentación detallada, por favor visite la página de plugin <a target="
"\"_blank\" href=\"%s\">here</a>."
-#: librevideojs-html5-player.php:129
+#: librevideojs-html5-player.php:132
msgid "you need to specify the src of the video file"
msgstr "es necesario especificar el src del archivo de vídeo"
diff --git a/languages/librevideojs-html5-player-ja.po b/languages/librevideojs-html5-player-ja.po
index 4585372..6c789f0 100644
--- a/languages/librevideojs-html5-player-ja.po
+++ b/languages/librevideojs-html5-player-ja.po
@@ -36,6 +36,6 @@ msgid ""
msgstr ""
"詳細なドキュメントについては、プラグインのホームページをご覧ください。<a target=\"_blank\" href=\"%s\">ここに</a>."
-#: librevideojs-html5-player.php:129
+#: librevideojs-html5-player.php:132
msgid "you need to specify the src of the video file"
msgstr "あなたはビデオファイルのsrcを指定する必要があります"
diff --git a/languages/librevideojs-html5-player-pt_PT.po b/languages/librevideojs-html5-player-pt_PT.po
index 1442f88..51f1658 100644
--- a/languages/librevideojs-html5-player-pt_PT.po
+++ b/languages/librevideojs-html5-player-pt_PT.po
@@ -37,6 +37,6 @@ msgstr ""
"Para documentação detalhada, visite a homepage do plugin <a "
"target=\"_blank\" href=\"%s\">aqui</a>."
-#: librevideojs-html5-player.php:129
+#: librevideojs-html5-player.php:132
msgid "you need to specify the src of the video file"
msgstr "Você precisa especificar o src do arquivo de vídeo"
diff --git a/languages/librevideojs-html5-player.pot b/languages/librevideojs-html5-player.pot
index c11979e..889475c 100644
--- a/languages/librevideojs-html5-player.pot
+++ b/languages/librevideojs-html5-player.pot
@@ -32,6 +32,6 @@ msgid ""
"\"_blank\" href=\"%s\">here</a>."
msgstr ""
-#: librevideojs-html5-player.php:129
+#: librevideojs-html5-player.php:132
msgid "you need to specify the src of the video file"
msgstr ""
diff --git a/librevideojs-html5-player.php b/librevideojs-html5-player.php
index 697b5d0..4ba5ba6 100644
--- a/librevideojs-html5-player.php
+++ b/librevideojs-html5-player.php
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: LibreVideoJS HTML5 Player
-Version: 1.0.4
+Version: 1.1.0
Plugin URI: https://wordpress.org/plugins/librevideojs-html5-player
Author: <a href="https://conocimientoslibres.tuxfamily.org">Jesús Eduardo</a>, <a href="http://www.freakspot.net/">Jorge Maldonado</a>
Description: Reproductor de vídeo Libre en Responsive Desing HTML5 para WordPress, construido sobre el ampliamente utilizado <a href="https://notabug.org/Heckyel/LibreVideoJS">LibreVideoJS</a> de la biblioteca del reproductor de vídeo HTML5. Le permite incrustar vídeo en tu post o página con HTML5 para los navegadores principales. Es compatible con <a href="https://www.gnu.org/software/librejs/free-your-javascript.html">LibreJS</a> de acuerdo con la filosofía <a href="https://www.gnu.org">GNU</a>.
@@ -20,7 +20,7 @@ if (!class_exists('LIBREVIDEOJS_HTML5_PLAYER')) {
class LIBREVIDEOJS_HTML5_PLAYER {
- var $plugin_version = '1.0.4';
+ var $plugin_version = '1.1.0';
function __construct() {
define('LIBREVIDEOJS_HTML5_PLAYER_VERSION', $this->plugin_version);
@@ -149,6 +149,7 @@ function librevideojs_html5_video_embed_handler($atts, $content=null) {
else{
$controls = " controls";
}
+
//preload
if($preload == "metadata") {
$preload = ' preload="metadata"';
@@ -159,6 +160,7 @@ function librevideojs_html5_video_embed_handler($atts, $content=null) {
else{
$preload = ' preload="auto"';
}
+
//autoplay
if($autoplay == "true"){
$autoplay = " autoplay";
@@ -166,6 +168,7 @@ function librevideojs_html5_video_embed_handler($atts, $content=null) {
else{
$autoplay = "";
}
+
//loop
if($loop == "true"){
$loop = " loop";
@@ -173,6 +176,7 @@ function librevideojs_html5_video_embed_handler($atts, $content=null) {
else{
$loop = "";
}
+
//muted
if($muted == "true"){
$muted = " muted";
@@ -180,15 +184,16 @@ function librevideojs_html5_video_embed_handler($atts, $content=null) {
else{
$muted = "";
}
- // Tracks
+
+ //Tracks
if(!is_null( $content )){
$track = do_shortcode($content);
}
else{
- $track = "";
+ $track = "";
}
- // Qualities
+ //Qualities
if(!is_null( $content = '' )){
$calidades = do_shortcode($content);
}
diff --git a/librevideojs/selector/video-quality-selector.js b/librevideojs/selector/video-quality-selector.js
index 9e3184f..263db14 100644
--- a/librevideojs/selector/video-quality-selector.js
+++ b/librevideojs/selector/video-quality-selector.js
@@ -1,11 +1,11 @@
/*!
- * @source:
+ * @source: here!
* @base: https://github.com/dominic-p/videojs-resolution-selector
*
* @licstart The following is the entire license notice for the
* JavaScript code in this page.
*
- * Copyleft 2016 Jesus E. M.
+ * Copyleft 2016 Jesus Estupiñán Medina
*
* The JavaScript code in this page is free software: you can
* redistribute it and/or modify it under the terms of the GNU
diff --git a/readme.txt b/readme.txt
index 54917e7..aeefb6e 100644
--- a/readme.txt
+++ b/readme.txt
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=94ETC
Tags: video, wpvideo, HTML5, videojs, mobile, playlists, embed video, librevideojs, player, video player, embed, lightweight, minimal, myvideo, responsive
requires at least: 4.2
Tested up to: 4.7.2
-Stable tag: 1.0.4
+Stable tag: 1.1.0
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -174,8 +174,9 @@ None
== Changelog ==
-= 1.0.4 =
-* New skin-material and skin-mix
+= 1.1.0 =
+* Smart shortcode
+* New multicolors skin-material and skin-mix
* Debugging cliplibrejs.dev.js
= 1.0.3 =