Changeset 3152942
- Timestamp:
- 09/16/2024 07:54:17 PM (19 months ago)
- Location:
- moneroo
- Files:
-
- 8 edited
- 1 copied
-
tags/v1.9 (copied) (copied from moneroo/trunk)
-
tags/v1.9/moneroo-for-woocommerce.php (modified) (2 diffs)
-
tags/v1.9/readme.txt (modified) (1 diff)
-
tags/v1.9/src/Moneroo_WC_Gateway.php (modified) (1 diff)
-
tags/v1.9/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/moneroo-for-woocommerce.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Moneroo_WC_Gateway.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
moneroo/tags/v1.9/moneroo-for-woocommerce.php
r3122743 r3152942 11 11 * License: GPLv2 12 12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 13 * Version: v1. 813 * Version: v1.9 14 14 * Requires at least: 4.9 15 15 * Tested up to: 6.6 … … 21 21 22 22 const MONEROO_WC_MAIN_FILE = __FILE__; 23 const MONEROO_WC__VERSION = 'v1. 8';23 const MONEROO_WC__VERSION = 'v1.9'; 24 24 25 25 -
moneroo/tags/v1.9/readme.txt
r3122753 r3152942 5 5 Requires at least: 4.9 6 6 Tested up to: 6.4 7 Stable tag: v1. 87 Stable tag: v1.9 8 8 Requires PHP: 7.4 9 9 License: GPLv3 -
moneroo/tags/v1.9/src/Moneroo_WC_Gateway.php
r3122809 r3152942 151 151 'first_name' => $order->get_billing_first_name(), 152 152 'last_name' => $order->get_billing_last_name(), 153 'phone' => empty($order->get_billing_phone()) ? null : (int) $order->get_billing_phone(), 'address' => $order->get_billing_address_1(), 154 'city' => $order->get_billing_city(), 155 'state' => $order->get_billing_state(), 156 'country' => $order->get_billing_country(), 157 'zip' => $order->get_billing_postcode(), 153 'phone' => empty($order->get_billing_phone()) ? null : (int) $order->get_billing_phone(), 154 'address' => empty($order->get_billing_address_1()) ? null : $order->get_billing_address_1(), 155 'city' => empty($order->get_billing_city()) ? null : $order->get_billing_city(), 156 'state' => empty($order->get_billing_state()) ? null : $order->get_billing_state(), 157 'country' => empty($order->get_billing_country()) ? null : $order->get_billing_country(), 158 'zip' => empty($order->get_billing_postcode()) ? null : $order->get_billing_postcode(), 158 159 ], 159 160 'metadata' => [ -
moneroo/tags/v1.9/vendor/composer/installed.php
r3122809 r3152942 2 2 'root' => array( 3 3 'name' => 'moneroo/moneroo-woocommerce', 4 'pretty_version' => 'v1. 8',5 'version' => '1. 8.0.0',6 'reference' => ' d9fa553636036c01cce6021620a68ff3f6f62f66',4 'pretty_version' => 'v1.9', 5 'version' => '1.9.0.0', 6 'reference' => 'b9b0899df13064a48667f50dcab4e9befad6ba80', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 48 48 ), 49 49 'moneroo/moneroo-woocommerce' => array( 50 'pretty_version' => 'v1. 8',51 'version' => '1. 8.0.0',52 'reference' => ' d9fa553636036c01cce6021620a68ff3f6f62f66',50 'pretty_version' => 'v1.9', 51 'version' => '1.9.0.0', 52 'reference' => 'b9b0899df13064a48667f50dcab4e9befad6ba80', 53 53 'type' => 'library', 54 54 'install_path' => __DIR__ . '/../../', -
moneroo/trunk/moneroo-for-woocommerce.php
r3122743 r3152942 11 11 * License: GPLv2 12 12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 13 * Version: v1. 813 * Version: v1.9 14 14 * Requires at least: 4.9 15 15 * Tested up to: 6.6 … … 21 21 22 22 const MONEROO_WC_MAIN_FILE = __FILE__; 23 const MONEROO_WC__VERSION = 'v1. 8';23 const MONEROO_WC__VERSION = 'v1.9'; 24 24 25 25 -
moneroo/trunk/readme.txt
r3122753 r3152942 5 5 Requires at least: 4.9 6 6 Tested up to: 6.4 7 Stable tag: v1. 87 Stable tag: v1.9 8 8 Requires PHP: 7.4 9 9 License: GPLv3 -
moneroo/trunk/src/Moneroo_WC_Gateway.php
r3122809 r3152942 151 151 'first_name' => $order->get_billing_first_name(), 152 152 'last_name' => $order->get_billing_last_name(), 153 'phone' => empty($order->get_billing_phone()) ? null : (int) $order->get_billing_phone(), 'address' => $order->get_billing_address_1(), 154 'city' => $order->get_billing_city(), 155 'state' => $order->get_billing_state(), 156 'country' => $order->get_billing_country(), 157 'zip' => $order->get_billing_postcode(), 153 'phone' => empty($order->get_billing_phone()) ? null : (int) $order->get_billing_phone(), 154 'address' => empty($order->get_billing_address_1()) ? null : $order->get_billing_address_1(), 155 'city' => empty($order->get_billing_city()) ? null : $order->get_billing_city(), 156 'state' => empty($order->get_billing_state()) ? null : $order->get_billing_state(), 157 'country' => empty($order->get_billing_country()) ? null : $order->get_billing_country(), 158 'zip' => empty($order->get_billing_postcode()) ? null : $order->get_billing_postcode(), 158 159 ], 159 160 'metadata' => [ -
moneroo/trunk/vendor/composer/installed.php
r3122809 r3152942 2 2 'root' => array( 3 3 'name' => 'moneroo/moneroo-woocommerce', 4 'pretty_version' => 'v1. 8',5 'version' => '1. 8.0.0',6 'reference' => ' d9fa553636036c01cce6021620a68ff3f6f62f66',4 'pretty_version' => 'v1.9', 5 'version' => '1.9.0.0', 6 'reference' => 'b9b0899df13064a48667f50dcab4e9befad6ba80', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 48 48 ), 49 49 'moneroo/moneroo-woocommerce' => array( 50 'pretty_version' => 'v1. 8',51 'version' => '1. 8.0.0',52 'reference' => ' d9fa553636036c01cce6021620a68ff3f6f62f66',50 'pretty_version' => 'v1.9', 51 'version' => '1.9.0.0', 52 'reference' => 'b9b0899df13064a48667f50dcab4e9befad6ba80', 53 53 'type' => 'library', 54 54 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.