Plugin Directory

Changeset 2097544


Ignore:
Timestamp:
05/29/2019 10:18:34 PM (7 years ago)
Author:
girosolution
Message:
  1. 4.0.4, added Bluecode support
Location:
girocheckout/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • girocheckout/trunk/girocheckout.php

    r2082698 r2097544  
    1010 * Plugin Name: GiroCheckout
    1111 * Description: Plugin to integrate the GiroCheckout payment methods into WooCommerce.
    12  * Version:     4.0.3
     12 * Version:     4.0.4
    1313 * Author:      GiroSolution GmbH
    1414 * Author URI:  http://www.girosolution.de
     
    5353        $methods[] = 'gc_sofortuw';
    5454        $methods[] = 'gc_maestro';
    55         //$methods[] = 'gc_bluecode';
     55        $methods[] = 'gc_bluecode';
    5656
    5757        return $methods;
  • girocheckout/trunk/library/GiroCheckout_SDK.php

    r2082698 r2097544  
    77 *
    88 * @package GiroCheckout
    9  * @version $Revision: 254 $ / $Date: 2019-04-12 17:36:18 -0400 (Fri, 12 Apr 2019) $
     9 * @version $Revision: 260 $ / $Date: 2019-05-20 13:35:12 -0400 (Mon, 20 May 2019) $
    1010 */
    11 define('__GIROCHECKOUT_SDK_VERSION__', '2.1.24');
     11define('__GIROCHECKOUT_SDK_VERSION__', '2.1.25');
    1212
    1313if( version_compare( phpversion(), '5.3.0', '<' ) ) {
  • girocheckout/trunk/library/GiroCheckout_SDK_Request.php

    r2082698 r2097544  
    1010 *
    1111 * @package GiroCheckout
    12  * @version $Revision: 254 $ / $Date: 2019-04-12 17:36:18 -0400 (Fri, 12 Apr 2019) $
     12 * @version $Revision: 260 $ / $Date: 2019-05-20 13:35:12 -0400 (Mon, 20 May 2019) $
    1313 */
    1414class GiroCheckout_SDK_Request
     
    175175   */
    176176  public function submit() {
    177     $header = array();
    178     $body = '';
    179177    $Config = GiroCheckout_SDK_Config::getInstance();
    180178
     
    223221      $this->responseRaw = print_r($header, TRUE) . "\n$body";
    224222
     223      //error_log( "Response Raw: ". $this->responseRaw );
     224
    225225      $response = GiroCheckout_SDK_Curl_helper::getJSONResponseToArray($body);
    226226
     
    235235      }
    236236      else {
     237        error_log("Response: ". print_r($response,true) );
    237238        $this->response = $this->requestMethod->checkResponse($response);
    238239        if ($Config->getConfig('DEBUG_MODE')) {
  • girocheckout/trunk/library/GiroCheckout_Utility.php

    r2082698 r2097544  
    1919   */
    2020  public static function getVersion() {
    21     return '4.0.3';
     21    return '4.0.4';
    2222  }
    2323
  • girocheckout/trunk/library/api/bluecode/GiroCheckout_SDK_BlueCodeTransaction.php

    r2082698 r2097544  
    1919        'amount'          => TRUE,
    2020        'currency'        => TRUE,
    21         'branch'          => TRUE,
    22         'terminal'        => FALSE,
    23         'slipDateTime'    => TRUE,
    2421        'purpose'         => TRUE,  // Bluecode slip
    2522        'urlRedirect'     => TRUE,
  • girocheckout/trunk/library/helper/GiroCheckout_SDK_TransactionType_helper.php

    r1801157 r2097544  
    44 *
    55 * @package GiroCheckout
    6  * @version $Revision: 225 $ / $Date: 2017-09-04 16:11:20 -0300 (Mon, 04 Sep 2017) $
     6 * @version $Revision: 260 $ / $Date: 2019-05-20 13:35:12 -0400 (Mon, 20 May 2019) $
    77 */
    88class GiroCheckout_SDK_TransactionType_helper {
     
    103103      case 'blueCodeTransaction':
    104104        return new GiroCheckout_SDK_BlueCodeTransaction();
     105      case 'blueCodeRefund':
     106        return new GiroCheckout_SDK_BlueCodeRefund();
    105107
    106108      //Payment page apis
  • girocheckout/trunk/readme.txt

    r2082698 r2097544  
    66Requires PHP: 5.4
    77WC requires at least: 3.0.0
    8 WC tested up to: 3.6.2
     8WC tested up to: 3.6.4
    99Stable tag: trunk
    1010License: GPLv2 or later
     
    5555== Changelog ==
    5656
     57= 4.0.4 =
     58* Added support for Bluecode E-Commerce payment method
     59
    5760= 4.0.3 =
    5861* Fixed a problem with incorrect status options being offered for the new capture feature (ch1125).
     
    8992== Upgrade Notice ==
    9093
    91 = 4.0.3 =
    92 This release fixes a bug that caused problems on login/logoff. Updating is highly encouraged.
    93 
    9494= 4.0.2 =
    9595This release fixes a bug in the purpose field handling. Updating is recommended.
Note: See TracChangeset for help on using the changeset viewer.