Changeset 2773641
- Timestamp:
- 08/22/2022 06:36:43 PM (4 years ago)
- Location:
- shiptimize-for-woocommerce/trunk
- Files:
-
- 4 edited
-
constants.php (modified) (1 diff)
-
includes/class-woo-shiptimize-order.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
shiptimize.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shiptimize-for-woocommerce/trunk/constants.php
r2772699 r2773641 4 4 define( 'SHIPTIMIZE_API_URL', 'https://api.pakketmail.nl/v3' ); 5 5 define( 'SHIPTIMIZE_BRAND', 'Shiptimize' ); 6 define( 'SHIPTIMIZE_VERSION', '3.1.5 0' );6 define( 'SHIPTIMIZE_VERSION', '3.1.51' ); 7 7 define( 'SHIPTIMIZE_CREATE_ACCOUNT', 'https://www.shiptimize.me/quote/' ); 8 8 define( 'SHIPTIMIZE_CHECKOUT', 0); -
shiptimize-for-woocommerce/trunk/includes/class-woo-shiptimize-order.php
r2772699 r2773641 193 193 'Type' => 4, // 1 - Gift, 2 - Documents, 3 - Sample , 4 - Other 194 194 'Value' => $item->get_subtotal(), 195 'Weight' => $item_weight195 'Weight' => floor($item_weight) 196 196 ); 197 197 … … 202 202 203 203 if( $weight > 0 ) { 204 $this->Weight = $weight; // The api receives grams204 $this->Weight = floor($weight); // The api receives grams 205 205 } 206 206 -
shiptimize-for-woocommerce/trunk/readme.txt
r2772699 r2773641 58 58 59 59 == Changelog == 60 = 3.1.51 - 2022-08-19 = 61 * enhancement - Always round weights down, some shops will define weights with decimals even in grams. The smaller unit of weight which the API accepts is grams. 62 63 = 3.1.50 - 2022-08-19 = 64 * enhancement - Store tracking id that comes with the label response, that way if the shop update from app fails because of a broken route, it's already there. 60 65 61 66 = 3.1.49 - 2022-07-16 = -
shiptimize-for-woocommerce/trunk/shiptimize.php
r2772699 r2773641 3 3 * Plugin Name: Shiptimize for WooCommerce 4 4 * Description: Shiptimize for WooCommerce 5 * Version: 3.1.5 05 * Version: 3.1.51 6 6 * Author: Shiptimize 7 7 * Author URI: https://shiptimize.me
Note: See TracChangeset
for help on using the changeset viewer.