Plugin Directory

Changeset 1482960


Ignore:
Timestamp:
08/24/2016 11:28:14 PM (10 years ago)
Author:
Khothemes
Message:

new version

Location:
ultimate-widgets-light
Files:
661 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • ultimate-widgets-light/trunk/assets/admin/redux-core/framework.php

    r1478151 r1482960  
    7070            // This will make for easier support when we ask users what version they are using.
    7171
    72             public static $_version = '3.6.1';
     72            public static $_version = '3.6.1.1';
    7373            public static $_dir;
    7474            public static $_url;
  • ultimate-widgets-light/trunk/assets/admin/redux-core/inc/fields/typography/field_typography.php

    r1431909 r1482960  
    281281                echo '<select' . $multi . ' data-placeholder="' . __( 'Style', 'redux-framework' ) . '" class="redux-typography redux-typography-style select ' . $this->field['class'] . '" original-title="' . __( 'Font style', 'redux-framework' ) . '" id="' . $this->field['id'] . '_style" data-id="' . $this->field['id'] . '" data-value="' . $style . '">';
    282282
    283                 if ( empty( $this->value['subset'] ) || empty( $this->value['font-weight'] ) ) {
     283                if ( empty( $this->value['subsets'] ) || empty( $this->value['font-weight'] ) ) {
    284284                    echo '<option value=""></option>';
    285285                }
     
    294294                if ( isset( $gfonts[ $this->value['font-family'] ] ) ) {
    295295                    foreach ( $gfonts[ $this->value['font-family'] ]['variants'] as $v ) {
    296                         echo '<option value="' . $v['id'] . '" ' . selected( $this->value['subset'], $v['id'], false ) . '>' . $v['name'] . '</option>';
     296                        echo '<option value="' . $v['id'] . '" ' . selected( $this->value['subsets'], $v['id'], false ) . '>' . $v['name'] . '</option>';
    297297                    }
    298298                } else {
    299                     if ( ! isset( $this->value['font-weight'] ) && isset( $this->value['subset'] ) ) {
    300                         $this->value['font-weight'] = $this->value['subset'];
     299                    if ( ! isset( $this->value['font-weight'] ) && isset( $this->value['subsets'] ) ) {
     300                        $this->value['font-weight'] = $this->value['subsets'];
    301301                    }
    302302
     
    306306                        }
    307307
    308                         if ( ! isset( $this->value['subset'] ) ) {
    309                             $this->value['subset'] = false;
     308                        if ( ! isset( $this->value['subsets'] ) ) {
     309                            $this->value['subsets'] = false;
    310310                        }
    311311
     
    331331                if ( isset( $gfonts[ $this->value['font-family'] ] ) ) {
    332332                    foreach ( $gfonts[ $this->value['font-family'] ]['subsets'] as $v ) {
    333                         echo '<option value="' . $v['id'] . '" ' . selected( $this->value['subset'], $v['id'], false ) . '>' . $v['name'] . '</option>';
     333                        echo '<option value="' . $v['id'] . '" ' . selected( $this->value['subsets'], $v['id'], false ) . '>' . $v['name'] . '</option>';
    334334                    }
    335335                }
     
    498498                            $this->parent->typography_preview[ $fontFamily[0] ] = array(
    499499                                'font-style' => array( $this->value['font-weight'] . $this->value['font-style'] ),
    500                                 'subset'     => array( $this->value['subset'] )
     500                                'subset'     => array( $this->value['subsets'] )
    501501                            );
    502502
  • ultimate-widgets-light/trunk/functions.php

    r1478151 r1482960  
    1010 * Text Domain: kho
    1111 * Domain Path: /languages/
    12  * Version:     1.5.6
     12 * Version:     1.5.7
    1313 *
    1414 * @fs_premium_only /premium/
     
    6161define( 'UWL_PLUGIN', __FILE__ );
    6262define( 'UWL_PLUGIN_DIR', untrailingslashit( dirname( UWL_PLUGIN ) ) );
    63 define( 'UWL_VERSION', '1.5.6' );
     63define( 'UWL_VERSION', '1.5.7' );
    6464function uwl_plugin_url( $path = '' )
    6565{
  • ultimate-widgets-light/trunk/readme.txt

    r1478151 r1482960  
    55Requires at least: 4.1
    66Tested up to: 4.6
    7 Stable tag: 1.5.6
     7Stable tag: 1.5.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    116116== Changelog ==
    117117
     118= 1.5.7 =
     119
     120* Redux Framework updated.
     121
    118122= 1.5.6 =
    119123
Note: See TracChangeset for help on using the changeset viewer.