Changeset 3386501
- Timestamp:
- 10/29/2025 02:35:03 PM (5 months ago)
- Location:
- ry-woocommerce-tools/trunk
- Files:
-
- 4 edited
-
includes/update.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
ry-woocommerce-tools.php (modified) (2 diffs)
-
woocommerce/abstracts/abstract-wc-payment-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ry-woocommerce-tools/trunk/includes/update.php
r3386219 r3386501 117 117 } 118 118 119 if (version_compare($now_version, '3.5.1 3', '<')) {120 RY_WT::update_option('version', '3.5.1 3', true);119 if (version_compare($now_version, '3.5.14', '<')) { 120 RY_WT::update_option('version', '3.5.14', true); 121 121 } 122 122 } -
ry-woocommerce-tools/trunk/readme.txt
r3386219 r3386501 6 6 Requires PHP: 8.0 7 7 Tested up to: 6.8 8 Stable tag: 3.5.1 38 Stable tag: 3.5.14 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.txt … … 41 41 == Changelog == 42 42 43 = 3.5.13 - 2025-0-29 = 43 = 3.5.14 - 2025-10-29 = 44 * 修正 - 在部份情況下可能金流設定可能出現 PHP 錯誤。 45 46 = 3.5.13 - 2025-10-29 = 44 47 * 新增 - 綠界信用卡可設定是否支援 Apple Pay。 45 48 -
ry-woocommerce-tools/trunk/ry-woocommerce-tools.php
r3386219 r3386501 5 5 * Plugin URI: https://ry-plugin.com/ry-woocommerce-tools 6 6 * Description: WooCommerce paymet and shipping tools 7 * Version: 3.5.1 37 * Version: 3.5.14 8 8 * Requires at least: 6.6 9 9 * Requires PHP: 8.0 … … 22 22 function_exists('plugin_dir_url') or exit('No direct script access allowed'); 23 23 24 define('RY_WT_VERSION', '3.5.1 3');24 define('RY_WT_VERSION', '3.5.14'); 25 25 define('RY_WT_PLUGIN_URL', plugin_dir_url(__FILE__)); 26 26 define('RY_WT_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
ry-woocommerce-tools/trunk/woocommerce/abstracts/abstract-wc-payment-gateway.php
r3386206 r3386501 16 16 17 17 $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); 21 21 22 22 add_action('woocommerce_admin_order_data_after_billing_address', [$this, 'admin_payment_info']);
Note: See TracChangeset
for help on using the changeset viewer.