aboutsummaryrefslogtreecommitdiffstats
path: root/librevideojs-html5-player.php
diff options
context:
space:
mode:
authorHeckyel <heckyel@openmailbox.org>2017-02-26 18:16:35 -0500
committerHeckyel <heckyel@openmailbox.org>2017-02-26 18:16:35 -0500
commit33700d8fa9baf8b779d5a6eaed5c722a773e16fe (patch)
tree19fe4376eb331e828d93e34704de2e44c736594c /librevideojs-html5-player.php
parentc7857b172d48524eee9acbb1bcf49ebb8805b650 (diff)
downloadlibrevideojs-html5-player-33700d8fa9baf8b779d5a6eaed5c722a773e16fe.tar.lz
librevideojs-html5-player-33700d8fa9baf8b779d5a6eaed5c722a773e16fe.tar.xz
librevideojs-html5-player-33700d8fa9baf8b779d5a6eaed5c722a773e16fe.zip
Correction style of play button and New version
Diffstat (limited to 'librevideojs-html5-player.php')
-rw-r--r--librevideojs-html5-player.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/librevideojs-html5-player.php b/librevideojs-html5-player.php
index b5f9eb4..d49d577 100644
--- a/librevideojs-html5-player.php
+++ b/librevideojs-html5-player.php
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: LibreVideoJS HTML5 Player
-Version: 1.2.1
+Version: 1.2.2
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.2.1';
+ var $plugin_version = '1.2.2';
function __construct(){
define('L_VERSION', $this->plugin_version);
@@ -85,12 +85,12 @@ function librevideojs_html5_player_enqueue_scripts(){
$plugin_url = plugins_url('', __FILE__);
if ( is_home() || is_archive() || is_category() || is_tag() ){
wp_enqueue_style('lvjs-mix-master', $plugin_url . '/librevideojs/css/mix-material/master.css', array(), '1.4');
- wp_enqueue_style('lvjs-material', $plugin_url . '/librevideojs/css/material/master.css', array(), '1.4');
+ wp_enqueue_style('lvjs-material', $plugin_url . '/librevideojs/css/material/master.css', array(), '1.4.1');
wp_enqueue_style('lvjs-selector', $plugin_url . '/librevideojs/css/quality-selector.css', array(), '1.4.1');
wp_enqueue_script('lvjs', $plugin_url . '/librevideojs/js/cliplibrejs.dev.js', array(), L_VERSION);
} else if ( ( is_author() || is_page() || is_single() ) && strpos($post->post_content, '[librevideojs_video') !== false ){
wp_enqueue_style('lvjs-mix-master', $plugin_url . '/librevideojs/css/mix-material/master.css', array(), '1.4');
- wp_enqueue_style('lvjs-material', $plugin_url . '/librevideojs/css/material/master.css', array(), '1.4');
+ wp_enqueue_style('lvjs-material', $plugin_url . '/librevideojs/css/material/master.css', array(), '1.4.1');
wp_enqueue_style('lvjs-selector', $plugin_url . '/librevideojs/css/quality-selector.css', array(), '1.4.1');
wp_enqueue_script('lvjs', $plugin_url . '/librevideojs/js/cliplibrejs.dev.js', array(), L_VERSION);
} else {