Changeset 3355675
- Timestamp:
- 09/03/2025 09:43:08 PM (6 months ago)
- Location:
- autoship-cloud/trunk
- Files:
-
- 5 edited
-
app/Core/Installer.php (modified) (1 diff)
-
autoship.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/QPilot/Client.php (modified) (1 diff)
-
src/scheduled-orders.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autoship-cloud/trunk/app/Core/Installer.php
r3352156 r3355675 162 162 $environment->get_api_url() . '/Quicklaunch/Install', 163 163 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 ), 165 170 ) 166 171 ); -
autoship-cloud/trunk/autoship.php
r3352156 r3355675 8 8 * Plugin URI: https://autoship.cloud 9 9 * Description: Autoship Cloud for WooCommerce 10 * Version: 2.10. 010 * Version: 2.10.1 11 11 * Author: Patterns In the Cloud LLC 12 12 * Author URI: https://qpilot.cloud … … 17 17 */ 18 18 19 define( 'Autoship_Version', '2.10. 0' ); // phpcs:ignore Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase19 define( 'Autoship_Version', '2.10.1' ); // phpcs:ignore Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase 20 20 21 21 if ( ! defined( 'Autoship_Plugin_Dir' ) ) { -
autoship-cloud/trunk/readme.txt
r3352156 r3355675 10 10 WC tested up to: 10.0.4 11 11 Requires PHP: 7.4 12 Stable tag: 2.10. 012 Stable tag: 2.10.1 13 13 License: GPLv2 or later 14 14 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 291 291 292 292 == 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. 293 299 294 300 = 2.10.0 - 2025-08-28 = -
autoship-cloud/trunk/src/QPilot/Client.php
r3352156 r3355675 486 486 array( 487 487 'page' => 1, 488 'pageSize' => 100,488 'pageSize' => 25, 489 489 ), 490 490 $params -
autoship-cloud/trunk/src/scheduled-orders.php
r3352156 r3355675 224 224 $params['page'] = 1; 225 225 $params['pageSize'] = 1; 226 $params['orderBy'] = 'Id'; 226 227 $params['statusNames'] = array( 'Active', 'Processing', 'Pending', 'Paused', 'Failed' ); 227 228 … … 5043 5044 function autoship_search_all_scheduled_orders( $customer_id = null, $index = 1, $params = array(), $recursive = true ) { 5044 5045 5045 $params = wp_parse_args( $params, array( 'pageSize' => 100) );5046 $params = wp_parse_args( $params, array( 'pageSize' => 25 ) ); 5046 5047 $params['page'] = $index; 5047 5048
Note: See TracChangeset
for help on using the changeset viewer.