Changeset 3406424
- Timestamp:
- 12/01/2025 03:50:14 AM (4 months ago)
- Location:
- payment-gateway-for-authorize-net-for-woocommerce
- Files:
-
- 58 added
- 2 edited
-
tags/1.0.5 (added)
-
tags/1.0.5/LICENSE.txt (added)
-
tags/1.0.5/assets (added)
-
tags/1.0.5/assets/css (added)
-
tags/1.0.5/assets/css/admin.css (added)
-
tags/1.0.5/assets/css/credit-cards (added)
-
tags/1.0.5/assets/css/credit-cards/amex.svg (added)
-
tags/1.0.5/assets/css/credit-cards/diners.svg (added)
-
tags/1.0.5/assets/css/credit-cards/discover.svg (added)
-
tags/1.0.5/assets/css/credit-cards/elo.svg (added)
-
tags/1.0.5/assets/css/credit-cards/hiper.svg (added)
-
tags/1.0.5/assets/css/credit-cards/jcb.svg (added)
-
tags/1.0.5/assets/css/credit-cards/maestro.svg (added)
-
tags/1.0.5/assets/css/credit-cards/mastercard.svg (added)
-
tags/1.0.5/assets/css/credit-cards/visa.svg (added)
-
tags/1.0.5/assets/css/public.css (added)
-
tags/1.0.5/assets/js (added)
-
tags/1.0.5/assets/js/acceptjs-handler.js (added)
-
tags/1.0.5/assets/js/blocks-authorizenet.js (added)
-
tags/1.0.5/assets/js/easyauthnet-authorizenet-admin.js (added)
-
tags/1.0.5/assets/js/easyauthnet-review-ajax.js (added)
-
tags/1.0.5/feedback (added)
-
tags/1.0.5/feedback/css (added)
-
tags/1.0.5/feedback/css/deactivation-feedback-modal.css (added)
-
tags/1.0.5/feedback/deactivation-feedback-form.php (added)
-
tags/1.0.5/feedback/fonts (added)
-
tags/1.0.5/feedback/fonts/icomoon.eot (added)
-
tags/1.0.5/feedback/fonts/icomoon.svg (added)
-
tags/1.0.5/feedback/fonts/icomoon.ttf (added)
-
tags/1.0.5/feedback/fonts/icomoon.woff (added)
-
tags/1.0.5/feedback/js (added)
-
tags/1.0.5/feedback/js/deactivation-feedback-modal.js (added)
-
tags/1.0.5/includes (added)
-
tags/1.0.5/includes/class-api-handler.php (added)
-
tags/1.0.5/includes/class-easy-payment-authorizenet-gateway.php (added)
-
tags/1.0.5/includes/class-webhook-handler.php (added)
-
tags/1.0.5/includes/compatibility (added)
-
tags/1.0.5/includes/compatibility/class-block-support.php (added)
-
tags/1.0.5/includes/compatibility/class-easyauthnet-subscription-helper.php (added)
-
tags/1.0.5/includes/compatibility/class-preorders-compat.php (added)
-
tags/1.0.5/languages (added)
-
tags/1.0.5/languages/easyauthnet-payment-authorizenet.pot (added)
-
tags/1.0.5/payment-gateway-for-authorizenet-for-woocommerce-admin.php (added)
-
tags/1.0.5/payment-gateway-for-authorizenet-for-woocommerce.php (added)
-
tags/1.0.5/readme.txt (added)
-
tags/1.0.5/uninstall.php (added)
-
trunk/feedback (added)
-
trunk/feedback/css (added)
-
trunk/feedback/css/deactivation-feedback-modal.css (added)
-
trunk/feedback/deactivation-feedback-form.php (added)
-
trunk/feedback/fonts (added)
-
trunk/feedback/fonts/icomoon.eot (added)
-
trunk/feedback/fonts/icomoon.svg (added)
-
trunk/feedback/fonts/icomoon.ttf (added)
-
trunk/feedback/fonts/icomoon.woff (added)
-
trunk/feedback/js (added)
-
trunk/feedback/js/deactivation-feedback-modal.js (added)
-
trunk/payment-gateway-for-authorizenet-for-woocommerce-admin.php (added)
-
trunk/payment-gateway-for-authorizenet-for-woocommerce.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
payment-gateway-for-authorize-net-for-woocommerce/trunk/payment-gateway-for-authorizenet-for-woocommerce.php
r3380104 r3406424 7 7 * Author: easypayment 8 8 * Author URI: https://profiles.wordpress.org/easypayment/ 9 * Version: 1.0. 49 * Version: 1.0.5 10 10 * Requires at least: 5.6 11 * Tested up to: 6. 8.311 * Tested up to: 6.9 12 12 * Requires PHP: 7.4 13 13 * Text Domain: payment-gateway-for-authorize-net-for-woocommerce 14 14 * Domain Path: /languages/ 15 15 * WC requires at least: 6.0 16 * WC tested up to: 10. 2.216 * WC tested up to: 10.3.5 17 17 * Requires Plugins: woocommerce 18 18 * License: GPLv2 or later … … 21 21 if ( ! defined( 'ABSPATH' ) ) exit; 22 22 23 define('EASYAUTHNET_AUTHORIZENET_VERSION', '1.0.4'); 23 if (!defined('EASYAUTHNET_AUTHORIZENET_VERSION')) { 24 define('EASYAUTHNET_AUTHORIZENET_VERSION', '1.0.5'); 25 } 24 26 define('EASYAUTHNET_AUTHORIZENET_PLUGIN_FILE', __FILE__); 25 27 define('EASYAUTHNET_AUTHORIZENET_PLUGIN_PATH', plugin_dir_path(__FILE__)); … … 31 33 define('EASYAUTHNET_AUTHORIZENET_CUSTOMER_PROFILE_ID', '_easyauthnet_authorizenet_customer_profile_id'); 32 34 } 33 35 if (!defined('EASYAUTHNET_AUTHORIZENET_BASENAME')) { 36 define('EASYAUTHNET_AUTHORIZENET_BASENAME', plugin_basename(__FILE__)); 37 } 38 require_once EASYAUTHNET_AUTHORIZENET_PLUGIN_PATH . 'payment-gateway-for-authorizenet-for-woocommerce-admin.php'; 34 39 add_action('plugins_loaded', 'easyauthnet_authorizenet_init'); 35 40 add_filter('woocommerce_payment_gateways', 'easyauthnet_woocommerce_payment_gateways', 10, 1); -
payment-gateway-for-authorize-net-for-woocommerce/trunk/readme.txt
r3380104 r3406424 3 3 Tags: authorize.net, credit card, visa 4 4 Requires at least: 5.6 5 Tested up to: 6. 8.35 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 111 111 == Changelog == 112 112 113 = 1.0.5 = 114 * Added - Compatibility with WordPress 6.9. 115 113 116 = 1.0.4 = 114 117 * Improved Gateway Settings UI.
Note: See TracChangeset
for help on using the changeset viewer.