Plugin Directory

Changeset 2417943


Ignore:
Timestamp:
11/13/2020 01:09:38 PM (5 years ago)
Author:
checkrobin
Message:

Release ## [0.0.9] - 2020-11-13

### Added

  • Enhancement: If an order contains a maximum of 1 product, the dimensions of this product are now used as the basis for the dimensions of the outer box

### Changed

  • Changed: The menu item "Settings" has been renamed to "Checkrobin Settings"
  • Changed: Updated /doc
Location:
checkrobin/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • checkrobin/trunk/changelog.txt

    r2410353 r2417943  
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    55and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     6
     7## [0.0.9] - 2020-11-13
     8### Added
     9- Enhancement: If an order contains a maximum of 1 product, the dimensions of this product are now used as the basis for the dimensions of the outer box
     10### Changed
     11- Changed: The menu item "Settings" has been renamed to "Checkrobin Settings"
     12- Changed: Updated /doc
    613
    714## [0.0.8] - 2020-10-31
  • checkrobin/trunk/languages/checkrobin-de_DE.po

    r2410353 r2417943  
    33"Project-Id-Version: Checkrobin\n"
    44"POT-Creation-Date: 2020-10-31 15:21+0100\n"
    5 "PO-Revision-Date: 2020-10-31 15:26+0100\n"
     5"PO-Revision-Date: 2020-11-13 12:09+0100\n"
    66"Last-Translator: \n"
    77"Language-Team: Checkrobin GmbH <support@checkrobin.com>\n"
     
    2222#: src/Admin.php:142 src/Admin.php:155 src/Settings.php:62
    2323msgid "Checkrobin Settings"
    24 msgstr "Einstellungen"
     24msgstr "Checkrobin Einstellungen"
    2525
    2626#: src/Admin.php:156
  • checkrobin/trunk/readme.txt

    r2410353 r2417943  
    9393== Changelog ==
    9494
     95= 0.0.9 =
     96### Added
     97* [Enhancement] If an order contains a maximum of 1 product, the dimensions of this product are now used as the basis for the dimensions of the outer box
     98* [Changed] The menu item "Settings" has been renamed to "Checkrobin Settings"
     99* [Changed] Updated /doc
     100
    95101= 0.0.8 =
    96102* [Enhancement] Translate Plugin Title and Description, optimize i18n
  • checkrobin/trunk/src/CheckrobinCreate.php

    r2410353 r2417943  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.8
     6 * @version 0.0.9
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
     
    258258        $orderData['package']['height'] = 0;       
    259259
     260        if ($productCount == 1) {
     261            $orderData['package']['length'] = $orderData['products'][0]['length'];     
     262            $orderData['package']['width']  = $orderData['products'][0]['width'];       
     263            $orderData['package']['height'] = $orderData['products'][0]['height'];     
     264        }
     265
    260266        foreach ($orderData['products'] as $singleProduct) {
    261267            $orderData['package']['weight'] += $singleProduct['weight'];
Note: See TracChangeset for help on using the changeset viewer.