Plugin Directory

Changeset 2293316


Ignore:
Timestamp:
04/28/2020 09:26:30 AM (6 years ago)
Author:
postpay
Message:

v0.1.6

Location:
postpay
Files:
8 edited
2 copied

Legend:

Unmodified
Added
Removed
  • postpay/tags/0.1.6/languages/postpay-es_ES.po

    r2290456 r2293316  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Postpay 0.1.1\n"
     5"Project-Id-Version: Postpay 0.1.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n"
    77"Language-Team: Spanish (Spain)\n"
  • postpay/tags/0.1.6/languages/postpay.pot

    r2290456 r2293316  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce Postpay Payment Gateway 0.1.5\n"
     5"Project-Id-Version: WooCommerce Postpay Payment Gateway 0.1.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • postpay/tags/0.1.6/postpay.php

    r2290456 r2293316  
    22/**
    33 * Plugin Name: WooCommerce Postpay Payment Gateway
    4  * Version: 0.1.5
     4 * Version: 0.1.6
    55 * Plugin URI: https://github.com/postpayio/woocommerce
    66 * Description: Buy now and pay later with zero interest and zero fees.
     
    7777
    7878        add_action( 'wp_enqueue_scripts', array( $this, 'load_scripts' ) );
    79         add_action( 'woocommerce_single_product_summary', array( $this, 'product_widget' ) );
    80         add_filter( 'woocommerce_after_cart_totals', array( $this, 'cart_widget' ) );
     79        add_action( 'woocommerce_single_product_summary', array( $this, 'product_widget' ), 20 );
     80        add_action( 'woocommerce_after_cart_totals', array( $this, 'cart_widget' ), 20 );
    8181    }
    8282
  • postpay/tags/0.1.6/readme.txt

    r2290459 r2293316  
    44Tested up to: 5.4
    55Requires PHP: 5.6
    6 Stable tag: 0.1.5
    7 Version: 0.1.5
     6Stable tag: 0.1.6
     7Version: 0.1.6
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7373== Changelog ==
    7474
     75= 0.1.6 - 2020-04-28 =
     76* Added priority parameter to widget hooks
     77
    7578= 0.1.5 - 2020-04-24 =
    7679* Added gateway icon
  • postpay/trunk/languages/postpay-es_ES.po

    r2290456 r2293316  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Postpay 0.1.1\n"
     5"Project-Id-Version: Postpay 0.1.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n"
    77"Language-Team: Spanish (Spain)\n"
  • postpay/trunk/languages/postpay.pot

    r2290456 r2293316  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce Postpay Payment Gateway 0.1.5\n"
     5"Project-Id-Version: WooCommerce Postpay Payment Gateway 0.1.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • postpay/trunk/postpay.php

    r2290456 r2293316  
    22/**
    33 * Plugin Name: WooCommerce Postpay Payment Gateway
    4  * Version: 0.1.5
     4 * Version: 0.1.6
    55 * Plugin URI: https://github.com/postpayio/woocommerce
    66 * Description: Buy now and pay later with zero interest and zero fees.
     
    7777
    7878        add_action( 'wp_enqueue_scripts', array( $this, 'load_scripts' ) );
    79         add_action( 'woocommerce_single_product_summary', array( $this, 'product_widget' ) );
    80         add_filter( 'woocommerce_after_cart_totals', array( $this, 'cart_widget' ) );
     79        add_action( 'woocommerce_single_product_summary', array( $this, 'product_widget' ), 20 );
     80        add_action( 'woocommerce_after_cart_totals', array( $this, 'cart_widget' ), 20 );
    8181    }
    8282
  • postpay/trunk/readme.txt

    r2290459 r2293316  
    44Tested up to: 5.4
    55Requires PHP: 5.6
    6 Stable tag: 0.1.5
    7 Version: 0.1.5
     6Stable tag: 0.1.6
     7Version: 0.1.6
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7373== Changelog ==
    7474
     75= 0.1.6 - 2020-04-28 =
     76* Added priority parameter to widget hooks
     77
    7578= 0.1.5 - 2020-04-24 =
    7679* Added gateway icon
Note: See TracChangeset for help on using the changeset viewer.