Plugin Directory

Changeset 3263411


Ignore:
Timestamp:
03/28/2025 10:09:27 AM (12 months ago)
Author:
wonder32
Message:

Updated plugin to version 0.2.3, tested up to WP 6.7.2 WC 9.7.1

Location:
puddinq-order-list/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • puddinq-order-list/trunk/classes/Helpers/Constants.php

    r3263120 r3263411  
    1414
    1515    const PLUGIN_NAME = 'puddinq-order-list';
    16     const VERSION = '0.2.2';
     16    const VERSION = '0.2.3';
    1717
    1818    // Plugin Path for includes
  • puddinq-order-list/trunk/classes/Plugin.php

    r3263120 r3263411  
    3737
    3838        if (is_admin()) {
    39             require_once __DIR__ . '/Helpers/Constants.php';
    40             require_once __DIR__ . '/Admin.php';
    41             require_once __DIR__ . '/Filter.php';
    42 
    4339            (new Admin());
    4440
  • puddinq-order-list/trunk/puddinq-order-list.php

    r3263120 r3263411  
    44Plugin URI:  https://wordpress.org/plugins/puddinq-order-list/
    55Description: Enhances the WooCommerce orders screen with practical information.
    6 Version:     0.2.2
     6Version:     0.2.3
    77Author:      Stefan Schotvanger
    88Author URI:  http://www.puddinq.nl/wip/stefan-schotvanger/
     
    2121defined('ABSPATH') or die('Cheating uh?');
    2222
    23 require __DIR__ . '/classes/Plugin.php';
     23require_once __DIR__ . '/classes/Helpers/Constants.php';
     24require_once __DIR__ . '/classes/Admin.php';
     25require_once __DIR__ . '/classes/Filter.php';
     26require_once __DIR__ . '/classes/Plugin.php';
    2427
    2528$OrderList = new \PuddinqOrderList\Plugin();
  • puddinq-order-list/trunk/readme.txt

    r3263120 r3263411  
    55Requires at least: 6.7.2
    66Tested up to: 6.7.2
    7 Stable tag: 0.2.2
     7Stable tag: 0.2.3
    88Requires PHP: 8.0
    99WC requires at least: 9.7.1
     
    1313
    1414The goal of the plugin is to manage your shop without opening the orders. Showing products, variation properties and shipping methods in the order screen.
     15
    1516
    1617== Description ==
     
    5657== Changelog ==
    5758
    58  0.2.2 =
     59= 0.2.3 =
     60
     61* fix fatal error
     62
     63= 0.2.2 =
    5964
    6065* Big update for WooCommerce compatibility.
    6166* Same functionality.
    6267
    63  0.2.1 =
     68= 0.2.1 =
    6469
    6570* Check WordPress 6.4.2, WooCommerce 8.4.0
    6671
    67  0.1.9 =
     72= 0.1.9 =
    6873
    6974* Made sku visible when hovering product title
Note: See TracChangeset for help on using the changeset viewer.