WooCommerce Google Analytics Integration - Version 1.4.9

Version Description

  • 2019-04-16 =
  • Tweak - WC 3.6 compatibility.
Download this release

Release Info

Developer ferdev
Plugin Icon 128x128 WooCommerce Google Analytics Integration
Version 1.4.9
Comparing to
See all releases

Code changes from version 1.4.8 to 1.4.9

changelog.txt CHANGED
@@ -1,5 +1,8 @@
1
  *** Changelog ***
2
 
 
 
 
3
  = 1.4.8 - 2019-03-04 =
4
  * Fix - Event for deleting from cart not sent after a cart update.
5
 
1
  *** Changelog ***
2
 
3
+ = 1.4.9 - 2019-04-16 =
4
+ * Tweak - WC 3.6 compatibility.
5
+
6
  = 1.4.8 - 2019-03-04 =
7
  * Fix - Event for deleting from cart not sent after a cart update.
8
 
languages/woocommerce-google-analytics-integration.pot CHANGED
@@ -1,19 +1,19 @@
1
- # Copyright (C) 2018 WooCommerce
2
  # This file is distributed under the GPLv2 or later.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Google Analytics Integration 1.4.7\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://github.com/woocommerce/woocommerce-google-analytics-integration/"
8
  "issues\n"
9
- "POT-Creation-Date: 2018-12-11 19:54:58+00:00\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=utf-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
16
- "X-Generator: grunt-wp-i18n1.0.2\n"
17
 
18
  #: includes/class-wc-google-analytics-info-banner.php:57
19
  msgid "Google Analytics &amp; WooCommerce"
1
+ # Copyright (C) 2019 WooCommerce
2
  # This file is distributed under the GPLv2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Google Analytics Integration 1.4.9\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://github.com/woocommerce/woocommerce-google-analytics-integration/"
8
  "issues\n"
9
+ "POT-Creation-Date: 2019-04-16 23:15:30+00:00\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=utf-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
16
+ "X-Generator: grunt-wp-i18n 1.0.3\n"
17
 
18
  #: includes/class-wc-google-analytics-info-banner.php:57
19
  msgid "Google Analytics &amp; WooCommerce"
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: woocommerce, claudiosanches, bor0, royho, laurendavissmith001, c-shultz
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.8
5
- Tested up to: 5.0
6
- Stable tag: 1.4.8
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -68,6 +68,9 @@ Exact wording depends on the national data privacy laws and should be adjusted.
68
 
69
  == Changelog ==
70
 
 
 
 
71
  = 1.4.8 - 2019-03-04 =
72
  * Fix - Event for deleting from cart not sent after a cart update.
73
 
2
  Contributors: woocommerce, claudiosanches, bor0, royho, laurendavissmith001, c-shultz
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.8
5
+ Tested up to: 5.1
6
+ Stable tag: 1.4.9
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.4.9 - 2019-04-16 =
72
+ * Tweak - WC 3.6 compatibility.
73
+
74
  = 1.4.8 - 2019-03-04 =
75
  * Fix - Event for deleting from cart not sent after a cart update.
76
 
woocommerce-google-analytics-integration.php CHANGED
@@ -5,9 +5,9 @@
5
  * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com
8
- * Version: 1.4.8
9
  * WC requires at least: 2.1
10
- * WC tested up to: 3.5
11
  * License: GPLv2 or later
12
  * Text Domain: woocommerce-google-analytics-integration
13
  * Domain Path: languages/
@@ -29,7 +29,7 @@ if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
29
  *
30
  * @var string
31
  */
32
- const VERSION = '1.4.8';
33
 
34
  /**
35
  * Instance of this class.
5
  * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com
8
+ * Version: 1.4.9
9
  * WC requires at least: 2.1
10
+ * WC tested up to: 3.6
11
  * License: GPLv2 or later
12
  * Text Domain: woocommerce-google-analytics-integration
13
  * Domain Path: languages/
29
  *
30
  * @var string
31
  */
32
+ const VERSION = '1.4.9';
33
 
34
  /**
35
  * Instance of this class.