Changeset 3411829
- Timestamp:
- 12/05/2025 07:35:29 AM (4 months ago)
- Location:
- filter-order-history-for-woocommerce
- Files:
-
- 35 added
- 4 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/LICENSE.txt (added)
-
tags/1.0.1/README.md (added)
-
tags/1.0.1/README.txt (added)
-
tags/1.0.1/admin (added)
-
tags/1.0.1/admin/class-wdevs-filter-order-history-admin.php (added)
-
tags/1.0.1/admin/index.php (added)
-
tags/1.0.1/admin/js (added)
-
tags/1.0.1/admin/js/wdevs-filter-order-history-admin.js (added)
-
tags/1.0.1/admin/partials (added)
-
tags/1.0.1/admin/partials/section-wdevs-filter-order-history-column-order.php (added)
-
tags/1.0.1/includes (added)
-
tags/1.0.1/includes/class-wdevs-filter-order-history-activator.php (added)
-
tags/1.0.1/includes/class-wdevs-filter-order-history-deactivator.php (added)
-
tags/1.0.1/includes/class-wdevs-filter-order-history-filter-manager.php (added)
-
tags/1.0.1/includes/class-wdevs-filter-order-history-loader.php (added)
-
tags/1.0.1/includes/class-wdevs-filter-order-history-woocommerce.php (added)
-
tags/1.0.1/includes/class-wdevs-filter-order-history.php (added)
-
tags/1.0.1/includes/index.php (added)
-
tags/1.0.1/includes/trait-wdevs-filter-order-history-helper.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/filter-order-history-for-woocommerce-en_US.l10n.php (added)
-
tags/1.0.1/languages/filter-order-history-for-woocommerce-en_US.mo (added)
-
tags/1.0.1/languages/filter-order-history-for-woocommerce-en_US.po (added)
-
tags/1.0.1/languages/filter-order-history-for-woocommerce.pot (added)
-
tags/1.0.1/package.json (added)
-
tags/1.0.1/public (added)
-
tags/1.0.1/public/class-wdevs-filter-order-history-public.php (added)
-
tags/1.0.1/public/css (added)
-
tags/1.0.1/public/css/wdevs-filter-order-history-public.css (added)
-
tags/1.0.1/public/index.php (added)
-
tags/1.0.1/public/partials (added)
-
tags/1.0.1/public/partials/section-wdevs-filter-order-history-order-filters.php (added)
-
tags/1.0.1/wdevs-filter-order-history.php (added)
-
trunk/README.md (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-wdevs-filter-order-history.php (modified) (1 diff)
-
trunk/package.json (modified) (3 diffs)
-
trunk/wdevs-filter-order-history.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
filter-order-history-for-woocommerce/trunk/README.txt
r3348553 r3411829 3 3 Tags: woocommerce, orders, filter, search, columns 4 4 Requires at least: 6.0 5 Tested up to: 6. 86 Stable tag: 1.0. 05 Tested up to: 6.9 6 Stable tag: 1.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 92 92 == Changelog == 93 93 94 = 1.0.1 = 95 * Tested WordPress 6.9 96 * Tested WooCommerce 10.3.6 97 94 98 = 1.0.0 = 95 99 * Initial release -
filter-order-history-for-woocommerce/trunk/includes/class-wdevs-filter-order-history.php
r3348520 r3411829 71 71 $this->version = WDEVS_FILTER_ORDER_HISTORY_VERSION; 72 72 } else { 73 $this->version = '1.0. 0';73 $this->version = '1.0.1'; 74 74 } 75 75 $this->plugin_name = 'wdevs-filter-order-history'; -
filter-order-history-for-woocommerce/trunk/package.json
r3348520 r3411829 1 1 { 2 2 "name": "wdevs-filter-order-history", 3 "version": "1.0. 0",3 "version": "1.0.1", 4 4 "description": "Let customers filter and search their order history with advanced options and customizable columns.", 5 5 "author": "Wijnberg Developments <contact@wijnberg.dev>", … … 7 7 "scripts": { 8 8 "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", 10 10 "deploy": "npm run format && npm run plugin-zip" 11 11 }, … … 20 20 ], 21 21 "devDependencies": { 22 "@wordpress/scripts": "^3 0.20.0"22 "@wordpress/scripts": "^31.1.0" 23 23 } 24 24 } -
filter-order-history-for-woocommerce/trunk/wdevs-filter-order-history.php
r3348520 r3411829 17 17 * Plugin URI: https://products.wijnberg.dev 18 18 * Description: Let customers filter and search their order history with advanced options and customizable columns. 19 * Version: 1.0. 019 * Version: 1.0.1 20 20 * Author: Wijnberg Developments 21 21 * Author URI: https://products.wijnberg.dev/ … … 25 25 * Domain Path: /languages 26 26 * Requires at least: 6.0 27 * Tested up to: 6. 827 * Tested up to: 6.9 28 28 * Requires PHP: 7.4 29 29 * WC requires at least: 7.0.0 30 * WC tested up to: 10. 0.230 * WC tested up to: 10.3.6 31 31 * Requires Plugins: woocommerce 32 32 */ … … 42 42 * Rename this for your plugin and update it as you release new versions. 43 43 */ 44 define( 'WDEVS_FILTER_ORDER_HISTORY_VERSION', '1.0. 0' );44 define( 'WDEVS_FILTER_ORDER_HISTORY_VERSION', '1.0.1' ); 45 45 46 46 /**
Note: See TracChangeset
for help on using the changeset viewer.