Plugin Directory

Changeset 1738252

Timestamp:
09/29/2017 08:48:41 AM (7 years ago)
Author:
pauldewouters
Message:

Preparing for 1.4.3.1 release

Location:
comment-popularity/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • comment-popularity/trunk/README.txt

    r1737755 r1738252  
    55Requires at least: 3.9
    66Tested up to: 4.8.1
    7 Stable tag: 1.4.3
     7Stable tag: 1.4.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    130130
    131131== Changelog ==
     132
     133
     134
     135
    132136
    133137= 1.4.3 =
  • comment-popularity/trunk/comment-popularity.php

    r1737755 r1738252  
    44Plugin URI: https://github.com/humanmade/comment-popularity
    55Description: Allow visitors to vote on comments.
    6 Version: 1.4.3
     6Version: 1.4.3
    77Author: Human Made Limited
    88Author URI: http://humanmade.co.uk
  • comment-popularity/trunk/inc/class-comment-popularity.php

    r1737755 r1738252  
    1010     * Plugin version number.
    1111     */
    12     const HMN_CP_PLUGIN_VERSION = '1.4.3';
     12    const HMN_CP_PLUGIN_VERSION = '1.4.3';
    1313
    1414    /**
     
    294294        wp_enqueue_script( 'growl', plugins_url( '../js/modules/growl/javascripts/jquery.growl.min.js', __FILE__ ), array( 'jquery' ), self::HMN_CP_PLUGIN_VERSION, true );
    295295
    296         $js_file = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? '../js/voting.js' : '../assets/js/voting.min.js';
     296        $js_file = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? '../js/voting.js' : '../js/voting.min.js';
    297297        wp_register_script( 'comment-popularity', plugins_url( $js_file, __FILE__ ), array(
    298298            'jquery',
Note: See TracChangeset for help on using the changeset viewer.