Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
Release 1.0.38
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hunziker committed Apr 29, 2020
1 parent 7ad19e5 commit 6508995
Show file tree
Hide file tree
Showing 80 changed files with 17,964 additions and 861 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ This repository contains the OpenCart wallee payment module that enables the sh

## Documentation

* [English](https://plugin-documentation.wallee.com/wallee-payment/opencart-2.1/1.0.37/docs/en/documentation.html)
* [English](https://plugin-documentation.wallee.com/wallee-payment/opencart-2.1/1.0.38/docs/en/documentation.html)

## Support

Support queries can be issued on the [wallee support site](https://app-wallee.com/space/select?target=/support).

## License

Please see the [license file](https://github.com/wallee-payment/opencart-2.1/blob/1.0.37/LICENSE) for more information.
Please see the [license file](https://github.com/wallee-payment/opencart-2.1/blob/1.0.38/LICENSE) for more information.
4 changes: 2 additions & 2 deletions docs/en/documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h2>Documentation</h2> </div>
</a>
</li>
<li>
<a href="https://github.com/wallee-payment/opencart-2.1/releases/tag/1.0.37/">
<a href="https://github.com/wallee-payment/opencart-2.1/releases/tag/1.0.38/">
Source
</a>
</li>
Expand All @@ -48,7 +48,7 @@ <h1>
<div class="olist arabic">
<ol class="arabic">
<li>
<p><a href="https://github.com/wallee-payment/opencart-2.1/releases/tag/1.0.37/">Download</a> the extension.</p>
<p><a href="https://github.com/wallee-payment/opencart-2.1/releases/tag/1.0.38/">Download</a> the extension.</p>
</li>
<li>
<p>Extract the files and upload the content of the <code>Upload</code> directory into the root directory of your store using FTP/SSH.</p>
Expand Down
2 changes: 1 addition & 1 deletion upload/system/library/wallee/wallee-sdk/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2019 customweb GmbH
Copyright 2020 customweb GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion upload/system/library/wallee/wallee-sdk/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wallee/sdk",
"version": "2.0.9",
"version": "2.0.17",
"description": "wallee SDK for PHP",
"keywords": [
"wallee",
Expand Down
4 changes: 2 additions & 2 deletions upload/system/library/wallee/wallee-sdk/lib/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ final class ApiClient {
*
* @var string
*/
private $userAgent = 'PHP-Client/2.0.9/php';
private $userAgent = 'PHP-Client/2.0.17/php';

/**
* The path to the certificate authority file.
Expand Down Expand Up @@ -456,7 +456,7 @@ public function callApi($resourcePath, $method, $queryParams, $postData, $header
}
} else {
if ($response->getStatusCode() == 409) {
throw new VersioningException();
throw new VersioningException($resourcePath);
}

$data = json_decode($response->getBody());
Expand Down
6 changes: 3 additions & 3 deletions upload/system/library/wallee/wallee-sdk/lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'Wallee\Sdk/2.0.9/php';
protected $userAgent = 'Wallee\Sdk/2.0.17/php';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -388,8 +388,8 @@ public static function toDebugReport()
$report = 'PHP SDK (Wallee\Sdk) Debug Report:' . PHP_EOL;
$report .= ' OS: ' . php_uname() . PHP_EOL;
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
$report .= ' OpenAPI Spec Version: 2.0.9' . PHP_EOL;
$report .= ' SDK Package Version: 2.0.9' . PHP_EOL;
$report .= ' OpenAPI Spec Version: 2.0.17' . PHP_EOL;
$report .= ' SDK Package Version: 2.0.17' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down
Loading

0 comments on commit 6508995

Please sign in to comment.