Changeset 3003944
- Timestamp:
- 11/30/2023 08:11:23 PM (2 years ago)
- Location:
- activecampaign-for-woocommerce/trunk
- Files:
-
- 2 added
- 2 deleted
- 8 edited
-
CHANGELOG.txt (modified) (1 diff)
-
README.txt (modified) (2 diffs)
-
ac_vendor/autoload.php (modified) (1 diff)
-
ac_vendor/composer/autoload_real.php (modified) (5 diffs)
-
ac_vendor/composer/autoload_static.php (modified) (2 diffs)
-
activecampaign-for-woocommerce.php (modified) (1 diff)
-
admin/class-activecampaign-for-woocommerce-admin.php (modified) (1 diff)
-
admin/js/activecampaign-for-woocommerce-admin-main.js (added)
-
admin/js/activecampaign-for-woocommerce-admin-main.js.map (added)
-
admin/js/main.js (deleted)
-
admin/js/main.js.map (deleted)
-
includes/config/activecampaign-for-woocommerce-global-constants.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
activecampaign-for-woocommerce/trunk/CHANGELOG.txt
r2963215 r3003944 1 1 == Changelog == 2 3 == 2.5.2 2023-11-28 == 4 * Reskin design of WooCommerce admin 5 * Do not product sync drafts 6 7 == 2.5.1 2023-11-10 == 8 * Bugfix for product types missing from product sync 9 * Deprecating connection option id 10 11 == 2.5.0 2023-11-02 == 12 * Adding save option to support logs 13 * Fixing product image URL bug 14 * Add new product segment fields 15 16 == 2.4.10 2023-10-18 == 17 * Fix for customer data causing COFE issues in some cases 18 * Improvement for contact sync in historical sync 19 20 == 2.4.9 2023-10-09 == 21 * Fixing the abandoned cart starter times 22 * Adding more clear text for abandoned cart settings 23 24 == 2.4.8 2023-10-06 == 25 * Workaround for custom checkouts not loading abandoned cart script 26 * Limiting extremely large numbers for ints 27 28 == 2.4.7 2023-09-29 == 29 * Product sync should not disappear 30 * Removing product sync beta option 31 32 == 2.4.6 2023-09-25 == 33 * Product and image URL fix for abandoned carts 34 35 == 2.4.5 2023-09-19 == 36 * Product and image URL fix orders 37 38 == 2.4.4 2023-09-11 == 39 * Status is now renamed Support 40 * Placing log viewer in the support page 41 * Deepdata code removed 2 42 3 43 == 2.4.3 2023-09-01 == -
activecampaign-for-woocommerce/trunk/README.txt
r3002947 r3003944 4 4 Requires at least: 6.0 5 5 Tested up to: 6.4.1 6 Stable tag: 2.5. 26 Stable tag: 2.5.3 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 84 84 == Changelog == 85 85 86 == 2.5.3 2023-11-30 == 87 * Resolving admin visual issues related to version 2.5.2 88 86 89 == 2.5.2 2023-11-28 == 87 90 * Reskin design of WooCommerce admin -
activecampaign-for-woocommerce/trunk/ac_vendor/autoload.php
r3002947 r3003944 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit e2898628eb05ef5ba380204dff3c9b67::getLoader();7 return ComposerAutoloaderInit9f546ccfbf5d4b843db246ddbd796aec::getLoader(); -
activecampaign-for-woocommerce/trunk/ac_vendor/composer/autoload_real.php
r3002947 r3003944 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit e2898628eb05ef5ba380204dff3c9b675 class ComposerAutoloaderInit9f546ccfbf5d4b843db246ddbd796aec 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit e2898628eb05ef5ba380204dff3c9b67', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit9f546ccfbf5d4b843db246ddbd796aec', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 29 spl_autoload_unregister(array('ComposerAutoloaderInit e2898628eb05ef5ba380204dff3c9b67', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit9f546ccfbf5d4b843db246ddbd796aec', 'loadClassLoader')); 30 30 31 31 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 33 33 require __DIR__ . '/autoload_static.php'; 34 34 35 call_user_func(\Composer\Autoload\ComposerStaticInit e2898628eb05ef5ba380204dff3c9b67::getInitializer($loader));35 call_user_func(\Composer\Autoload\ComposerStaticInit9f546ccfbf5d4b843db246ddbd796aec::getInitializer($loader)); 36 36 } else { 37 37 $map = require __DIR__ . '/autoload_namespaces.php'; … … 54 54 55 55 if ($useStaticLoader) { 56 $includeFiles = Composer\Autoload\ComposerStaticInit e2898628eb05ef5ba380204dff3c9b67::$files;56 $includeFiles = Composer\Autoload\ComposerStaticInit9f546ccfbf5d4b843db246ddbd796aec::$files; 57 57 } else { 58 58 $includeFiles = require __DIR__ . '/autoload_files.php'; 59 59 } 60 60 foreach ($includeFiles as $fileIdentifier => $file) { 61 composerRequire e2898628eb05ef5ba380204dff3c9b67($fileIdentifier, $file);61 composerRequire9f546ccfbf5d4b843db246ddbd796aec($fileIdentifier, $file); 62 62 } 63 63 … … 66 66 } 67 67 68 function composerRequire e2898628eb05ef5ba380204dff3c9b67($fileIdentifier, $file)68 function composerRequire9f546ccfbf5d4b843db246ddbd796aec($fileIdentifier, $file) 69 69 { 70 70 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
activecampaign-for-woocommerce/trunk/ac_vendor/composer/autoload_static.php
r3002947 r3003944 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit e2898628eb05ef5ba380204dff3c9b677 class ComposerStaticInit9f546ccfbf5d4b843db246ddbd796aec 8 8 { 9 9 public static $files = array ( … … 476 476 { 477 477 return \Closure::bind(function () use ($loader) { 478 $loader->prefixLengthsPsr4 = ComposerStaticInit e2898628eb05ef5ba380204dff3c9b67::$prefixLengthsPsr4;479 $loader->prefixDirsPsr4 = ComposerStaticInit e2898628eb05ef5ba380204dff3c9b67::$prefixDirsPsr4;480 $loader->classMap = ComposerStaticInit e2898628eb05ef5ba380204dff3c9b67::$classMap;478 $loader->prefixLengthsPsr4 = ComposerStaticInit9f546ccfbf5d4b843db246ddbd796aec::$prefixLengthsPsr4; 479 $loader->prefixDirsPsr4 = ComposerStaticInit9f546ccfbf5d4b843db246ddbd796aec::$prefixDirsPsr4; 480 $loader->classMap = ComposerStaticInit9f546ccfbf5d4b843db246ddbd796aec::$classMap; 481 481 482 482 }, null, ClassLoader::class); -
activecampaign-for-woocommerce/trunk/activecampaign-for-woocommerce.php
r3002947 r3003944 17 17 * Plugin URI: https://www.activecampaign.com/ 18 18 * Description: Add Abandoned Cart functionality to your WooCommerce store, synchronize order & customer information using ActiveCampaign. 19 * Version: 2.5. 219 * Version: 2.5.3 20 20 * WC requires at least: 7.4 21 * WC tested up to: 8. 2.021 * WC tested up to: 8.3.1 22 22 * Requires at least: 6.0 23 23 * Requires PHP: 7.4 -
activecampaign-for-woocommerce/trunk/admin/class-activecampaign-for-woocommerce-admin.php
r3002947 r3003944 124 124 */ 125 125 public function enqueue_styles_scripts() { 126 wp_enqueue_style( 127 $this->plugin_name, 128 plugin_dir_url( __FILE__ ) . 'css/activecampaign-for-woocommerce-admin.css', 129 array(), 130 $this->version, 131 'all' 132 ); 126 global $plugin_page; 127 128 if ( preg_match( '/^activecampaign_for_woocommerce/i', $plugin_page ) >= 1 ) { 129 wp_enqueue_style( 130 $this->plugin_name, 131 plugin_dir_url( __FILE__ ) . 'css/activecampaign-for-woocommerce-admin.css', 132 array(), 133 $this->version, 134 'all' 135 ); 136 } 133 137 134 138 /* Register scripts but do not load them until they are fetched */ -
activecampaign-for-woocommerce/trunk/includes/config/activecampaign-for-woocommerce-global-constants.php
r3002947 r3003944 26 26 */ 27 27 if ( ! defined( 'ACTIVECAMPAIGN_FOR_WOOCOMMERCE_VERSION' ) ) { 28 define( 'ACTIVECAMPAIGN_FOR_WOOCOMMERCE_VERSION', '2.5. 2' );28 define( 'ACTIVECAMPAIGN_FOR_WOOCOMMERCE_VERSION', '2.5.3' ); 29 29 } 30 30
Note: See TracChangeset
for help on using the changeset viewer.