Video Background - Version 2.6.2

Version Description

  • Added: version to wp_register_style()
Download this release

Release Info

Developer blakedotvegas
Plugin Icon 128x128 Video Background
Version 2.6.2
Comparing to
See all releases

Code changes from version 2.6.1 to 2.6.2

Files changed (2) hide show
  1. candide-vidbg.php +3 -3
  2. readme.txt +3 -0
candide-vidbg.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Video Background
4
  Plugin URI: https://pushlabs.co/documentation/video-background
5
  Description: WordPress plugin to easily assign a video background to any element. Awesome.
6
  Author: Push Labs
7
- Version: 2.6.1
8
  Author URI: https://pushlabs.co
9
  Text Domain: video-background
10
  Domain Path: /languages
@@ -19,7 +19,7 @@ if ( !defined( 'ABSPATH' ) ) {
19
  define( 'VIDBG_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
20
  define( 'VIDBG_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
21
  define( 'VIDBG_PLUGIN_BASE', plugin_basename(__FILE__) );
22
- define( 'VIDBG_PLUGIN_VERSION', '2.6.1' );
23
 
24
  /**
25
  * Install the plugin
@@ -114,7 +114,7 @@ add_action('admin_enqueue_scripts', 'vidbg_enqueue_admin_scripts');
114
  */
115
  function vidbg_enqueue_scripts() {
116
  wp_register_script( 'vidbg-video-background', plugins_url('/js/vidbg.min.js', __FILE__), array('jquery'), VIDBG_PLUGIN_VERSION, true);
117
- wp_register_style( 'vidbg-frontend-style', plugins_url( '/css/pushlabs-vidbg.css', __FILE__), VIDBG_PLUGIN_VERSION );
118
 
119
  // Enqueue the style
120
  wp_enqueue_style( 'vidbg-frontend-style' );
4
  Plugin URI: https://pushlabs.co/documentation/video-background
5
  Description: WordPress plugin to easily assign a video background to any element. Awesome.
6
  Author: Push Labs
7
+ Version: 2.6.2
8
  Author URI: https://pushlabs.co
9
  Text Domain: video-background
10
  Domain Path: /languages
19
  define( 'VIDBG_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
20
  define( 'VIDBG_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
21
  define( 'VIDBG_PLUGIN_BASE', plugin_basename(__FILE__) );
22
+ define( 'VIDBG_PLUGIN_VERSION', '2.6.2' );
23
 
24
  /**
25
  * Install the plugin
114
  */
115
  function vidbg_enqueue_scripts() {
116
  wp_register_script( 'vidbg-video-background', plugins_url('/js/vidbg.min.js', __FILE__), array('jquery'), VIDBG_PLUGIN_VERSION, true);
117
+ wp_register_style( 'vidbg-frontend-style', plugins_url( '/css/pushlabs-vidbg.css', __FILE__), array(), VIDBG_PLUGIN_VERSION );
118
 
119
  // Enqueue the style
120
  wp_enqueue_style( 'vidbg-frontend-style' );
readme.txt CHANGED
@@ -84,6 +84,9 @@ You sure can! Simply go to the "Settings > Video Background" menu tab and check
84
 
85
  == Changelog ==
86
 
 
 
 
87
  = 2.6.1 =
88
  * Fixed: Critical issue with the [vidbg] shortcode not displaying video backgrounds.
89
 
84
 
85
  == Changelog ==
86
 
87
+ = 2.6.2 =
88
+ * Added: version to wp_register_style()
89
+
90
  = 2.6.1 =
91
  * Fixed: Critical issue with the [vidbg] shortcode not displaying video backgrounds.
92