WooCommerce Google Analytics Integration - Version 1.4.19

Version Description

  • 2020-03-09 =
  • Tweak - WordPress 5.4 compatibility.
Download this release

Release Info

Developer mikkamp
Plugin Icon 128x128 WooCommerce Google Analytics Integration
Version 1.4.19
Comparing to
See all releases

Code changes from version 1.4.18 to 1.4.19

changelog.txt CHANGED
@@ -1,5 +1,8 @@
1
  *** Changelog ***
2
 
 
 
 
3
  = 1.4.18 - 2020-03-04 =
4
  * Tweak - Use code sniff version.
5
  * Tweak - WC 4.0 compatibility.
1
  *** Changelog ***
2
 
3
+ = 1.4.19 - 2020-03-09 =
4
+ * Tweak - WordPress 5.4 compatibility.
5
+
6
  = 1.4.18 - 2020-03-04 =
7
  * Tweak - Use code sniff version.
8
  * Tweak - WC 4.0 compatibility.
languages/woocommerce-google-analytics-integration.pot CHANGED
@@ -2,11 +2,11 @@
2
  # This file is distributed under the GPLv2 or later.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Google Analytics Integration 1.4.18\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-google-analytics-"
8
  "integration\n"
9
- "POT-Creation-Date: 2020-03-04 10:07:43+00:00\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=utf-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the GPLv2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Google Analytics Integration 1.4.19\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-google-analytics-"
8
  "integration\n"
9
+ "POT-Creation-Date: 2020-03-09 13:53:26+00:00\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=utf-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
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.9
5
- Tested up to: 5.3
6
- Stable tag: 1.4.18
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -68,6 +68,13 @@ Exact wording depends on the national data privacy laws and should be adjusted.
68
 
69
  == Changelog ==
70
 
 
 
 
 
 
 
 
71
  = 1.4.17 - 2020-01-13 =
72
  * Tweak - Update constant VERSION in plugin file
73
 
2
  Contributors: woocommerce, claudiosanches, bor0, royho, laurendavissmith001, c-shultz
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.9
5
+ Tested up to: 5.4
6
+ Stable tag: 1.4.19
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.4.19 - 2020-03-09 =
72
+ * Tweak - WordPress 5.4 compatibility.
73
+
74
+ = 1.4.18 - 2020-03-04 =
75
+ * Tweak - Use code sniff version.
76
+ * Tweak - WC 4.0 compatibility.
77
+
78
  = 1.4.17 - 2020-01-13 =
79
  * Tweak - Update constant VERSION in plugin file
80
 
woocommerce-google-analytics-integration.php CHANGED
@@ -5,10 +5,10 @@
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.18
9
  * WC requires at least: 2.1
10
  * WC tested up to: 4.0
11
- * Tested up to: 5.3
12
  * License: GPLv2 or later
13
  * Text Domain: woocommerce-google-analytics-integration
14
  * Domain Path: languages/
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
20
 
21
  if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
22
 
23
- define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.4.18' ); // WRCS: DEFINED_VERSION.
24
 
25
  /**
26
  * WooCommerce Google Analytics Integration main 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.19
9
  * WC requires at least: 2.1
10
  * WC tested up to: 4.0
11
+ * Tested up to: 5.4
12
  * License: GPLv2 or later
13
  * Text Domain: woocommerce-google-analytics-integration
14
  * Domain Path: languages/
20
 
21
  if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
22
 
23
+ define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.4.19' ); // WRCS: DEFINED_VERSION.
24
 
25
  /**
26
  * WooCommerce Google Analytics Integration main class.