Plugin Directory

Changeset 1279936


Ignore:
Timestamp:
11/05/2015 02:13:36 AM (10 years ago)
Author:
websightdesigns
Message:

updates to version 1.0.2

Location:
wp-customize
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-customize/tags/1.0.2/readme.txt

    r1279181 r1279936  
    33Donate link: http://www.websightdesigns.com/
    44Tags: admin, customize, login logo, admin footer, custom login, login page, custom page, footer
    5 Requires at least: 3.1
     5Requires at least: 3.5
    66Tested up to: 4.3.1
    77Stable tag: 1.0.2
     
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 This plugin allows you to set up a custom login page and set a custom footer message in the WordPress Admin.
     11This plugin allows you to set up a custom login page, and set a custom footer message in the WordPress Admin.
    1212
    1313== Description ==
     
    106106== Upgrade Notice ==
    107107
    108 = 1.0.2 =
    109 
    110 This version fixes a bug that caused the media library uploads to not show.
    111 
    112108= 0.5 =
    113109This version adds color picker widgets to easily select RGB color codes.
  • wp-customize/tags/1.0.2/wp-customize.php

    r1279171 r1279936  
    22/**
    33 * @package WP_Customize
    4  * @version 1.0.1
     4 * @version 1.0.2
    55 */
    66
     
    99Description: This plugin allows you to customize the WordPress login page and set your own footer for the WordPress Admin.
    1010Author: WebSight Designs
    11 Version: 1.0.1
     11Version: 1.0.2
    1212Author URI: http://websightdesigns.com/
    1313License: GPL2
     
    3535}
    3636
    37 if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) ) {
     37if ( version_compare( $GLOBALS['wp_version'], '3.5', '<' ) ) {
    3838    return;
    3939}
     
    6868    wp_enqueue_style('thickbox');
    6969    wp_enqueue_script( 'wp-customize-ace-js', plugin_dir_url(__FILE__) . 'js/ace/src-min-noconflict/ace.js', array( 'jquery' ), '1.0', true );
     70    wp_enqueue_script( 'wp-customize-chosen-js', plugin_dir_url(__FILE__) . 'js/chosen/chosen.jquery.min.js', array( 'jquery' ), '1.4.2', true );
    7071    wp_enqueue_style( 'wp-customize-spectrum', plugin_dir_url(__FILE__) . 'js/spectrum.css', null, '1.7.0' );
     72    wp_enqueue_style( 'wp-customize-chosen', plugin_dir_url(__FILE__) . 'js/chosen/chosen.min.css', null, '1.4.2' );
    7173    wp_enqueue_script( 'wp-customize-spectrum-js', plugin_dir_url(__FILE__) . 'js/spectrum.js', array( 'jquery' ), '1.7.0', true );
    72     wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array( 'wp-customize-ace-js', 'wp-customize-spectrum-js', 'jquery', 'media-upload', 'thickbox' ), '1.0.1', true );
     74    wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array(
     75        'wp-customize-chosen-js',
     76        'wp-customize-ace-js',
     77        'wp-customize-spectrum-js',
     78        'jquery',
     79        'media-upload',
     80        'thickbox'
     81    ), '1.0.2', true );
    7382}
    7483add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' );
     
    100109 */
    101110function wpcustomize_admin_styles() {
    102     echo '<style type="text/css">';
    103 
    104     echo 'form[name="wpcustomize_customize"] input[type="text"],
    105     form[name="wpcustomize_customize"] textarea {
    106         width: 100%;
    107         padding: 4px 8px;
    108     }
    109     @media (min-width: 783px) {
    110         form[name="wpcustomize_customize"] input.upload_button {
    111             float: right;
    112             clear: none;
    113             position: relative;
    114             right: 0;
    115             top: -2.25em;
    116             height: 27px;
    117         }
    118     }
    119     form[name="wpcustomize_customize"] input.smallinput[type="text"] {
    120         width: 50px;
    121     }';
    122 
    123     echo '</style>';
     111    wp_enqueue_style( 'wp-customize-admin', plugin_dir_url(__FILE__) . 'css/admin.css', null, '1.7.0' );
    124112}
    125113add_action('admin_head', 'wpcustomize_admin_styles');
  • wp-customize/trunk/readme.txt

    r1279177 r1279936  
    33Donate link: http://www.websightdesigns.com/
    44Tags: admin, customize, login logo, admin footer, custom login, login page, custom page, footer
    5 Requires at least: 3.1
     5Requires at least: 3.5
    66Tested up to: 4.3.1
    77Stable tag: 1.0.2
  • wp-customize/trunk/wp-customize.php

    r1279175 r1279936  
    3535}
    3636
    37 if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) ) {
     37if ( version_compare( $GLOBALS['wp_version'], '3.5', '<' ) ) {
    3838    return;
    3939}
     
    6868    wp_enqueue_style('thickbox');
    6969    wp_enqueue_script( 'wp-customize-ace-js', plugin_dir_url(__FILE__) . 'js/ace/src-min-noconflict/ace.js', array( 'jquery' ), '1.0', true );
     70    wp_enqueue_script( 'wp-customize-chosen-js', plugin_dir_url(__FILE__) . 'js/chosen/chosen.jquery.min.js', array( 'jquery' ), '1.4.2', true );
    7071    wp_enqueue_style( 'wp-customize-spectrum', plugin_dir_url(__FILE__) . 'js/spectrum.css', null, '1.7.0' );
     72    wp_enqueue_style( 'wp-customize-chosen', plugin_dir_url(__FILE__) . 'js/chosen/chosen.min.css', null, '1.4.2' );
    7173    wp_enqueue_script( 'wp-customize-spectrum-js', plugin_dir_url(__FILE__) . 'js/spectrum.js', array( 'jquery' ), '1.7.0', true );
    72     wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array( 'wp-customize-ace-js', 'wp-customize-spectrum-js', 'jquery', 'media-upload', 'thickbox' ), '1.0.1', true );
     74    wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array(
     75        'wp-customize-chosen-js',
     76        'wp-customize-ace-js',
     77        'wp-customize-spectrum-js',
     78        'jquery',
     79        'media-upload',
     80        'thickbox'
     81    ), '1.0.2', true );
    7382}
    7483add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' );
     
    100109 */
    101110function wpcustomize_admin_styles() {
    102     echo '<style type="text/css">';
    103 
    104     echo 'form[name="wpcustomize_customize"] input[type="text"],
    105     form[name="wpcustomize_customize"] textarea {
    106         width: 100%;
    107         padding: 4px 8px;
    108     }
    109     @media (min-width: 783px) {
    110         form[name="wpcustomize_customize"] input.upload_button {
    111             float: right;
    112             clear: none;
    113             position: relative;
    114             right: 0;
    115             top: -2.25em;
    116             height: 27px;
    117         }
    118     }
    119     form[name="wpcustomize_customize"] input.smallinput[type="text"] {
    120         width: 50px;
    121     }';
    122 
    123     echo '</style>';
     111    wp_enqueue_style( 'wp-customize-admin', plugin_dir_url(__FILE__) . 'css/admin.css', null, '1.7.0' );
    124112}
    125113add_action('admin_head', 'wpcustomize_admin_styles');
Note: See TracChangeset for help on using the changeset viewer.