Plugin Directory

Changeset 3152942


Ignore:
Timestamp:
09/16/2024 07:54:17 PM (19 months ago)
Author:
axazara
Message:

Update to version v1.9 from GitHub

Location:
moneroo
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • moneroo/tags/v1.9/moneroo-for-woocommerce.php

    r3122743 r3152942  
    1111 * License: GPLv2
    1212 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    13  * Version: v1.8
     13 * Version: v1.9
    1414 * Requires at least: 4.9
    1515 * Tested up to: 6.6
     
    2121
    2222const MONEROO_WC_MAIN_FILE = __FILE__;
    23 const MONEROO_WC__VERSION = 'v1.8';
     23const MONEROO_WC__VERSION = 'v1.9';
    2424
    2525
  • moneroo/tags/v1.9/readme.txt

    r3122753 r3152942  
    55Requires at least: 4.9
    66Tested up to: 6.4
    7 Stable tag: v1.8
     7Stable tag: v1.9
    88Requires PHP: 7.4
    99License: GPLv3
  • moneroo/tags/v1.9/src/Moneroo_WC_Gateway.php

    r3122809 r3152942  
    151151                'first_name' => $order->get_billing_first_name(),
    152152                '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(),
    158159            ],
    159160            'metadata' => [
  • moneroo/tags/v1.9/vendor/composer/installed.php

    r3122809 r3152942  
    22    'root' => array(
    33        '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',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    4848        ),
    4949        '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',
    5353            'type' => 'library',
    5454            'install_path' => __DIR__ . '/../../',
  • moneroo/trunk/moneroo-for-woocommerce.php

    r3122743 r3152942  
    1111 * License: GPLv2
    1212 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    13  * Version: v1.8
     13 * Version: v1.9
    1414 * Requires at least: 4.9
    1515 * Tested up to: 6.6
     
    2121
    2222const MONEROO_WC_MAIN_FILE = __FILE__;
    23 const MONEROO_WC__VERSION = 'v1.8';
     23const MONEROO_WC__VERSION = 'v1.9';
    2424
    2525
  • moneroo/trunk/readme.txt

    r3122753 r3152942  
    55Requires at least: 4.9
    66Tested up to: 6.4
    7 Stable tag: v1.8
     7Stable tag: v1.9
    88Requires PHP: 7.4
    99License: GPLv3
  • moneroo/trunk/src/Moneroo_WC_Gateway.php

    r3122809 r3152942  
    151151                'first_name' => $order->get_billing_first_name(),
    152152                '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(),
    158159            ],
    159160            'metadata' => [
  • moneroo/trunk/vendor/composer/installed.php

    r3122809 r3152942  
    22    'root' => array(
    33        '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',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    4848        ),
    4949        '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',
    5353            'type' => 'library',
    5454            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.