Plugin Directory

Changeset 3411829


Ignore:
Timestamp:
12/05/2025 07:35:29 AM (4 months ago)
Author:
wijnbergdevelopments
Message:

Tested WordPress 6.9

Location:
filter-order-history-for-woocommerce
Files:
35 added
4 edited

Legend:

Unmodified
Added
Removed
  • filter-order-history-for-woocommerce/trunk/README.txt

    r3348553 r3411829  
    33Tags: woocommerce, orders, filter, search, columns
    44Requires at least: 6.0
    5 Tested up to: 6.8
    6 Stable tag: 1.0.0
     5Tested up to: 6.9
     6Stable tag: 1.0.1
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    9292== Changelog ==
    9393
     94= 1.0.1 =
     95* Tested WordPress 6.9
     96* Tested WooCommerce 10.3.6
     97
    9498= 1.0.0 =
    9599* Initial release
  • filter-order-history-for-woocommerce/trunk/includes/class-wdevs-filter-order-history.php

    r3348520 r3411829  
    7171            $this->version = WDEVS_FILTER_ORDER_HISTORY_VERSION;
    7272        } else {
    73             $this->version = '1.0.0';
     73            $this->version = '1.0.1';
    7474        }
    7575        $this->plugin_name = 'wdevs-filter-order-history';
  • filter-order-history-for-woocommerce/trunk/package.json

    r3348520 r3411829  
    11{
    22    "name": "wdevs-filter-order-history",
    3     "version": "1.0.0",
     3    "version": "1.0.1",
    44    "description": "Let customers filter and search their order history with advanced options and customizable columns.",
    55    "author": "Wijnberg Developments <contact@wijnberg.dev>",
     
    77    "scripts": {
    88        "format": "wp-scripts format",
    9         "plugin-zip": "wp-scripts plugin-zip  --no-root-folder",
     9        "plugin-zip": "wp-scripts plugin-zip --root-folder=filter-order-history-for-woocommerce",
    1010        "deploy": "npm run format && npm run plugin-zip"
    1111    },
     
    2020    ],
    2121    "devDependencies": {
    22         "@wordpress/scripts": "^30.20.0"
     22        "@wordpress/scripts": "^31.1.0"
    2323    }
    2424}
  • filter-order-history-for-woocommerce/trunk/wdevs-filter-order-history.php

    r3348520 r3411829  
    1717 * Plugin URI:        https://products.wijnberg.dev
    1818 * Description:       Let customers filter and search their order history with advanced options and customizable columns.
    19  * Version:           1.0.0
     19 * Version:           1.0.1
    2020 * Author:            Wijnberg Developments
    2121 * Author URI:        https://products.wijnberg.dev/
     
    2525 * Domain Path:       /languages
    2626 * Requires at least:    6.0
    27  * Tested up to:         6.8
     27 * Tested up to:         6.9
    2828 * Requires PHP:         7.4
    2929 * WC requires at least: 7.0.0
    30  * WC tested up to:      10.0.2
     30 * WC tested up to:      10.3.6
    3131 * Requires Plugins:     woocommerce
    3232 */
     
    4242 * Rename this for your plugin and update it as you release new versions.
    4343 */
    44 define( 'WDEVS_FILTER_ORDER_HISTORY_VERSION', '1.0.0' );
     44define( 'WDEVS_FILTER_ORDER_HISTORY_VERSION', '1.0.1' );
    4545
    4646/**
Note: See TracChangeset for help on using the changeset viewer.