Changeset 3385867
- Timestamp:
- 10/28/2025 01:09:51 PM (4 months ago)
- Location:
- myd-delivery
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.1 (copied) (copied from myd-delivery/trunk)
-
tags/1.3.1/README.txt (modified) (2 diffs)
-
tags/1.3.1/includes/mercado-pago/bootstrap.php (modified) (3 diffs)
-
tags/1.3.1/myd-delivery.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/mercado-pago/bootstrap.php (modified) (3 diffs)
-
trunk/myd-delivery.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
myd-delivery/tags/1.3.1/README.txt
r3385537 r3385867 5 5 Requires at least: 5.5 6 6 Tested up to: 6.8 7 Stable tag: 1.3 7 Stable tag: 1.3.1 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0+ … … 76 76 == Changelog == 77 77 78 = 1.3.1 = 79 * Fix: Mercado Pago integration don't load payment methods in some cases. 80 * Changed: code improvements. 81 78 82 = 1.3 = 79 83 * New: add Mercado Pago as payment gateway. -
myd-delivery/tags/1.3.1/includes/mercado-pago/bootstrap.php
r3385537 r3385867 17 17 [ 18 18 'methods' => 'POST', 19 'callback' => 'Includes\MercadoPago myd_mp_card',19 'callback' => 'Includes\MercadoPago\myd_mp_card', 20 20 'permission_callback' => '__return_true' 21 21 ] … … 27 27 [ 28 28 'methods' => 'POST', 29 'callback' => 'Includes\MercadoPago myd_mp_notification',29 'callback' => 'Includes\MercadoPago\myd_mp_notification', 30 30 'permission_callback' => '__return_true' 31 31 ] … … 37 37 [ 38 38 'methods' => 'GET', 39 'callback' => 'Includes\MercadoPago myd_mp_order_status',39 'callback' => 'Includes\MercadoPago\myd_mp_order_status', 40 40 'permission_callback' => '__return_true', 41 41 ] -
myd-delivery/tags/1.3.1/myd-delivery.php
r3385537 r3385867 6 6 * Author: EduardoVillao.me 7 7 * Author URI: https://eduardovillao.me/ 8 * Version: 1.3 8 * Version: 1.3.1 9 9 * Requires PHP: 7.4 10 10 * Requires at least: 5.5 … … 26 26 define( 'MYDDELIVERY_BASENAME', plugin_basename( __FILE__ ) ); 27 27 define( 'MYDDELIVERY_DIRNAME', plugin_basename( __DIR__ ) ); 28 define( 'MYDDELIVERY_VERSION', '1.3 ' );28 define( 'MYDDELIVERY_VERSION', '1.3.1' ); 29 29 define( 'MYDDELIVERY_MIN_PHP_VERSION', '7.4' ); 30 30 define( 'MYDDELIVERY_MIN_WP_VERSION', '5.5' ); -
myd-delivery/trunk/README.txt
r3385537 r3385867 5 5 Requires at least: 5.5 6 6 Tested up to: 6.8 7 Stable tag: 1.3 7 Stable tag: 1.3.1 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0+ … … 76 76 == Changelog == 77 77 78 = 1.3.1 = 79 * Fix: Mercado Pago integration don't load payment methods in some cases. 80 * Changed: code improvements. 81 78 82 = 1.3 = 79 83 * New: add Mercado Pago as payment gateway. -
myd-delivery/trunk/includes/mercado-pago/bootstrap.php
r3385537 r3385867 17 17 [ 18 18 'methods' => 'POST', 19 'callback' => 'Includes\MercadoPago myd_mp_card',19 'callback' => 'Includes\MercadoPago\myd_mp_card', 20 20 'permission_callback' => '__return_true' 21 21 ] … … 27 27 [ 28 28 'methods' => 'POST', 29 'callback' => 'Includes\MercadoPago myd_mp_notification',29 'callback' => 'Includes\MercadoPago\myd_mp_notification', 30 30 'permission_callback' => '__return_true' 31 31 ] … … 37 37 [ 38 38 'methods' => 'GET', 39 'callback' => 'Includes\MercadoPago myd_mp_order_status',39 'callback' => 'Includes\MercadoPago\myd_mp_order_status', 40 40 'permission_callback' => '__return_true', 41 41 ] -
myd-delivery/trunk/myd-delivery.php
r3385537 r3385867 6 6 * Author: EduardoVillao.me 7 7 * Author URI: https://eduardovillao.me/ 8 * Version: 1.3 8 * Version: 1.3.1 9 9 * Requires PHP: 7.4 10 10 * Requires at least: 5.5 … … 26 26 define( 'MYDDELIVERY_BASENAME', plugin_basename( __FILE__ ) ); 27 27 define( 'MYDDELIVERY_DIRNAME', plugin_basename( __DIR__ ) ); 28 define( 'MYDDELIVERY_VERSION', '1.3 ' );28 define( 'MYDDELIVERY_VERSION', '1.3.1' ); 29 29 define( 'MYDDELIVERY_MIN_PHP_VERSION', '7.4' ); 30 30 define( 'MYDDELIVERY_MIN_WP_VERSION', '5.5' );
Note: See TracChangeset
for help on using the changeset viewer.