Changeset 1488350
- Timestamp:
- 09/01/2016 06:48:50 PM (10 years ago)
- Location:
- zbplayer/trunk
- Files:
-
- 4 edited
-
css/zbPlayer.css (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
zbPlayer.admin.php (modified) (1 diff)
-
zbPlayer.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zbplayer/trunk/css/zbPlayer.css
r1487696 r1488350 1 1 .zbPlayerNative {display: none;} 2 2 .zbPlayerNativeMobile {width: 100%;} 3 div.zbPlayer span a img{display: inline;} -
zbplayer/trunk/readme.txt
r1338499 r1488350 5 5 Requires at least: 3.5 6 6 Tested up to: 4.4.1 7 Stable tag: 2. 1.137 Stable tag: 2.2 8 8 License: Dual Licensed under the MIT and GPLv2 or later 9 9 … … 51 51 52 52 == Changelog == 53 54 = 2.2 = 55 * Show native player for mobile if flag selected in admin 53 56 54 57 = 2.1.13 = -
zbplayer/trunk/zbPlayer.admin.php
r1486755 r1488350 7 7 * 8 8 * zbPlayer.admin.php 9 * Release 2. 1.13 January20169 * Release 2.2 September 2016 10 10 */ 11 11 -
zbplayer/trunk/zbPlayer.php
r1487696 r1488350 4 4 Plugin URI: http://gilevich.com/portfolio/zbplayer 5 5 Description: Converts mp3 files links to a small flash player and a link to download file mp3 file. Also you can share your mp3 files with that plugin. 6 Version: 2. 1.136 Version: 2.2 7 7 Author: Vladimir Gilevich 8 8 Author URI: http://gilevich.com/ … … 10 10 */ 11 11 12 define('ZBPLAYER_VERSION', "2. 1.13");12 define('ZBPLAYER_VERSION', "2.2"); 13 13 define('ZBPLAYER_DEFAULT_WIDTH', "500"); 14 14 define('ZBPLAYER_DEFAULT_INITIALVOLUME', "60"); … … 42 42 add_filter('the_content', 'zbp_content'); 43 43 add_action('plugins_loaded', 'zbp_init'); 44 add_action('wp_enqueue_scripts', 'zbp_init_scripts'); 44 45 45 46 function zbp_init() … … 81 82 } 82 83 zbp_load_language_file(); 83 84 } 85 86 function zbp_init_scripts() 87 { 84 88 wp_enqueue_style('zbplayer-style', get_bloginfo('wpurl').'/'.str_replace("\\", '/', substr(realpath(dirname(__FILE__)), strlen(ABSPATH))) . '/css/zbPlayer.css'); 85 89 wp_enqueue_script('zbplayer-flash', get_bloginfo('wpurl').'/'.str_replace("\\", '/', substr(realpath(dirname(__FILE__)), strlen(ABSPATH))) . '/js/zbPlayerFlash.js');
Note: See TracChangeset
for help on using the changeset viewer.