Changeset 1425493
- Timestamp:
- 05/27/2016 12:44:13 PM (10 years ago)
- Location:
- playerzbr
- Files:
-
- 4 edited
-
tags/1.5.2/playerzbr.php (modified) (10 diffs)
-
tags/1.5.2/readme.txt (modified) (3 diffs)
-
trunk/playerzbr.php (modified) (10 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
playerzbr/tags/1.5.2/playerzbr.php
r1337251 r1425493 17 17 */ 18 18 19 /* 20 21 * Copyright 201 5 Pedro Laxe <pedrolaxe@gmail.com>22 23 * 19 /* 20 21 * Copyright 2016 Pedro Laxe <pedro@phpsec.com.br> 22 23 * 24 24 25 25 * This program is free software; you can redistribute it and/or modify … … 31 31 * (at your option) any later version. 32 32 33 * 33 * 34 34 35 35 * This program is distributed in the hope that it will be useful, … … 41 41 * GNU General Public License for more details. 42 42 43 * 43 * 44 44 45 45 * You should have received a copy of the GNU General Public License … … 61 61 /** 62 62 63 * Function Activate PlayerZBR 63 * Function Activate PlayerZBR 64 64 65 65 * … … 113 113 /** 114 114 115 * Function to Create PlayerZBR 115 * Function to Create PlayerZBR 116 116 117 117 * … … 173 173 /** 174 174 175 * Function add Page Options in WP Menu 175 * Function add Page Options in WP Menu 176 176 177 177 * … … 206 206 }); 207 207 </script> 208 208 209 209 '; 210 210 } … … 212 212 /** 213 213 214 * Function add Shortcode of PlayerZBR 214 * Function add Shortcode of PlayerZBR 215 215 216 216 * … … 234 234 // Deregister the included library 235 235 wp_deregister_script( 'jquery' ); 236 236 237 237 // Register the library again from Google's CDN 238 238 wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', array(), null, false ); 239 239 240 240 // Register the script like this for a plugin: 241 241 wp_register_script( 'playerzbr-script', plugins_url( '/js/playerzbr.js', __FILE__ ), array( 'jquery' ) ); … … 243 243 // Register the script like this for a theme: 244 244 wp_register_script( 'playerzbr-scriptt', get_template_directory_uri() . '/js/playerzbr.js', array( 'jquery' ) ); 245 245 246 246 wp_register_style('playerzbr-script', plugins_url('css/playerzbr.css',__FILE__ )); 247 247 wp_enqueue_style('playerzbr-script'); 248 248 // For either a plugin or a theme, you can then enqueue the script: 249 249 wp_enqueue_script( 'playerzbr-script' ); 250 250 251 251 } 252 252 add_action( 'wp_enqueue_scripts', 'Playerzbr_scripts' ); -
playerzbr/tags/1.5.2/readme.txt
r1335628 r1425493 2 2 Contributors: pedrolaxe 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=F8H5M7EW3VHK6&lc=BR&item_name=Playerzbr&item_number=1¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted 4 Tags: pl ugin,player,player plugin,streaming,html5,player html5,audio,audio html5,shoutcast,touch,responsiveplayer4 Tags: player,player plugin,streaming,html5,html5 player,audio,audio html5,shoutcast,touch,responsive player, mp3 player 5 5 Requires at least: 3.3 6 Tested up to: 4. 4.16 Tested up to: 4.5.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 31 31 1. Upload folder `/playerzbr/` to the `/wp-content/plugins/` directory 32 32 33 1. Activate the plugin through the 'Plugins' menu in WordPress33 2. Activate the plugin through the 'Plugins' menu in WordPress 34 34 35 1. Place `[playerzbr url="Your URL"]` in your website!35 3. Place `[playerzbr url="Your URL"]` in your website! 36 36 37 37 == Screenshots == … … 42 42 == Changelog == 43 43 44 PlayerZBR 1.0 - was created44 PlayerZBR 1.0 - Was created 45 45 46 PlayerZBR 1.1 - add option autoplay46 PlayerZBR 1.1 - Add option Autoplay 47 47 48 PlayerZBR 1.2 - add option width, bug fixed on IE 9, re design on plugin pages48 PlayerZBR 1.2 - Add option width, bug fixed on IE 9, re design on plugin pages 49 49 50 PlayerZBR 1.2.1 - bug headers already sent fixed50 PlayerZBR 1.2.1 - Bug headers already sent fixed 51 51 52 PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to firefox and minor bugs fixed52 PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to Mozilla Firefox and minor bugs fixed 53 53 54 PlayerZBR 1.4 - New reformulation in source code, new methods in shortcode and minor bugs fixed54 PlayerZBR 1.4 - New reformulation in source code, new methods in Shortcode and minor bugs fixed 55 55 56 56 PlayerZBR 1.5 - New Design, included Responsive support -
playerzbr/trunk/playerzbr.php
r1337245 r1425493 17 17 */ 18 18 19 /* 20 21 * Copyright 201 5 Pedro Laxe <pedrolaxe@gmail.com>22 23 * 19 /* 20 21 * Copyright 2016 Pedro Laxe <pedro@phpsec.com.br> 22 23 * 24 24 25 25 * This program is free software; you can redistribute it and/or modify … … 31 31 * (at your option) any later version. 32 32 33 * 33 * 34 34 35 35 * This program is distributed in the hope that it will be useful, … … 41 41 * GNU General Public License for more details. 42 42 43 * 43 * 44 44 45 45 * You should have received a copy of the GNU General Public License … … 61 61 /** 62 62 63 * Function Activate PlayerZBR 63 * Function Activate PlayerZBR 64 64 65 65 * … … 113 113 /** 114 114 115 * Function to Create PlayerZBR 115 * Function to Create PlayerZBR 116 116 117 117 * … … 173 173 /** 174 174 175 * Function add Page Options in WP Menu 175 * Function add Page Options in WP Menu 176 176 177 177 * … … 206 206 }); 207 207 </script> 208 208 209 209 '; 210 210 } … … 212 212 /** 213 213 214 * Function add Shortcode of PlayerZBR 214 * Function add Shortcode of PlayerZBR 215 215 216 216 * … … 234 234 // Deregister the included library 235 235 wp_deregister_script( 'jquery' ); 236 236 237 237 // Register the library again from Google's CDN 238 238 wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', array(), null, false ); 239 239 240 240 // Register the script like this for a plugin: 241 241 wp_register_script( 'playerzbr-script', plugins_url( '/js/playerzbr.js', __FILE__ ), array( 'jquery' ) ); … … 243 243 // Register the script like this for a theme: 244 244 wp_register_script( 'playerzbr-scriptt', get_template_directory_uri() . '/js/playerzbr.js', array( 'jquery' ) ); 245 245 246 246 wp_register_style('playerzbr-script', plugins_url('css/playerzbr.css',__FILE__ )); 247 247 wp_enqueue_style('playerzbr-script'); 248 248 // For either a plugin or a theme, you can then enqueue the script: 249 249 wp_enqueue_script( 'playerzbr-script' ); 250 250 251 251 } 252 252 add_action( 'wp_enqueue_scripts', 'Playerzbr_scripts' ); -
playerzbr/trunk/readme.txt
r1335627 r1425493 2 2 Contributors: pedrolaxe 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=F8H5M7EW3VHK6&lc=BR&item_name=Playerzbr&item_number=1¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted 4 Tags: pl ugin,player,player plugin,streaming,html5,player html5,audio,audio html5,shoutcast,touch,responsiveplayer4 Tags: player,player plugin,streaming,html5,html5 player,audio,audio html5,shoutcast,touch,responsive player, mp3 player 5 5 Requires at least: 3.3 6 Tested up to: 4. 4.16 Tested up to: 4.5.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 31 31 1. Upload folder `/playerzbr/` to the `/wp-content/plugins/` directory 32 32 33 1. Activate the plugin through the 'Plugins' menu in WordPress33 2. Activate the plugin through the 'Plugins' menu in WordPress 34 34 35 1. Place `[playerzbr url="Your URL"]` in your website!35 3. Place `[playerzbr url="Your URL"]` in your website! 36 36 37 37 == Screenshots == … … 42 42 == Changelog == 43 43 44 PlayerZBR 1.0 - was created44 PlayerZBR 1.0 - Was created 45 45 46 PlayerZBR 1.1 - add option autoplay46 PlayerZBR 1.1 - Add option Autoplay 47 47 48 PlayerZBR 1.2 - add option width, bug fixed on IE 9, re design on plugin pages48 PlayerZBR 1.2 - Add option width, bug fixed on IE 9, re design on plugin pages 49 49 50 PlayerZBR 1.2.1 - bug headers already sent fixed50 PlayerZBR 1.2.1 - Bug headers already sent fixed 51 51 52 PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to firefox and minor bugs fixed52 PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to Mozilla Firefox and minor bugs fixed 53 53 54 PlayerZBR 1.4 - New reformulation in source code, new methods in shortcode and minor bugs fixed54 PlayerZBR 1.4 - New reformulation in source code, new methods in Shortcode and minor bugs fixed 55 55 56 56 PlayerZBR 1.5 - New Design, included Responsive support
Note: See TracChangeset
for help on using the changeset viewer.