Plugin Directory

Changeset 3303424


Ignore:
Timestamp:
05/30/2025 08:19:23 AM (10 months ago)
Author:
ndijkstra
Message:

Preparing for 2.8.0 release

Location:
mollie-forms/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mollie-forms/trunk/classes/MollieForms.php

    r3284717 r3303424  
    1010     * Plugin version number
    1111     */
    12     const PLUGIN_VERSION = '2.7.13';
     12    const PLUGIN_VERSION = '2.8.0';
    1313
    1414    /**
  • mollie-forms/trunk/classes/Webhook.php

    r3057728 r3303424  
    168168                }
    169169
     170                // send emails
     171                $this->sendEmail($post, $status, $registration->id, $payment, 'customer');
     172                $this->sendEmail($post, $status, $registration->id, $payment, 'merchant');
     173
    170174                return 'OK';
    171175            }
     
    307311            return;
    308312        }
     313
     314        if ($payment->sequenceType === 'recurring' && $status === 'paid') {
     315            return;
     316        }
    309317
    310318        $status = str_replace('_', '', $status);
  • mollie-forms/trunk/mollie-forms.php

    r3284717 r3303424  
    44Plugin Name: Mollie Forms
    55Description: Create registration forms with payment methods of Mollie. One-time and recurring payments are possible.
    6 Version: 2.7.13
     6Version: 2.8.0
    77Author: Wobbie.nl
    88Author URI: https://wobbie.nl
  • mollie-forms/trunk/readme.txt

    r3284717 r3303424  
    55Requires at least: 5.3
    66Requires PHP: 7.0
    7 Tested up to: 6.7
    8 Stable tag: 2.7.13
     7Tested up to: 6.8.1
     8Stable tag: 2.8.0
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8282== Changelog ==
    8383
     84= 2.8.0 - 30/05/2025 =
     85* Send e-mails about failed recurring payments
     86
    8487= 2.7.13 - 30/04/2025 =
    8588* Send customer name and email to Mollie when creating payments
Note: See TracChangeset for help on using the changeset viewer.