Plugin Directory

Changeset 1781523


Ignore:
Timestamp:
12/05/2017 06:23:46 PM (8 years ago)
Author:
andsnleo
Message:

Version 1.0.13

Location:
iugu-woocommerce
Files:
47 added
4 edited

Legend:

Unmodified
Added
Removed
  • iugu-woocommerce/trunk/includes/class-wc-iugu-api.php

    r1778808 r1781523  
    285285
    286286        if ( ! empty( $data ) ) {
    287             $params['body'] = $data;
     287            $params['body'] = $data . '&client_name=' . WC_Iugu::CLIENT_NAME . '&client_version=' . WC_Iugu::CLIENT_VERSION;
    288288        }
    289289
  • iugu-woocommerce/trunk/includes/class-wc-iugu-credit-card-gateway.php

    r1778472 r1781523  
    245245
    246246            wp_enqueue_script( 'iugu-js', $this->api->get_js_url(), array(), null, true );
    247             wp_enqueue_script( 'iugu-woocommerce-credit-card-js', plugins_url( 'assets/js/credit-card' . $suffix . '.js', plugin_dir_path( __FILE__ ) ), array( 'jquery', 'wc-credit-card-form' ), WC_Iugu::VERSION, true );
     247            wp_enqueue_script( 'iugu-woocommerce-credit-card-js', plugins_url( 'assets/js/credit-card' . $suffix . '.js', plugin_dir_path( __FILE__ ) ), array( 'jquery', 'wc-credit-card-form' ), WC_Iugu::CLIENT_VERSION, true );
    248248
    249249            wp_localize_script(
     
    415415            $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
    416416
    417             wp_enqueue_script( 'iugu-credit-card-admin', plugins_url( 'assets/js/admin-credit-card' . $suffix . '.js', plugin_dir_path( __FILE__ ) ), array( 'jquery' ), WC_Iugu::VERSION, true );
     417            wp_enqueue_script( 'iugu-credit-card-admin', plugins_url( 'assets/js/admin-credit-card' . $suffix . '.js', plugin_dir_path( __FILE__ ) ), array( 'jquery' ), WC_Iugu::CLIENT_VERSION, true );
    418418        }
    419419    }
  • iugu-woocommerce/trunk/iugu-woocommerce.php

    r1778881 r1781523  
    66 * Author: iugu
    77 * Author URI: https://iugu.com/
    8  * Version: 1.0.12
     8 * Version: 1.0.13
    99 * License: GPLv2 or later
    1010 * Text Domain: iugu-woocommerce
     
    2828     * @var string
    2929     */
    30     const VERSION = '1.0.12';
     30    const CLIENT_NAME = 'plugin-iugu-woocommerce';
     31    const CLIENT_VERSION = '1.0.13';
    3132
    3233    /**
     
    9091     */
    9192    private function includes() {
     93        include_once 'includes/utils/chromephp.php';
    9294        include_once 'includes/class-wc-iugu-api.php';
    9395        include_once 'includes/class-wc-iugu-bank-slip-gateway.php';
  • iugu-woocommerce/trunk/readme.txt

    r1778881 r1781523  
    44Requires at least: 3.9
    55Tested up to: 4.9
    6 Stable tag: 1.0.12
     6Stable tag: 1.0.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8989== Changelog ==
    9090
     91= 1.0.13 - 2017/12/4 =
     92* **Adição**: As chamadas de API da iugu agora recebem a versão do plugin utilizada para facilitar o debugging e o suporte.
     93
    9194= 1.0.12 - 2017/11/30 =
    9295* **Correção**: Incluída dependência do plugin que estava em falta na versão 1.0.11. Obrigado, @diasnt!
     
    143146== Upgrade Notice ==
    144147
    145 = 1.0.12 =
    146 Incluímos uma dependência do plugin que estava em falta na versão 1.0.11. Obrigado, @diasnt!
    147 
    148 = 1.0.11  =
    149 Atualizamos o plugin para enviar a informação de **Bairro** do cliente, dado essencial para a criação de boletos registrados.
     148= 1.0.13 =
     149Coisa rápida: incluímos a versão do iugu WooCommerce nas chamadas da nossa API para ajudar o desenvolvimento e o suporte do plugin.
    150150
    151151
Note: See TracChangeset for help on using the changeset viewer.