Plugin Directory

Changeset 3355675


Ignore:
Timestamp:
09/03/2025 09:43:08 PM (6 months ago)
Author:
patternsinthecloud
Message:

version 2.10.1

Location:
autoship-cloud/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • autoship-cloud/trunk/app/Core/Installer.php

    r3352156 r3355675  
    162162            $environment->get_api_url() . '/Quicklaunch/Install',
    163163            array(
    164                 'body' => $registration_data,
     164                'headers' => array(
     165                    'Content-Type'      => 'application/json',
     166                    'Accept'            => 'application/json',
     167                    'X-Autoship-Client' => "AC-WC-{$environment->get_autoship_version()}",
     168                ),
     169                'body'    => wp_json_encode( $registration_data ),
    165170            )
    166171        );
  • autoship-cloud/trunk/autoship.php

    r3352156 r3355675  
    88 * Plugin URI: https://autoship.cloud
    99 * Description: Autoship Cloud for WooCommerce
    10  * Version: 2.10.0
     10 * Version: 2.10.1
    1111 * Author: Patterns In the Cloud LLC
    1212 * Author URI: https://qpilot.cloud
     
    1717 */
    1818
    19 define( 'Autoship_Version', '2.10.0' ); // phpcs:ignore Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase
     19define( 'Autoship_Version', '2.10.1' ); // phpcs:ignore Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase
    2020
    2121if ( ! defined( 'Autoship_Plugin_Dir' ) ) {
  • autoship-cloud/trunk/readme.txt

    r3352156 r3355675  
    1010WC tested up to: 10.0.4
    1111Requires PHP: 7.4
    12 Stable tag: 2.10.0
     12Stable tag: 2.10.1
    1313License: GPLv2 or later
    1414License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    291291
    292292== Changelog ==
     293
     294= 2.10.1 - 2025-09-03 =
     295
     296  - Fixed: Resolved an issue in the quick launch registration page that prevented new merchants to start the installation.
     297
     298  - Improved: Schedule Orders page enhanced for faster loading times.
    293299
    294300= 2.10.0 - 2025-08-28 =
  • autoship-cloud/trunk/src/QPilot/Client.php

    r3352156 r3355675  
    486486            array(
    487487                'page'     => 1,
    488                 'pageSize' => 100,
     488                'pageSize' => 25,
    489489            ),
    490490            $params
  • autoship-cloud/trunk/src/scheduled-orders.php

    r3352156 r3355675  
    224224    $params['page']        = 1;
    225225    $params['pageSize']    = 1;
     226    $params['orderBy']     = 'Id';
    226227    $params['statusNames'] = array( 'Active', 'Processing', 'Pending', 'Paused', 'Failed' );
    227228
     
    50435044function autoship_search_all_scheduled_orders( $customer_id = null, $index = 1, $params = array(), $recursive = true ) {
    50445045
    5045     $params         = wp_parse_args( $params, array( 'pageSize' => 100 ) );
     5046    $params         = wp_parse_args( $params, array( 'pageSize' => 25 ) );
    50465047    $params['page'] = $index;
    50475048
Note: See TracChangeset for help on using the changeset viewer.