Plugin Directory

Changeset 3386219


Ignore:
Timestamp:
10/29/2025 07:04:06 AM (5 months ago)
Author:
fantasyworld
Message:

update 3.5.13

Location:
ry-woocommerce-tools
Files:
1 deleted
5 edited

Legend:

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

    r3386206 r3386219  
    77    public const MIN_WC_VERSION = '8.0.0';
    88
    9     public const MIN_PRO_TOOLS_VERSION = '3.6.6';
     9    public const MIN_PRO_TOOLS_VERSION = '3.6.7';
    1010
    1111    protected static $_instance = null;
  • ry-woocommerce-tools/trunk/includes/update.php

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

    r3386209 r3386219  
    66Requires PHP: 8.0
    77Tested up to: 6.8
    8 Stable tag: 3.5.12
     8Stable tag: 3.5.13
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    4141== Changelog ==
    4242
    43 = 3.5.12 - 2025-0-29 =
     43= 3.5.13 - 2025-0-29 =
    4444* 新增 - 綠界信用卡可設定是否支援 Apple Pay。
    4545
  • ry-woocommerce-tools/trunk/ry-woocommerce-tools.php

    r3386209 r3386219  
    55 * Plugin URI: https://ry-plugin.com/ry-woocommerce-tools
    66 * Description: WooCommerce paymet and shipping tools
    7  * Version: 3.5.12
     7 * Version: 3.5.13
    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.12');
     24define('RY_WT_VERSION', '3.5.13');
    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-shipping-method.php

    r3386206 r3386219  
    1919        $this->init_settings();
    2020
    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);
    2727
    2828        if (!wc_tax_enabled()) {
Note: See TracChangeset for help on using the changeset viewer.