Plugin Directory

Changeset 1957367


Ignore:
Timestamp:
10/16/2018 09:43:21 AM (7 years ago)
Author:
nir0ma
Message:
  1. 1.2.3
Location:
matomo-tracker/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • matomo-tracker/trunk/README.txt

    r1949250 r1957367  
    66Tested up to: 4.9.8
    77Requires PHP: 5.6.0
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6969* Now uses enqueue script to enqueue external JS File (No more defer or async option)
    7070* Added an option to disable logged-in users tracking
     71
     72= 1.2.3 =
     73* Fixed track.js loading in header
  • matomo-tracker/trunk/inc/frontend/class-frontend.php

    r1949242 r1957367  
    120120            $piwikJsFile = $this->plugin_name_dir . 'inc/frontend/track.js';
    121121            file_put_contents($piwikJsFile, $this->get_javascript_tracking_code());
    122             wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'track.js', array(), $this->version, false );
     122            wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'track.js', array(), $this->version, true );
    123123        }
    124124    }
  • matomo-tracker/trunk/matomo-tracker.php

    r1949250 r1957367  
    1616 * Plugin URI:        https://wordpress.org/plugins/matomo-tracker/
    1717 * Description:       Matomo tracker adds matomo (formerly piwik) tracking code to your website while hiding your matomo installation url
    18  * Version:           1.2.2
     18 * Version:           1.2.3
    1919 * Author:            Niroma
    2020 * Author URI:        https://www.niroma.net/
     
    4040define( NS . 'PLUGIN_NAME', 'matomo-tracker' );
    4141
    42 define( NS . 'PLUGIN_VERSION', '1.2.2' );
     42define( NS . 'PLUGIN_VERSION', '1.2.3' );
    4343
    4444define( NS . 'PLUGIN_NAME_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.