Plugin Directory

Changeset 1015817


Ignore:
Timestamp:
10/29/2014 10:23:41 AM (11 years ago)
Author:
reflectionmedia
Message:

tagging version 2.0.4

Location:
profile-builder
Files:
2 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • profile-builder/tags/2.0.4/assets/css/style-back-end.css

    r1011421 r1015817  
    6868.wppb-badge.Free{
    6969    background:url(../images/logo_free.png) center 20px no-repeat #d54e21;
     70}
     71
     72/* Userlist page */
     73.wppb-ul-templates > textarea,
     74.wppb-single-ul-templates > textarea {
     75     float: left;
     76     width: 60%;
     77     max-width: 100%;
     78     height: 400px;
    7079}
    7180
  • profile-builder/tags/2.0.4/assets/lib/wck-api/wordpress-creation-kit.php

    r1011421 r1015817  
    413413       
    414414       
    415         if($results != null){
     415        if( !empty( $results ) ){
    416416            $list .= apply_filters( 'wck_metabox_content_header_'.$meta , '<thead><tr><th class="wck-number">#</th><th class="wck-content">'. __( 'Content', 'wck' ) .'</th><th class="wck-edit">'. __( 'Edit', 'wck' ) .'</th><th class="wck-delete">'. __( 'Delete', 'wck' ) .'</th></tr></thead>' );
    417417            $i=0;
  • profile-builder/tags/2.0.4/index.php

    r1012789 r1015817  
    44Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/
    55Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
    6 Version: 2.0.3
     6Version: 2.0.4
    77Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
    88Author URI: http://www.cozmoslabs.com/
     
    5353 *
    5454 */
    55 define( 'PROFILE_BUILDER_VERSION', '2.0.3' );
     55define( 'PROFILE_BUILDER_VERSION', '2.0.4' );
    5656define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
    5757define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    6363define( 'WPPB_TRANSLATE_DOMAIN', 'profilebuilder' );
    6464
     65/* include notices class */
     66if ( file_exists ( WPPB_PLUGIN_DIR.'/assets/lib/class_notices.php' ) )
     67    include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php' );
    6568
    6669if ( file_exists ( WPPB_PLUGIN_DIR.'/modules/modules.php' ) )
     
    151154register_activation_hook( __FILE__, 'wppb_generate_default_settings_defaults' );    //prepoulate general settings
    152155register_activation_hook( __FILE__, 'wppb_prepopulate_fields' );                    //prepopulate manage fields list
     156
     157/* Add a halloween notice */
     158new WPPB_Add_General_Notices( 'wppb_halloween',
     159    sprintf( __( '<p style="position:relative;">Halloween treat: 30&#37; OFF on all Profile Builder purchases 29 - 30 -31 October over at %1$swww.cozmslabs.com%2$s Get your discount code! %3$sDismiss%4$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/' target='_blank' class='button-primary'>", "</a>", "<a href='". add_query_arg( 'wppb_halloween_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification' style='position: absolute;right: 0;top: 50%;margin-top: -7px;'>", "</a>" ),
     160    'updated halloween',
     161    '28 October 2014',
     162    '1 November 2014' );
  • profile-builder/tags/2.0.4/readme.txt

    r1012789 r1015817  
    77Requires at least: 3.1
    88Tested up to: 4.0
    9 Stable tag: 2.0.3
     9Stable tag: 2.0.4
    1010
    1111Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
     
    103103
    104104== Changelog ==
     105= 2.0.4 =
     106Added $account_name as a parameter in the wppb_register_success_message filter
     107Fixed typo in password strength meeter.
     108
    105109= 2.0.3 =
    106110Fixed bug that made radio buttons field types not to throw error when they are required
  • profile-builder/trunk/assets/css/style-back-end.css

    r1011421 r1015817  
    6868.wppb-badge.Free{
    6969    background:url(../images/logo_free.png) center 20px no-repeat #d54e21;
     70}
     71
     72/* Userlist page */
     73.wppb-ul-templates > textarea,
     74.wppb-single-ul-templates > textarea {
     75     float: left;
     76     width: 60%;
     77     max-width: 100%;
     78     height: 400px;
    7079}
    7180
  • profile-builder/trunk/assets/lib/wck-api/wordpress-creation-kit.php

    r1011421 r1015817  
    413413       
    414414       
    415         if($results != null){
     415        if( !empty( $results ) ){
    416416            $list .= apply_filters( 'wck_metabox_content_header_'.$meta , '<thead><tr><th class="wck-number">#</th><th class="wck-content">'. __( 'Content', 'wck' ) .'</th><th class="wck-edit">'. __( 'Edit', 'wck' ) .'</th><th class="wck-delete">'. __( 'Delete', 'wck' ) .'</th></tr></thead>' );
    417417            $i=0;
  • profile-builder/trunk/index.php

    r1012789 r1015817  
    44Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/
    55Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
    6 Version: 2.0.3
     6Version: 2.0.4
    77Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
    88Author URI: http://www.cozmoslabs.com/
     
    5353 *
    5454 */
    55 define( 'PROFILE_BUILDER_VERSION', '2.0.3' );
     55define( 'PROFILE_BUILDER_VERSION', '2.0.4' );
    5656define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
    5757define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    6363define( 'WPPB_TRANSLATE_DOMAIN', 'profilebuilder' );
    6464
     65/* include notices class */
     66if ( file_exists ( WPPB_PLUGIN_DIR.'/assets/lib/class_notices.php' ) )
     67    include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php' );
    6568
    6669if ( file_exists ( WPPB_PLUGIN_DIR.'/modules/modules.php' ) )
     
    151154register_activation_hook( __FILE__, 'wppb_generate_default_settings_defaults' );    //prepoulate general settings
    152155register_activation_hook( __FILE__, 'wppb_prepopulate_fields' );                    //prepopulate manage fields list
     156
     157/* Add a halloween notice */
     158new WPPB_Add_General_Notices( 'wppb_halloween',
     159    sprintf( __( '<p style="position:relative;">Halloween treat: 30&#37; OFF on all Profile Builder purchases 29 - 30 -31 October over at %1$swww.cozmslabs.com%2$s Get your discount code! %3$sDismiss%4$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/' target='_blank' class='button-primary'>", "</a>", "<a href='". add_query_arg( 'wppb_halloween_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification' style='position: absolute;right: 0;top: 50%;margin-top: -7px;'>", "</a>" ),
     160    'updated halloween',
     161    '28 October 2014',
     162    '1 November 2014' );
  • profile-builder/trunk/readme.txt

    r1012789 r1015817  
    77Requires at least: 3.1
    88Tested up to: 4.0
    9 Stable tag: 2.0.3
     9Stable tag: 2.0.4
    1010
    1111Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
     
    103103
    104104== Changelog ==
     105= 2.0.4 =
     106Added $account_name as a parameter in the wppb_register_success_message filter
     107Fixed typo in password strength meeter.
     108
    105109= 2.0.3 =
    106110Fixed bug that made radio buttons field types not to throw error when they are required
Note: See TracChangeset for help on using the changeset viewer.