Plugin Directory

Changeset 3385867


Ignore:
Timestamp:
10/28/2025 01:09:51 PM (4 months ago)
Author:
evcode
Message:

Update to version 1.3.1 from GitHub

Location:
myd-delivery
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • myd-delivery/tags/1.3.1/README.txt

    r3385537 r3385867  
    55Requires at least: 5.5
    66Tested up to: 6.8
    7 Stable tag: 1.3
     7Stable tag: 1.3.1
    88Requires PHP: 7.4
    99License: GPL-3.0+
     
    7676== Changelog ==
    7777
     78= 1.3.1 =
     79* Fix: Mercado Pago integration don't load payment methods in some cases.
     80* Changed: code improvements.
     81
    7882= 1.3 =
    7983* New: add Mercado Pago as payment gateway.
  • myd-delivery/tags/1.3.1/includes/mercado-pago/bootstrap.php

    r3385537 r3385867  
    1717            [
    1818                'methods' => 'POST',
    19                 'callback' => 'Includes\MercadoPagomyd_mp_card',
     19                'callback' => 'Includes\MercadoPago\myd_mp_card',
    2020                'permission_callback' => '__return_true'
    2121            ]
     
    2727            [
    2828                'methods' => 'POST',
    29                 'callback' => 'Includes\MercadoPagomyd_mp_notification',
     29                'callback' => 'Includes\MercadoPago\myd_mp_notification',
    3030                'permission_callback' => '__return_true'
    3131            ]
     
    3737            [
    3838                'methods'  => 'GET',
    39                 'callback' => 'Includes\MercadoPagomyd_mp_order_status',
     39                'callback' => 'Includes\MercadoPago\myd_mp_order_status',
    4040                'permission_callback' => '__return_true',
    4141            ]
  • myd-delivery/tags/1.3.1/myd-delivery.php

    r3385537 r3385867  
    66 * Author: EduardoVillao.me
    77 * Author URI: https://eduardovillao.me/
    8  * Version: 1.3
     8 * Version: 1.3.1
    99 * Requires PHP: 7.4
    1010 * Requires at least: 5.5
     
    2626define( 'MYDDELIVERY_BASENAME', plugin_basename( __FILE__ ) );
    2727define( 'MYDDELIVERY_DIRNAME', plugin_basename( __DIR__ ) );
    28 define( 'MYDDELIVERY_VERSION', '1.3' );
     28define( 'MYDDELIVERY_VERSION', '1.3.1' );
    2929define( 'MYDDELIVERY_MIN_PHP_VERSION', '7.4' );
    3030define( 'MYDDELIVERY_MIN_WP_VERSION', '5.5' );
  • myd-delivery/trunk/README.txt

    r3385537 r3385867  
    55Requires at least: 5.5
    66Tested up to: 6.8
    7 Stable tag: 1.3
     7Stable tag: 1.3.1
    88Requires PHP: 7.4
    99License: GPL-3.0+
     
    7676== Changelog ==
    7777
     78= 1.3.1 =
     79* Fix: Mercado Pago integration don't load payment methods in some cases.
     80* Changed: code improvements.
     81
    7882= 1.3 =
    7983* New: add Mercado Pago as payment gateway.
  • myd-delivery/trunk/includes/mercado-pago/bootstrap.php

    r3385537 r3385867  
    1717            [
    1818                'methods' => 'POST',
    19                 'callback' => 'Includes\MercadoPagomyd_mp_card',
     19                'callback' => 'Includes\MercadoPago\myd_mp_card',
    2020                'permission_callback' => '__return_true'
    2121            ]
     
    2727            [
    2828                'methods' => 'POST',
    29                 'callback' => 'Includes\MercadoPagomyd_mp_notification',
     29                'callback' => 'Includes\MercadoPago\myd_mp_notification',
    3030                'permission_callback' => '__return_true'
    3131            ]
     
    3737            [
    3838                'methods'  => 'GET',
    39                 'callback' => 'Includes\MercadoPagomyd_mp_order_status',
     39                'callback' => 'Includes\MercadoPago\myd_mp_order_status',
    4040                'permission_callback' => '__return_true',
    4141            ]
  • myd-delivery/trunk/myd-delivery.php

    r3385537 r3385867  
    66 * Author: EduardoVillao.me
    77 * Author URI: https://eduardovillao.me/
    8  * Version: 1.3
     8 * Version: 1.3.1
    99 * Requires PHP: 7.4
    1010 * Requires at least: 5.5
     
    2626define( 'MYDDELIVERY_BASENAME', plugin_basename( __FILE__ ) );
    2727define( 'MYDDELIVERY_DIRNAME', plugin_basename( __DIR__ ) );
    28 define( 'MYDDELIVERY_VERSION', '1.3' );
     28define( 'MYDDELIVERY_VERSION', '1.3.1' );
    2929define( 'MYDDELIVERY_MIN_PHP_VERSION', '7.4' );
    3030define( 'MYDDELIVERY_MIN_WP_VERSION', '5.5' );
Note: See TracChangeset for help on using the changeset viewer.