Skip to content

Commit

Permalink
Merge pull request #28 from wuunder/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
timoj authored Jan 5, 2021
2 parents 1f1b2da + f36238b commit b85a405
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@ Please file changes under `Added`, `Changed`, `Deprecated`, `Removed`, `Fixed` o
The format is based on [Keep a Changelog](http://keepachangelog.com/).
## Unreleased

## [1.3.10](https://github.com/kabisa/wuunder-webshopplugin-shopware/releases/tag/1.3.10)

### Fixed
- Fixed dependency issue for requests and security

## [1.3.9](https://github.com/kabisa/wuunder-webshopplugin-shopware/releases/tag/1.3.9)

### Fixed
- Fixed to select correct backend environment when fetching parcelshop info after selection


## [1.3.8](https://github.com/kabisa/wuunder-webshopplugin-shopware/releases/tag/1.3.8)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Wuunder/Controllers/Backend/WuunderShipment.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class Shopware_Controllers_Backend_WuunderShipment extends Enlight_Controller_Action implements CSRFWhitelistAware
{

private static $WUUNDER_PLUGIN_VERSION = array("product" => "Shopware extension", "version" => array("build" => "1.3.8", "plugin" => "1.0"));
private static $WUUNDER_PLUGIN_VERSION = array("product" => "Shopware extension", "version" => array("build" => "1.3.10", "plugin" => "1.0"));

public function getWhitelistedCSRFActions()
{
Expand Down Expand Up @@ -43,7 +43,7 @@ public function redirectAction()

$headers = [
'Authorization' => 'Bearer ' . $api_key,
'Content-Type' => 'application/json',
// 'Content-Type' => 'application/json', // Outcommented because Httpful request Lib adds the content-type on it's own without overwriting previous set headers
];

$order_id = $this->Request()->getPost('order_id');
Expand Down
6 changes: 4 additions & 2 deletions Wuunder/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"license": "proprietary",
"link": "http:\/\/www.wearewuunder.com",
"author": "Wuunder",
"currentVersion": "1.3.9",
"currentVersion": "1.3.10",
"changelog": {
"nl": {
"1.3.9": "Fixed to select correct backend environment when fetching parcelshop info after selection",
"currentVersion": "1.3.8",
"changelog": {
"nl": {
"1.3.10": "Fixed dependency issue for requests and security",
"1.3.8": "Added support for updating shipped status on ordered articles",
"1.3.7": "Fixed parcelshop id bug",
"1.3.6": "Fixed check for selected parcelshop",
Expand All @@ -39,6 +39,7 @@
"1.0.0": "Wuunder module"
},
"en": {
"1.3.10": "Fixed dependency issue for requests and security",
"1.3.9": "Fixed to select correct backend environment when fetching parcelshop info after selection",
"1.3.8": "Added support for updating shipped status on ordered articles",
"1.3.7": "Fixed parcelshop id bug",
Expand All @@ -64,6 +65,7 @@
"1.0.0": "Wuunder module"
},
"de": {
"1.3.10": "Fixed dependency issue for requests and security",
"1.3.9": "Fixed to select correct backend environment when fetching parcelshop info after selection",
"1.3.8": "Added support for updating shipped status on ordered articles",
"1.3.7": "Fixed parcelshop id bug",
Expand Down
17 changes: 13 additions & 4 deletions Wuunder/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/shopware/5.4/engine/Shopware/Components/Plugin/schema/plugin.xsd">
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/shopware/5.6/engine/Shopware/Components/Plugin/schema/plugin.xsd">

<label lang="de">Wuunder versand module</label>
<label lang="en">Wuunder shipping module</label>
<label lang="nl">Wuunder verzendmodule</label>

<version>1.3.9</version>
<version>1.3.10</version>
<copyright>(c) by Wuunder</copyright>
<license>proprietary</license>
<link>http://www.wearewuunder.com</link>
<author>Wuunder</author>
<compatibility minVersion="5.3.0"/>

<changelog version="1.3.10">
<changes lang="de">Fixed dependency issue for requests and security</changes>
<changes lang="en">Fixed dependency issue for requests and security</changes>
</changelog>

<changelog version="1.3.9">
<changes lang="de">Fixed to select correct backend environment when fetching parcelshop info after selection</changes>
<changes lang="en">Fixed to select correct backend environment when fetching parcelshop info after selection</changes>
</changelog>

<changelog version="1.3.8">
<changes lang="de">Added support for updating shipped status on ordered articles</changes>
<changes lang="en">Added support for updating shipped status on ordered articles</changes>
Expand Down Expand Up @@ -127,4 +132,8 @@
<changes lang="de">Added plugin.json</changes>
<changes lang="en">Added plugin.json</changes>
</changelog>
</plugin>

<description lang="de">Wuunder offers a free shipping module for sending &amp; receiving your parcel, pallet and document the most easy way. </description>
<description lang="en">Wuunder offers a free shipping module for sending &amp; receiving your parcel, pallet and document the most easy way. </description>
<description lang="nl">Wuunder maakt het versturen en ontvangen van je pakket, pallet en document gemakkelijker, voordeliger en persoonlijker.</description>
</plugin>

0 comments on commit b85a405

Please sign in to comment.