Plugin Directory

Changeset 1425493


Ignore:
Timestamp:
05/27/2016 12:44:13 PM (10 years ago)
Author:
pedrolaxe
Message:

Fix Version Files

Location:
playerzbr
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • playerzbr/tags/1.5.2/playerzbr.php

    r1337251 r1425493  
    1717*/
    1818
    19 /*     
    20 
    21  *      Copyright 2015 Pedro Laxe <pedrolaxe@gmail.com>
    22 
    23  *     
     19/*
     20
     21 *      Copyright 2016 Pedro Laxe <pedro@phpsec.com.br>
     22
     23 *
    2424
    2525 *      This program is free software; you can redistribute it and/or modify
     
    3131 *      (at your option) any later version.
    3232
    33  *     
     33 *
    3434
    3535 *      This program is distributed in the hope that it will be useful,
     
    4141 *      GNU General Public License for more details.
    4242
    43  *     
     43 *
    4444
    4545 *      You should have received a copy of the GNU General Public License
     
    6161/**
    6262
    63  * Function Activate PlayerZBR 
     63 * Function Activate PlayerZBR
    6464
    6565 *
     
    113113/**
    114114
    115  * Function to Create PlayerZBR 
     115 * Function to Create PlayerZBR
    116116
    117117 *
     
    173173/**
    174174
    175  * Function add Page Options in WP Menu 
     175 * Function add Page Options in WP Menu
    176176
    177177 *
     
    206206});
    207207</script>
    208    
     208
    209209    ';
    210210}
     
    212212/**
    213213
    214  * Function add Shortcode of PlayerZBR 
     214 * Function add Shortcode of PlayerZBR
    215215
    216216 *
     
    234234    // Deregister the included library
    235235    wp_deregister_script( 'jquery' );
    236      
     236
    237237    // Register the library again from Google's CDN
    238238    wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', array(), null, false );
    239      
     239
    240240    // Register the script like this for a plugin:
    241241    wp_register_script( 'playerzbr-script', plugins_url( '/js/playerzbr.js', __FILE__ ), array( 'jquery' ) );
     
    243243    // Register the script like this for a theme:
    244244    wp_register_script( 'playerzbr-scriptt', get_template_directory_uri() . '/js/playerzbr.js', array( 'jquery' ) );
    245  
     245
    246246    wp_register_style('playerzbr-script', plugins_url('css/playerzbr.css',__FILE__ ));
    247247    wp_enqueue_style('playerzbr-script');
    248248    // For either a plugin or a theme, you can then enqueue the script:
    249249    wp_enqueue_script( 'playerzbr-script' );
    250    
     250
    251251}
    252252add_action( 'wp_enqueue_scripts', 'Playerzbr_scripts' );
  • playerzbr/tags/1.5.2/readme.txt

    r1335628 r1425493  
    22Contributors: pedrolaxe
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=F8H5M7EW3VHK6&lc=BR&item_name=Playerzbr&item_number=1&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
    4 Tags: plugin,player,player plugin,streaming,html5,player html5,audio,audio html5,shoutcast,touch,responsive player
     4Tags: player,player plugin,streaming,html5,html5 player,audio,audio html5,shoutcast,touch,responsive player, mp3 player
    55Requires at least: 3.3
    6 Tested up to: 4.4.1
     6Tested up to: 4.5.2
    77Stable tag: trunk
    88License: GPLv2 or later
     
    31311. Upload folder `/playerzbr/` to the `/wp-content/plugins/` directory
    3232
    33 1. Activate the plugin through the 'Plugins' menu in WordPress
     332. Activate the plugin through the 'Plugins' menu in WordPress
    3434
    35 1. Place `[playerzbr url="Your URL"]` in your website!
     353. Place `[playerzbr url="Your URL"]` in your website!
    3636
    3737== Screenshots ==
     
    4242== Changelog ==
    4343
    44 PlayerZBR 1.0 - was created
     44PlayerZBR 1.0 - Was created
    4545
    46 PlayerZBR 1.1 - add option autoplay
     46PlayerZBR 1.1 - Add option Autoplay
    4747
    48 PlayerZBR 1.2 - add option width, bug fixed on IE 9, re design on plugin pages
     48PlayerZBR 1.2 - Add option width, bug fixed on IE 9, re design on plugin pages
    4949
    50 PlayerZBR 1.2.1 - bug headers already sent fixed
     50PlayerZBR 1.2.1 - Bug headers already sent fixed
    5151
    52 PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to firefox and minor bugs fixed
     52PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to Mozilla Firefox and minor bugs fixed
    5353
    54 PlayerZBR 1.4 - New reformulation in source code, new methods in shortcode and minor bugs fixed
     54PlayerZBR 1.4 - New reformulation in source code, new methods in Shortcode and minor bugs fixed
    5555
    5656PlayerZBR 1.5 - New Design, included Responsive support
  • playerzbr/trunk/playerzbr.php

    r1337245 r1425493  
    1717*/
    1818
    19 /*     
    20 
    21  *      Copyright 2015 Pedro Laxe <pedrolaxe@gmail.com>
    22 
    23  *     
     19/*
     20
     21 *      Copyright 2016 Pedro Laxe <pedro@phpsec.com.br>
     22
     23 *
    2424
    2525 *      This program is free software; you can redistribute it and/or modify
     
    3131 *      (at your option) any later version.
    3232
    33  *     
     33 *
    3434
    3535 *      This program is distributed in the hope that it will be useful,
     
    4141 *      GNU General Public License for more details.
    4242
    43  *     
     43 *
    4444
    4545 *      You should have received a copy of the GNU General Public License
     
    6161/**
    6262
    63  * Function Activate PlayerZBR 
     63 * Function Activate PlayerZBR
    6464
    6565 *
     
    113113/**
    114114
    115  * Function to Create PlayerZBR 
     115 * Function to Create PlayerZBR
    116116
    117117 *
     
    173173/**
    174174
    175  * Function add Page Options in WP Menu 
     175 * Function add Page Options in WP Menu
    176176
    177177 *
     
    206206});
    207207</script>
    208    
     208
    209209    ';
    210210}
     
    212212/**
    213213
    214  * Function add Shortcode of PlayerZBR 
     214 * Function add Shortcode of PlayerZBR
    215215
    216216 *
     
    234234    // Deregister the included library
    235235    wp_deregister_script( 'jquery' );
    236      
     236
    237237    // Register the library again from Google's CDN
    238238    wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', array(), null, false );
    239      
     239
    240240    // Register the script like this for a plugin:
    241241    wp_register_script( 'playerzbr-script', plugins_url( '/js/playerzbr.js', __FILE__ ), array( 'jquery' ) );
     
    243243    // Register the script like this for a theme:
    244244    wp_register_script( 'playerzbr-scriptt', get_template_directory_uri() . '/js/playerzbr.js', array( 'jquery' ) );
    245  
     245
    246246    wp_register_style('playerzbr-script', plugins_url('css/playerzbr.css',__FILE__ ));
    247247    wp_enqueue_style('playerzbr-script');
    248248    // For either a plugin or a theme, you can then enqueue the script:
    249249    wp_enqueue_script( 'playerzbr-script' );
    250    
     250
    251251}
    252252add_action( 'wp_enqueue_scripts', 'Playerzbr_scripts' );
  • playerzbr/trunk/readme.txt

    r1335627 r1425493  
    22Contributors: pedrolaxe
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=F8H5M7EW3VHK6&lc=BR&item_name=Playerzbr&item_number=1&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
    4 Tags: plugin,player,player plugin,streaming,html5,player html5,audio,audio html5,shoutcast,touch,responsive player
     4Tags: player,player plugin,streaming,html5,html5 player,audio,audio html5,shoutcast,touch,responsive player, mp3 player
    55Requires at least: 3.3
    6 Tested up to: 4.4.1
     6Tested up to: 4.5.2
    77Stable tag: trunk
    88License: GPLv2 or later
     
    31311. Upload folder `/playerzbr/` to the `/wp-content/plugins/` directory
    3232
    33 1. Activate the plugin through the 'Plugins' menu in WordPress
     332. Activate the plugin through the 'Plugins' menu in WordPress
    3434
    35 1. Place `[playerzbr url="Your URL"]` in your website!
     353. Place `[playerzbr url="Your URL"]` in your website!
    3636
    3737== Screenshots ==
     
    4242== Changelog ==
    4343
    44 PlayerZBR 1.0 - was created
     44PlayerZBR 1.0 - Was created
    4545
    46 PlayerZBR 1.1 - add option autoplay
     46PlayerZBR 1.1 - Add option Autoplay
    4747
    48 PlayerZBR 1.2 - add option width, bug fixed on IE 9, re design on plugin pages
     48PlayerZBR 1.2 - Add option width, bug fixed on IE 9, re design on plugin pages
    4949
    50 PlayerZBR 1.2.1 - bug headers already sent fixed
     50PlayerZBR 1.2.1 - Bug headers already sent fixed
    5151
    52 PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to firefox and minor bugs fixed
     52PlayerZBR 1.3 - Re-design with Twitter Bootstrap, add support to Mozilla Firefox and minor bugs fixed
    5353
    54 PlayerZBR 1.4 - New reformulation in source code, new methods in shortcode and minor bugs fixed
     54PlayerZBR 1.4 - New reformulation in source code, new methods in Shortcode and minor bugs fixed
    5555
    5656PlayerZBR 1.5 - New Design, included Responsive support
Note: See TracChangeset for help on using the changeset viewer.