Changeset 2267312
- Timestamp:
- 03/25/2020 12:46:23 PM (6 years ago)
- Location:
- postpay
- Files:
-
- 10 edited
- 9 copied
-
tags/0.1.1 (copied) (copied from postpay/trunk)
-
tags/0.1.1/LICENSE (copied) (copied from postpay/trunk/LICENSE)
-
tags/0.1.1/assets (copied) (copied from postpay/trunk/assets)
-
tags/0.1.1/includes (copied) (copied from postpay/trunk/includes)
-
tags/0.1.1/includes/http/class-wc-postpay-adapter.php (modified) (1 diff)
-
tags/0.1.1/includes/wc-postpay-scripts.php (modified) (1 diff)
-
tags/0.1.1/languages (copied) (copied from postpay/trunk/languages)
-
tags/0.1.1/languages/postpay-es_ES.po (modified) (1 diff)
-
tags/0.1.1/languages/postpay.pot (modified) (1 diff)
-
tags/0.1.1/postpay.php (copied) (copied from postpay/trunk/postpay.php) (2 diffs)
-
tags/0.1.1/readme.txt (copied) (copied from postpay/trunk/readme.txt) (2 diffs)
-
tags/0.1.1/templates (copied) (copied from postpay/trunk/templates)
-
tags/0.1.1/vendor (copied) (copied from postpay/trunk/vendor)
-
trunk/includes/http/class-wc-postpay-adapter.php (modified) (1 diff)
-
trunk/includes/wc-postpay-scripts.php (modified) (1 diff)
-
trunk/languages/postpay-es_ES.po (modified) (1 diff)
-
trunk/languages/postpay.pot (modified) (1 diff)
-
trunk/postpay.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
postpay/tags/0.1.1/includes/http/class-wc-postpay-adapter.php
r2267104 r2267312 38 38 require_once WC_POSTPAY_DIR_PATH . 'includes/http/class-wc-postpay-client.php'; 39 39 40 $this->client = new \Postpay\Postpay(40 $this->client = new Postpay( 41 41 array( 42 42 'sandbox' => $gateway->sandbox, -
postpay/tags/0.1.1/includes/wc-postpay-scripts.php
r2267104 r2267312 13 13 ), 14 14 'wc-postpay-init' => array( 15 'src' => plugin_dir_url( WC_POSTPAY_FILE ). 'assets/js/postpay.js',15 'src' => WC_POSTPAY_DIR_URL . 'assets/js/postpay.js', 16 16 'deps' => array( 'wc-postpay-js', 'jquery' ), 17 17 'version' => WC_POSTPAY_VERSION, 18 18 ), 19 19 'wc-postpay-checkout' => array( 20 'src' => plugin_dir_url( WC_POSTPAY_FILE ). 'assets/js/checkout.js',20 'src' => WC_POSTPAY_DIR_URL . 'assets/js/checkout.js', 21 21 'deps' => array( 'wc-postpay-init' ), 22 22 'version' => WC_POSTPAY_VERSION, -
postpay/tags/0.1.1/languages/postpay-es_ES.po
r2267104 r2267312 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Postpay 0.1. 0\n"5 "Project-Id-Version: Postpay 0.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n" 7 7 "Language-Team: \n" -
postpay/tags/0.1.1/languages/postpay.pot
r2267104 r2267312 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Postpay 0.1. 0\n"5 "Project-Id-Version: Postpay 0.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
postpay/tags/0.1.1/postpay.php
r2267104 r2267312 1 1 <?php 2 2 /** 3 * Plugin Name: Postpay4 * Version: 0.1. 03 * Plugin Name: WooCommerce Postpay Payment Gateway 4 * Version: 0.1.1 5 5 * Plugin URI: https://github.com/postpayio/woocommerce 6 6 * Description: Buy now and pay later with zero interest and zero fees. … … 58 58 define( 'WC_POSTPAY_FILE', __FILE__ ); 59 59 define( 'WC_POSTPAY_DIR_PATH', plugin_dir_path( __FILE__ ) ); 60 define( 'WC_POSTPAY_DIR_URL', plugin_dir_url( __FILE__ ) ); 60 61 define( 'WC_POSTPAY_VERSION', $plugin_data['Version'] ); 61 62 -
postpay/tags/0.1.1/readme.txt
r2267104 r2267312 1 === Postpay ===1 === WooCommerce Postpay Payment Gateway === 2 2 Contributors: mongkok 3 3 Requires at least: 4.4 4 4 Tested up to: 5.3.2 5 5 Requires PHP: 5.6 6 Stable tag: 0.1. 07 Version: 0.1. 06 Stable tag: 0.1.1 7 Version: 0.1.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 73 73 == Changelog == 74 74 75 = 0.1.1 - 2020-03-25 = 76 * Renamed plugin 77 * Added minor improvements 78 75 79 = 0.1.0 - 2020-03-25 = 76 80 * First release -
postpay/trunk/includes/http/class-wc-postpay-adapter.php
r2267104 r2267312 38 38 require_once WC_POSTPAY_DIR_PATH . 'includes/http/class-wc-postpay-client.php'; 39 39 40 $this->client = new \Postpay\Postpay(40 $this->client = new Postpay( 41 41 array( 42 42 'sandbox' => $gateway->sandbox, -
postpay/trunk/includes/wc-postpay-scripts.php
r2267104 r2267312 13 13 ), 14 14 'wc-postpay-init' => array( 15 'src' => plugin_dir_url( WC_POSTPAY_FILE ). 'assets/js/postpay.js',15 'src' => WC_POSTPAY_DIR_URL . 'assets/js/postpay.js', 16 16 'deps' => array( 'wc-postpay-js', 'jquery' ), 17 17 'version' => WC_POSTPAY_VERSION, 18 18 ), 19 19 'wc-postpay-checkout' => array( 20 'src' => plugin_dir_url( WC_POSTPAY_FILE ). 'assets/js/checkout.js',20 'src' => WC_POSTPAY_DIR_URL . 'assets/js/checkout.js', 21 21 'deps' => array( 'wc-postpay-init' ), 22 22 'version' => WC_POSTPAY_VERSION, -
postpay/trunk/languages/postpay-es_ES.po
r2267104 r2267312 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Postpay 0.1. 0\n"5 "Project-Id-Version: Postpay 0.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n" 7 7 "Language-Team: \n" -
postpay/trunk/languages/postpay.pot
r2267104 r2267312 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Postpay 0.1. 0\n"5 "Project-Id-Version: Postpay 0.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postpay\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
postpay/trunk/postpay.php
r2267104 r2267312 1 1 <?php 2 2 /** 3 * Plugin Name: Postpay4 * Version: 0.1. 03 * Plugin Name: WooCommerce Postpay Payment Gateway 4 * Version: 0.1.1 5 5 * Plugin URI: https://github.com/postpayio/woocommerce 6 6 * Description: Buy now and pay later with zero interest and zero fees. … … 58 58 define( 'WC_POSTPAY_FILE', __FILE__ ); 59 59 define( 'WC_POSTPAY_DIR_PATH', plugin_dir_path( __FILE__ ) ); 60 define( 'WC_POSTPAY_DIR_URL', plugin_dir_url( __FILE__ ) ); 60 61 define( 'WC_POSTPAY_VERSION', $plugin_data['Version'] ); 61 62 -
postpay/trunk/readme.txt
r2267104 r2267312 1 === Postpay ===1 === WooCommerce Postpay Payment Gateway === 2 2 Contributors: mongkok 3 3 Requires at least: 4.4 4 4 Tested up to: 5.3.2 5 5 Requires PHP: 5.6 6 Stable tag: 0.1. 07 Version: 0.1. 06 Stable tag: 0.1.1 7 Version: 0.1.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 73 73 == Changelog == 74 74 75 = 0.1.1 - 2020-03-25 = 76 * Renamed plugin 77 * Added minor improvements 78 75 79 = 0.1.0 - 2020-03-25 = 76 80 * First release
Note: See TracChangeset
for help on using the changeset viewer.