Version Description
- September 12th, 2014 = * Set z-index CSS property to 99999 on play/pause button, so that it always appears on top of any other HTML elements.
Download this release
Release Info
Developer | bducouedic |
Plugin | Soundy Background Music |
Version | 2.6 |
Comparing to | |
See all releases |
Code changes from version 2.5 to 2.6
- css/style-front-end.css +4 -3
- readme.txt +5 -2
- soundy.php +3 -3
css/style-front-end.css
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
.war_soundy_audio_control {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
cursor: pointer !important;
|
|
|
6 |
}
|
1 |
.war_soundy_audio_control {
|
2 |
+
border: red 0px solid !important;
|
3 |
+
border-radius: 0px !important;
|
4 |
+
box-shadow: none !important;
|
5 |
cursor: pointer !important;
|
6 |
+
z-index: 99999 !important;
|
7 |
}
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: bducouedic
|
3 |
Tags: audio, sound, music, background, soundtrack, background sound, background audio, background music, posts, pages
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 2.
|
7 |
License: GPL2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Donate link: http://webartisan.ch/en/products/soundy-background-music/free-wordpress-plugin/#wa_donate
|
@@ -167,6 +167,9 @@ This happens when the PHP parser version is too old. Soundy needs PHP 5.3 or hig
|
|
167 |
|
168 |
= Changelog =
|
169 |
|
|
|
|
|
|
|
170 |
= 2.5 - July 28th, 2014 =
|
171 |
* Fixed bug introduced in 2.4: Soundy's metabox in Edit Page/Post did merge with other metaboxes.
|
172 |
|
2 |
Contributors: bducouedic
|
3 |
Tags: audio, sound, music, background, soundtrack, background sound, background audio, background music, posts, pages
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 4.0
|
6 |
+
Stable tag: 2.6
|
7 |
License: GPL2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Donate link: http://webartisan.ch/en/products/soundy-background-music/free-wordpress-plugin/#wa_donate
|
167 |
|
168 |
= Changelog =
|
169 |
|
170 |
+
= 2.6 - September 12th, 2014 =
|
171 |
+
* Set z-index CSS property to 99999 on play/pause button, so that it always appears on top of any other HTML elements.
|
172 |
+
|
173 |
= 2.5 - July 28th, 2014 =
|
174 |
* Fixed bug introduced in 2.4: Soundy's metabox in Edit Page/Post did merge with other metaboxes.
|
175 |
|
soundy.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Soundy_Background_Music
|
4 |
-
* @version 2.
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Soundy Background Music
|
8 |
Plugin URI: http://www.webartisan.ch/en/products/soundy-background-music/free-wordpress-plugin/
|
9 |
Description: This plugin allows administrators and authors to set a background sound on any post or page.
|
10 |
-
Version: 2.
|
11 |
Author: Bertrand du Couédic
|
12 |
Author URI: http://webartisan.ch/en/about
|
13 |
License: GPL2
|
@@ -31,7 +31,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
31 |
class WarSoundy
|
32 |
{
|
33 |
public $soundy_type = 'free';
|
34 |
-
public $soundy_version = '2.
|
35 |
public $soundy_free_wp_home_url = 'http://wordpress.org/plugins/soundy-background-music/';
|
36 |
public $sdy_pl_free_wp_home_url = 'http://wordpress.org/plugins/soundy-audio-playlist/';
|
37 |
public $soundy_pro_home_url = 'http://webartisan.ch/products/soundy-background-music/pro-wordpress-plugin/';
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Soundy_Background_Music
|
4 |
+
* @version 2.6
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Soundy Background Music
|
8 |
Plugin URI: http://www.webartisan.ch/en/products/soundy-background-music/free-wordpress-plugin/
|
9 |
Description: This plugin allows administrators and authors to set a background sound on any post or page.
|
10 |
+
Version: 2.6
|
11 |
Author: Bertrand du Couédic
|
12 |
Author URI: http://webartisan.ch/en/about
|
13 |
License: GPL2
|
31 |
class WarSoundy
|
32 |
{
|
33 |
public $soundy_type = 'free';
|
34 |
+
public $soundy_version = '2.6';
|
35 |
public $soundy_free_wp_home_url = 'http://wordpress.org/plugins/soundy-background-music/';
|
36 |
public $sdy_pl_free_wp_home_url = 'http://wordpress.org/plugins/soundy-audio-playlist/';
|
37 |
public $soundy_pro_home_url = 'http://webartisan.ch/products/soundy-background-music/pro-wordpress-plugin/';
|