Plugin Directory

Changeset 2273127


Ignore:
Timestamp:
04/01/2020 04:27:08 PM (6 years ago)
Author:
shaampk1
Message:

Bug fix, tested with the latest build, updated version

Location:
wp-unit-converter/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-unit-converter/trunk/README.txt

    r2193560 r2273127  
    44Tags: unit converter, measurement, metrics, shortcode
    55Requires at least: 5.0
    6 Tested up to: 5.3
    7 Stable tag: 1.0.1
     6Tested up to: 5.4
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757## Changelog
    5858
     59### 1.0.2
     60* Bug fix and tested with the latest build
     61
    5962### 1.0.1
    6063* Tested with the latest build
  • wp-unit-converter/trunk/public/class-wp-unit-converter-public.php

    r2056952 r2273127  
    104104        $wpuc_options = get_option( 'wpuc_options' );
    105105
    106         wp_localize_script( 'wpuc_ajax_script', 'wpuc_js_obj', array( 'wpuc_metrics_json' => plugins_url( 'wp-unit-converter/includes/js/wpuc-metrics.json' ), 'wpuc_plugin_active' => class_exists( 'wp_unit_converter' ), 'wpuc_orientation' => $wpuc_options['wpuc_orientation'] ) );
     106        wp_localize_script( 'wpuc_ajax_script', 'wpuc_js_obj', array( 'wpuc_metrics_json' => plugins_url( 'wp-unit-converter/includes/js/wpuc-metrics.json' ), 'wpuc_plugin_active' => class_exists( 'wp_unit_converter' ), 'wpuc_orientation' => ($wpuc_options && $wpuc_options['wpuc_orientation']) ? ($wpuc_options['wpuc_orientation']) : 'horizontal' ) );
    107107    }
    108108
  • wp-unit-converter/trunk/wp-unit-converter.php

    r2193467 r2273127  
    1010 *
    1111 * @link              centangle.com
    12  * @since             1.0.0
     12 * @since             1.0.2
    1313 * @package           Wp_Unit_Converter
    1414 *
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'WP_UNIT_CONVERTER_VERSION', '1.0.0' );
     38define( 'WP_UNIT_CONVERTER_VERSION', '1.0.2' );
    3939
    4040/**
Note: See TracChangeset for help on using the changeset viewer.