From 977f2519220bba535938c321c0d31382f09c5b75 Mon Sep 17 00:00:00 2001 From: David Parker Date: Mon, 11 Dec 2023 14:39:11 -0500 Subject: [PATCH] updating readme and version numbers --- pmpro-pay-by-check.php | 5 ++--- readme.txt | 9 +++++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/pmpro-pay-by-check.php b/pmpro-pay-by-check.php index 1ce33ce..af92533 100644 --- a/pmpro-pay-by-check.php +++ b/pmpro-pay-by-check.php @@ -3,7 +3,7 @@ Plugin Name: Paid Memberships Pro - Pay by Check Add On Plugin URI: https://www.paidmembershipspro.com/add-ons/pmpro-pay-by-check-add-on/ Description: A collection of customizations useful when allowing users to pay by check for Paid Memberships Pro levels. -Version: 0.11.3 +Version: 0.12 Author: Stranger Studios Author URI: https://www.paidmembershipspro.com Text Domain: pmpro-pay-by-check @@ -25,7 +25,7 @@ Settings, Globals and Constants */ define( 'PMPRO_PAY_BY_CHECK_DIR', dirname(__FILE__) ); -define( 'PMPROPBC_VER', '0.11.3' ); +define( 'PMPROPBC_VER', '0.12' ); /* Load plugin textdomain. @@ -768,7 +768,6 @@ function pmpropbc_confirmation_message( $confirmation_message, $invoice ) { * @param MemberOrder $morder - Updated order as it's being saved */ function pmpropbc_send_invoice_email( $morder ) { - // Only worry about this if this is a check order that is now in "success" status. if ( 'check' !== strtolower( $morder->payment_type ) || 'success' !== $morder->status ) { return; diff --git a/readme.txt b/readme.txt index 90c2b6f..86b1613 100755 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: strangerstudios, eighty20results Tags: pmpro, paid memberships pro, members, memberships, check, cheque, payments, offline Requires at least: 5.0 -Tested up to: 6.3 -Stable tag: 0.11.3 +Tested up to: 6.4 +Stable tag: 0.12 A collection of customizations useful when allowing users to pay by check for Paid Memberships Pro levels. @@ -31,6 +31,11 @@ If you would like to change the wording from "Pay by Check" to something else, y https://gist.github.com/strangerstudios/68bb75bf3b83530390d4 == Changelog == += 0.12 - 2023-12-11 = +* FEATURE: Email templates for this Add On can now be edited from the "Memberships" > "Settings" > "Email Templates" settings page. #106 (@MaximilianoRicoTabo) +* ENHANCEMENT: Now respecting the "Gateway Name Label" setting in core PMPro v3.0+ for updating "Check" wording. #108 (@MaximilianoRicoTabo) +* ENHANCEMENT: Adding compatibility with the PMPro v3.0+ Subscriptions Table by updating the subscription object when a recurring invoice is generated and no longer processing recurring orders for cancelled subscriptions. #110 (@dparker1005) + = 0.11.3 - 2023-10-04 = * SECURITY: General improvements and sanitization of the codebase. (@andrewlimaza) * BUG FIX: Fixed an issue where more than one order would be created mistakenly when there were different payment plans for a level. (@andrewlimaza, @dparker1005)