Skip to content

Commit

Permalink
Merge pull request #2 from iamsayan/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Sayan Datta committed Dec 10, 2022
2 parents 16f5968 + 67989e4 commit 8ddb576
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.1.7
Release Date: December 10, 2022

* Tweak: Default API is now set as Standard Mode.
* WordPress tested upto v6.1.
* WC Tested upto v7.1.

## 1.1.6
Release Date: July 15, 2022

Expand Down
4 changes: 2 additions & 2 deletions includes/payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,9 @@ public function init_form_fields() {
'api_type' => array(
'title' => __( 'Razorpay API Type:', 'rzp-woocommerce' ),
'type' => 'select',
'description' => __( 'Select the Razorpay API Type from here. Legacy API will be officially deprecated by Razorpay on March 31, 2021.', 'rzp-woocommerce' ),
'description' => __( 'Select the Razorpay API Type from here. Legacy API will be officially deprecated by Razorpay on March 31, 2021. If you have created your Razorpay account before December 2020, you may need to use the legacy version.', 'rzp-woocommerce' ),
'desc_tip' => false,
'default' => 'legacy',
'default' => 'standard',
'options' => array(
'standard' => __( 'Standard API', 'rzp-woocommerce' ),
'legacy' => __( 'Legacy API', 'rzp-woocommerce' ),
Expand Down
11 changes: 9 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: infosatech
Tags: razorpay, qrcode, upi, woocommerce, debit card, credit card
Requires at least: 4.6
Tested up to: 6.0
Stable tag: 1.1.6
Tested up to: 6.1
Stable tag: 1.1.7
Requires PHP: 5.6
Donate link: https://rzp.io/l/Bq3W5pr
License: GPLv3
Expand Down Expand Up @@ -106,6 +106,13 @@ Post detailed information about the issue in the [support forum](https://wordpre

If you like Razorpay Payment Links for WooCommerce, please take a moment to [give a 5-star rating](https://wordpress.org/support/plugin/rzp-woocommerce/reviews/?rate=5#new-post). It helps to keep development and support going strong. Thank you!

= 1.1.7 =
Release Date: December 10, 2022

* Tweak: Default API is now set as Standard Mode.
* WordPress tested upto v6.1.
* WC Tested upto v7.1.

= 1.1.6 =
Release Date: July 15, 2022

Expand Down
8 changes: 4 additions & 4 deletions rzp-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Plugin Name: Razorpay Payment Links for WooCommerce
* Plugin URI: https://wordpress.org/plugins/rzp-woocommerce/
* Description: The easiest and most secure solution to collect payments with WooCommerce. Allow customers to securely pay via Razorpay (Credit/Debit Cards, NetBanking, UPI, Wallets, QR Code).
* Version: 1.1.6
* Version: 1.1.7
* Author: Sayan Datta
* Author URI: https://sayandatta.in
* License: GPLv3
* Text Domain: rzp-woocommerce
* Domain Path: /languages
* WC requires at least: 2.0
* WC tested up to: 6.7
* WC tested up to: 7.1
*
* Razorpay Payment Links for WooCommerce is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -39,7 +39,7 @@
}

$consts = array(
'RZPWC_WOO_PLUGIN_VERSION' => '1.1.6', // plugin version
'RZPWC_WOO_PLUGIN_VERSION' => '1.1.7', // plugin version
'RZPWC_WOO_PLUGIN_BASENAME' => plugin_basename( __FILE__ ),
'RZPWC_WOO_PLUGIN_DIR' => plugin_dir_url( __FILE__ ),
);
Expand Down Expand Up @@ -129,7 +129,7 @@ function rzpwc_new_plugin_install_notice() {
<div class="notice notice-success">
<p><strong><?php
/* translators: %s: Plugin Details. 1. Plugin Name, 2. Plugin Version, 3. Plugin Settings */
printf( esc_html__( 'Thanks for installing %1$s v%2$s plugin. Click <a href="%3$s">here</a> to configure plugin settings.', 'rzp-woocommerce' ), 'Razorpay Payment Links for WooCommerce', esc_html( RZPWC_WOO_PLUGIN_VERSION ), esc_url( admin_url( 'admin.php?page=wc-settings&tab=checkout&section=wc-razorpay' ) ) ); ?></strong></p>
printf( wp_kses_post( __( 'Thanks for installing %1$s v%2$s plugin. Click <a href="%3$s">here</a> to configure plugin settings.', 'rzp-woocommerce' ) ), 'Razorpay Payment Links for WooCommerce', esc_html( RZPWC_WOO_PLUGIN_VERSION ), esc_url( admin_url( 'admin.php?page=wc-settings&tab=checkout&section=wc-razorpay' ) ) ); ?></strong></p>
</div> <?php
delete_transient( 'rzpwc-admin-notice-on-activation' );
}
Expand Down

0 comments on commit 8ddb576

Please sign in to comment.