Plugin Directory

Changeset 1737755

Timestamp:
09/28/2017 01:21:26 PM (7 years ago)
Author:
pauldewouters
Message:

Preparing for 1.4.3 release

Location:
comment-popularity/trunk
Files:
13 added
3 edited

Legend:

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

    r1731502 r1737755  
    44Tags: comments,vote,upvote,karma,widget
    55Requires at least: 3.9
    6 Tested up to: 4.5
    7 Stable tag: 1.4.2
     6Tested up to: 4.
     7Stable tag: 1.4.
    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.2 =
  • comment-popularity/trunk/comment-popularity.php

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

    r1731502 r1737755  
    1010     * Plugin version number.
    1111     */
    12     const HMN_CP_PLUGIN_VERSION = '1.4.2';
     12    const HMN_CP_PLUGIN_VERSION = '1.4.';
    1313
    1414    /**
     
    290290    public function enqueue_scripts() {
    291291
    292         wp_enqueue_style( 'growl', plugins_url( '../assets/js/modules/growl/stylesheets/jquery.growl.min.css', __FILE__ ), array(), self::HMN_CP_PLUGIN_VERSION );
    293 
    294         wp_enqueue_script( 'growl', plugins_url( '../assets/js/modules/growl/javascripts/jquery.growl.min.js', __FILE__ ), array( 'jquery' ), self::HMN_CP_PLUGIN_VERSION, true );
    295 
    296         $js_file = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? '../assets/js/voting.js' : '../assets/js/voting.min.js';
     292        wp_enqueue_style( 'growl', plugins_url( '../js/modules/growl/stylesheets/jquery.growl.min.css', __FILE__ ), array(), self::HMN_CP_PLUGIN_VERSION );
     293
     294        wp_enqueue_script( 'growl', plugins_url( '../js/modules/growl/javascripts/jquery.growl.min.js', __FILE__ ), array( 'jquery' ), self::HMN_CP_PLUGIN_VERSION, true );
     295
     296        $js_file = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? '../js/voting.js' : '../assets/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.