Plugin Directory

Changeset 2983666


Ignore:
Timestamp:
10/25/2023 11:00:26 AM (2 years ago)
Author:
adrianpo
Message:

tagging version 2.1.1

Location:
postapanduri
Files:
3 edited
21 copied

Legend:

Unmodified
Added
Removed
  • postapanduri/tags/2.1.1/README.txt

    r2983657 r2983666  
    55Requires at least: 5.0
    66Tested up to: 6.3
    7 Stable tag: 2.1.0
     7Stable tag: 2.1.1
    88Requires PHP: 5.5.0
    99License: GPLv3
     
    7777== Changelog ==
    7878
     79= 2.1.1 =
     80* Woocommerce HPOS support fix
     81
    7982= 2.1.0 =
    8083* Woocommerce HPOS support
  • postapanduri/tags/2.1.1/inc/admin/class-admin.php

    r2983657 r2983666  
    77use PostaPanduri\Inc\Core\WC_PostaPanduri as WC_PostaPanduri;
    88use PostaPanduri\Inc\Libraries\LO as LO;
     9use WP_Post;
    910
    1011/**
     
    358359    }
    359360
    360     public static function form_generare_awb($order)
     361    public static function form_generare_awb($post_or_order_object)
    361362    {
    362363        global $wpdb;
     364
     365        $order = ( $post_or_order_object instanceof WP_Post ) ? wc_get_order( $post_or_order_object->ID ) : $post_or_order_object;
    363366
    364367        $lo = new LO();
  • postapanduri/tags/2.1.1/postapanduri.php

    r2983657 r2983666  
    1717 * Plugin URI:        https://postapanduri.ro/
    1818 * Description:       Courier Services and Smartlocker pickpup. Clients who buy online and can opt to pick up the ordered packages from the nearest preset pickup point or to have the parcel delivered to their door.
    19  * Version:           2.1.0
     19 * Version:           2.1.1
    2020 * Author:            C Solution SRL
    2121 * Author URI:        https://www.c-solution.biz/
     
    4343define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\');
    4444define(NS . 'PLUGIN_NAME', 'postapanduri');
    45 define(NS . 'PLUGIN_VERSION', '2.1.0');
     45define(NS . 'PLUGIN_VERSION', '2.1.1');
    4646define(NS . 'PLUGIN_NAME_DIR', plugin_dir_path(__FILE__));
    4747define(NS . 'PLUGIN_NAME_URL', plugin_dir_url(__FILE__));
  • postapanduri/trunk/README.txt

    r2983657 r2983666  
    55Requires at least: 5.0
    66Tested up to: 6.3
    7 Stable tag: 2.1.0
     7Stable tag: 2.1.1
    88Requires PHP: 5.5.0
    99License: GPLv3
     
    7777== Changelog ==
    7878
     79= 2.1.1 =
     80* Woocommerce HPOS support fix
     81
    7982= 2.1.0 =
    8083* Woocommerce HPOS support
  • postapanduri/trunk/inc/admin/class-admin.php

    r2983657 r2983666  
    77use PostaPanduri\Inc\Core\WC_PostaPanduri as WC_PostaPanduri;
    88use PostaPanduri\Inc\Libraries\LO as LO;
     9use WP_Post;
    910
    1011/**
     
    358359    }
    359360
    360     public static function form_generare_awb($order)
     361    public static function form_generare_awb($post_or_order_object)
    361362    {
    362363        global $wpdb;
     364
     365        $order = ( $post_or_order_object instanceof WP_Post ) ? wc_get_order( $post_or_order_object->ID ) : $post_or_order_object;
    363366
    364367        $lo = new LO();
  • postapanduri/trunk/postapanduri.php

    r2983657 r2983666  
    1717 * Plugin URI:        https://postapanduri.ro/
    1818 * Description:       Courier Services and Smartlocker pickpup. Clients who buy online and can opt to pick up the ordered packages from the nearest preset pickup point or to have the parcel delivered to their door.
    19  * Version:           2.1.0
     19 * Version:           2.1.1
    2020 * Author:            C Solution SRL
    2121 * Author URI:        https://www.c-solution.biz/
     
    4343define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\');
    4444define(NS . 'PLUGIN_NAME', 'postapanduri');
    45 define(NS . 'PLUGIN_VERSION', '2.1.0');
     45define(NS . 'PLUGIN_VERSION', '2.1.1');
    4646define(NS . 'PLUGIN_NAME_DIR', plugin_dir_path(__FILE__));
    4747define(NS . 'PLUGIN_NAME_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.