Plugin Directory

Changeset 3386501


Ignore:
Timestamp:
10/29/2025 02:35:03 PM (5 months ago)
Author:
fantasyworld
Message:

update 3.5.14

Location:
ry-woocommerce-tools/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ry-woocommerce-tools/trunk/includes/update.php

    r3386219 r3386501  
    117117        }
    118118
    119         if (version_compare($now_version, '3.5.13', '<')) {
    120             RY_WT::update_option('version', '3.5.13', true);
     119        if (version_compare($now_version, '3.5.14', '<')) {
     120            RY_WT::update_option('version', '3.5.14', true);
    121121        }
    122122    }
  • ry-woocommerce-tools/trunk/readme.txt

    r3386219 r3386501  
    66Requires PHP: 8.0
    77Tested up to: 6.8
    8 Stable tag: 3.5.13
     8Stable tag: 3.5.14
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    4141== Changelog ==
    4242
    43 = 3.5.13 - 2025-0-29 =
     43= 3.5.14 - 2025-10-29 =
     44* 修正 - 在部份情況下可能金流設定可能出現 PHP 錯誤。
     45
     46= 3.5.13 - 2025-10-29 =
    4447* 新增 - 綠界信用卡可設定是否支援 Apple Pay。
    4548
  • ry-woocommerce-tools/trunk/ry-woocommerce-tools.php

    r3386219 r3386501  
    55 * Plugin URI: https://ry-plugin.com/ry-woocommerce-tools
    66 * Description: WooCommerce paymet and shipping tools
    7  * Version: 3.5.13
     7 * Version: 3.5.14
    88 * Requires at least: 6.6
    99 * Requires PHP: 8.0
     
    2222function_exists('plugin_dir_url') or exit('No direct script access allowed');
    2323
    24 define('RY_WT_VERSION', '3.5.13');
     24define('RY_WT_VERSION', '3.5.14');
    2525define('RY_WT_PLUGIN_URL', plugin_dir_url(__FILE__));
    2626define('RY_WT_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • ry-woocommerce-tools/trunk/woocommerce/abstracts/abstract-wc-payment-gateway.php

    r3386206 r3386501  
    1616
    1717        $this->title = $this->settings['title'] ?: $this->method_title;
    18         $this->description = $this->settings['description'];
    19         $this->min_amount = (int) $this->settings['min_amount'];
    20         $this->max_amount = (int) $this->settings['max_amount'];
     18        $this->description = $this->settings['description'] ?: '';
     19        $this->min_amount = (int) ($this->settings['min_amount'] ?: 0);
     20        $this->max_amount = (int) ($this->settings['max_amount'] ?: 0);
    2121
    2222        add_action('woocommerce_admin_order_data_after_billing_address', [$this, 'admin_payment_info']);
Note: See TracChangeset for help on using the changeset viewer.