Plugin Directory

Changeset 1003623


Ignore:
Timestamp:
10/08/2014 07:20:11 AM (11 years ago)
Author:
datenwerk
Message:

1.4.1 - 2014-10-08

  • Enhancement: TID contains now order->id, order->billing_last_name and order->billing_first_name with totally maximum 32 characters (limitation of mPAY24)
  • Enhancement: update help text about log directory
  • add new plugin banner and icon (WP 4.0 Plugin Installer)
Location:
woocommerce-mpay24-gateway
Files:
3 added
6 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-mpay24-gateway/trunk/class-wc-mpay24-shop.php

    r960002 r1003623  
    654654
    655655    /**
    656      * Write a mpay24 log into /plugins/woocommerce/logs/
     656     * Write a mpay24 log into /wp-content/plugins/woocommerce/logs/, since WC 2.2 /wc-logs
    657657     * @param string $operation   The operation, which is to log: GetPaymentMethods, Pay, PayWithProfile, Confirmation, UpdateTransactionStatus, ClearAmount, CreditAmount, CancelTransaction, etc.
    658658     * @param string $info_to_log The information, which is to log: request, response, etc.
  • woocommerce-mpay24-gateway/trunk/gateway-mpay24.php

    r960002 r1003623  
    44    Plugin URI: http://wordpress.org/plugins/woocommerce-mpay24-gateway/
    55    Description: Add mPAY24 Payment Gateway to WooCommerce Plugin
    6     Version: 1.4
     6    Version: 1.4.1
    77    Author: datenwerk innovationsagentur GmbH
    88    Author URI: http://www.datenwerk.at
    99    Requires at least: 3.5
    10     Tested up to: 3.9.1
     10    Tested up to: 4.0
    1111*/
    1212
     
    2222
    2323    if ( ! defined( 'GATEWAY_MPAY24_VERSION' ) ) {
    24         define( 'GATEWAY_MPAY24_VERSION', '1.4' );
     24        define( 'GATEWAY_MPAY24_VERSION', '1.4.1' );
    2525    }
    2626    if ( ! defined( 'GATEWAY_MPAY24_TABLE_NAME' ) ) {
     
    301301                        'label'       => __( 'Enable logging', 'wc-mpay24' ),
    302302                        'type'        => 'checkbox',
    303                         'description' => __( 'Log mPAY24 events inside <code>/plugins/woocommerce/logs/</code>', 'wc-mpay24' ),
     303                        'description' => __( 'Log mPAY24 events inside <code>/wp-content/plugins/woocommerce/logs/</code>, since WC 2.2 to WC_LOG_DIR (default: <code>/wc-logs/</code>)', 'wc-mpay24' ),
    304304                        'default'     => 'no'
    305305                       
     
    492492                    $shop->setLog( $this->log );
    493493                }
    494 
    495                 $shop->setTid( $order_id );
     494                $tid = $order_id . '-' . sanitize_title( $order->billing_last_name ) . '-' . sanitize_title( $order->billing_first_name );
     495                $shop->setTid( substr( $tid, 0, 32 ) );
    496496                $shop->setPrice( $order->order_total );
    497497                $shop->setLanguage( $this->payment_page_lang );
  • woocommerce-mpay24-gateway/trunk/languages/wc-mpay24-de_DE.po

    r960002 r1003623  
    33"Project-Id-Version: WooCommerce mPAY24 Gateway v1.4\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-08-04 16:15+0100\n"
    6 "PO-Revision-Date: 2014-08-04 16:15+0100\n"
     5"POT-Creation-Date: 2014-10-08 09:15+0100\n"
     6"PO-Revision-Date: 2014-10-08 09:16+0100\n"
    77"Last-Translator: Melanie Reichel <[email protected]>\n"
    88"Language-Team: datenwerk innovationsagentur GmbH <wordpressdev@datenwerk."
     
    1818"X-Poedit-Basepath: .\n"
    1919"X-Textdomain-Support: yes\n"
    20 "X-Generator: Poedit 1.6.7\n"
     20"X-Generator: Poedit 1.6.9\n"
    2121"X-Poedit-SearchPath-0: .\n"
    2222"X-Poedit-SearchPath-1: ..\n"
     
    2424# @ wc-mpay24
    2525#: ../gateway-mpay24.php:88 ../gateway-mpay24.php:92
    26 #, fuzzy
    2726msgid ""
    2827"<strong>mPAY24 gateway is installed</strong> &#8211; Configure the setting "
     
    202201# @ wc-mpay24
    203202#: ../gateway-mpay24.php:303
    204 msgid "Log mPAY24 events inside <code>/plugins/woocommerce/logs/</code>"
    205 msgstr ""
    206 "Protokolliert mPAY24 Ereignisse nach <code>/plugins/woocommerce/logs/</code>"
     203msgid ""
     204"Log mPAY24 events inside <code>/wp-content/plugins/woocommerce/logs/</code>, "
     205"since WC 2.2 to WC_LOG_DIR (default: <code>/wc-logs/</code>)"
     206msgstr ""
     207"Protokolliert mPAY24 Ereignisse nach <code>/wp-content/plugins/woocommerce/"
     208"logs/</code>, seit WC 2.2 nach WC_LOG_DIR (Standard:  <code>/wc-logs/</code>)"
    207209
    208210# @ wc-mpay24
  • woocommerce-mpay24-gateway/trunk/readme.txt

    r960005 r1003623  
    66Requires at least: 3.5
    77Tested up to: 3.9.1
    8 Stable tag: 1.4
     8Stable tag: 1.4.1
    99License: GNU General Public License v3.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7777== Changelog ==
    7878
     79= 1.4.1 - 2014-10-08 =
     80
     81* Enhancement: TID contains now order->id, order->billing_last_name and order->billing_first_name with totally maximum 32 characters (limitation of mPAY24)
     82* Enhancement: update help text about log directory
     83* add new plugin banner and icon (WP 4.0 Plugin Installer)
     84
    7985= 1.4 - 2014-08-04 =
    8086
Note: See TracChangeset for help on using the changeset viewer.