Yandex Metrica - Version 1.9.1

Version Description

  • hotfix: uppercase Chart.min.js
Download this release

Release Info

Developer m_uysl
Plugin Icon 128x128 Yandex Metrica
Version 1.9.1
Comparing to
See all releases

Code changes from version 1.9 to 1.9.1

Files changed (3) hide show
  1. README.md +4 -1
  2. readme.txt +4 -1
  3. yandex-metrica.php +2 -2
README.md CHANGED
@@ -4,7 +4,7 @@ Contributors: m_uysl, ildarkhasanshin
4
  Tags: yandex,metrica,stats,statistics,tools,analytics,analytics tool,metrika
5
  Requires at least: 3.8
6
  Tested up to: 5.8
7
- Stable tag: 1.9
8
  License: GPLv2 (or later)
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -72,6 +72,9 @@ Extract the zip file and just drop the contents in the `wp-content/plugins/` dir
72
 
73
  ## Changelog ##
74
 
 
 
 
75
  ### 1.9 ###
76
  - chart.js update
77
  - Improved security
4
  Tags: yandex,metrica,stats,statistics,tools,analytics,analytics tool,metrika
5
  Requires at least: 3.8
6
  Tested up to: 5.8
7
+ Stable tag: 1.9.1
8
  License: GPLv2 (or later)
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
72
 
73
  ## Changelog ##
74
 
75
+ ### 1.9.1 ###
76
+ - hotfix: uppercase Chart.min.js
77
+
78
  ### 1.9 ###
79
  - chart.js update
80
  - Improved security
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: m_uysl, ildarkhasanshin
4
  Tags: yandex,metrica,stats,statistics,tools,analytics,analytics tool,metrika
5
  Requires at least: 3.8
6
  Tested up to: 5.8
7
- Stable tag: 1.9
8
  License: GPLv2 (or later)
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -65,6 +65,9 @@ Yandex Metrica plugin uses wp_head hook for the adds necessary tracking code. Pl
65
 
66
  == Changelog ==
67
 
 
 
 
68
  = 1.9 =
69
  - chart.js update
70
  - Improved security
4
  Tags: yandex,metrica,stats,statistics,tools,analytics,analytics tool,metrika
5
  Requires at least: 3.8
6
  Tested up to: 5.8
7
+ Stable tag: 1.9.1
8
  License: GPLv2 (or later)
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
65
 
66
  == Changelog ==
67
 
68
+ = 1.9.1 =
69
+ - hotfix: uppercase Chart.min.js
70
+
71
  = 1.9 =
72
  - chart.js update
73
  - Improved security
yandex-metrica.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Yandex Metrica
4
  Plugin URI: https://github.com/mustafauysal/yandex-metrica
5
  Description: The best Yandex Metrica plugin for WordPress.
6
  Author: Mustafa Uysal
7
- Version: 1.9
8
  Text Domain: yandex-metrica
9
  Domain Path: /languages/
10
  Author URI: https://uysalmustafa.com
@@ -175,7 +175,7 @@ class WP_Yandex_Metrica extends WP_Stack_Plugin {
175
 
176
  public function dashboard_chart_js() {
177
  wp_enqueue_script( 'jquery' );
178
- wp_enqueue_script( 'yandex-metrica-chart', plugins_url( "js/chart.min.js", __FILE__ ), array(), '3.4.0' );
179
 
180
  $statical_data = self::$metrica_api->get_counter_statistics( $this->options["counter_id"], $this->start_date, $this->end_date, "daily" );
181
 
4
  Plugin URI: https://github.com/mustafauysal/yandex-metrica
5
  Description: The best Yandex Metrica plugin for WordPress.
6
  Author: Mustafa Uysal
7
+ Version: 1.9.1
8
  Text Domain: yandex-metrica
9
  Domain Path: /languages/
10
  Author URI: https://uysalmustafa.com
175
 
176
  public function dashboard_chart_js() {
177
  wp_enqueue_script( 'jquery' );
178
+ wp_enqueue_script( 'yandex-metrica-chart', plugins_url( "js/Chart.min.js", __FILE__ ), array(), '3.4.0' );
179
 
180
  $statical_data = self::$metrica_api->get_counter_statistics( $this->options["counter_id"], $this->start_date, $this->end_date, "daily" );
181