Changeset 3386219
- Timestamp:
- 10/29/2025 07:04:06 AM (5 months ago)
- Location:
- ry-woocommerce-tools
- Files:
-
- 1 deleted
- 5 edited
-
tags/3.5.12 (deleted)
-
trunk/includes/main.php (modified) (1 diff)
-
trunk/includes/update.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ry-woocommerce-tools.php (modified) (2 diffs)
-
trunk/woocommerce/abstracts/abstract-wc-shipping-method.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ry-woocommerce-tools/trunk/includes/main.php
r3386206 r3386219 7 7 public const MIN_WC_VERSION = '8.0.0'; 8 8 9 public const MIN_PRO_TOOLS_VERSION = '3.6. 6';9 public const MIN_PRO_TOOLS_VERSION = '3.6.7'; 10 10 11 11 protected static $_instance = null; -
ry-woocommerce-tools/trunk/includes/update.php
r3386209 r3386219 117 117 } 118 118 119 if (version_compare($now_version, '3.5.1 2', '<')) {120 RY_WT::update_option('version', '3.5.1 2', true);119 if (version_compare($now_version, '3.5.13', '<')) { 120 RY_WT::update_option('version', '3.5.13', true); 121 121 } 122 122 } -
ry-woocommerce-tools/trunk/readme.txt
r3386209 r3386219 6 6 Requires PHP: 8.0 7 7 Tested up to: 6.8 8 Stable tag: 3.5.1 28 Stable tag: 3.5.13 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.1 2- 2025-0-29 =43 = 3.5.13 - 2025-0-29 = 44 44 * 新增 - 綠界信用卡可設定是否支援 Apple Pay。 45 45 -
ry-woocommerce-tools/trunk/ry-woocommerce-tools.php
r3386209 r3386219 5 5 * Plugin URI: https://ry-plugin.com/ry-woocommerce-tools 6 6 * Description: WooCommerce paymet and shipping tools 7 * Version: 3.5.1 27 * Version: 3.5.13 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 2');24 define('RY_WT_VERSION', '3.5.13'); 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-shipping-method.php
r3386206 r3386219 19 19 $this->init_settings(); 20 20 21 $this->title = $this-> settings['title'] ?: $this->method_title;22 $this->tax_status = $this-> settings['tax_status'];23 $this->cost = $this-> settings['cost'];24 $this->cost_requires = $this-> settings['cost_requires'];25 $this->min_amount = $this-> settings['min_amount'];26 $this->weight_plus_cost = $this-> settings['weight_plus_cost'] ?: 0;21 $this->title = $this->get_option('title'); 22 $this->tax_status = $this->get_option('tax_status'); 23 $this->cost = $this->get_option('cost'); 24 $this->cost_requires = $this->get_option('cost_requires'); 25 $this->min_amount = $this->get_option('min_amount', 0); 26 $this->weight_plus_cost = $this->get_option('weight_plus_cost', 0); 27 27 28 28 if (!wc_tax_enabled()) {
Note: See TracChangeset
for help on using the changeset viewer.