Plugin Directory

Changeset 3298882


Ignore:
Timestamp:
05/22/2025 03:35:12 PM (11 months ago)
Author:
tamarasolution
Message:

v1.9.9.8 - Update the leeway

Location:
tamara-checkout/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • tamara-checkout/trunk/package.json

    r3232068 r3298882  
    11{
    22  "name": "tamara_checkout",
    3   "version": "1.9.9.5",
     3  "version": "1.9.9.8",
    44  "description": "Plugin for checking out using Tamara payment method",
    55  "scripts": {
  • tamara-checkout/trunk/readme.txt

    r3296234 r3298882  
    55Tested up to: 6.7
    66Requires PHP: 7.3.0
    7 Stable tag: 1.9.9.7
     7Stable tag: 1.9.9.8
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 With Tamara Buy Now Pay Later, your customers can split their payments split their purchases in up to 4 easy payments – no late fees and Sharia-compliant. Accepts payments from Mada, Apple Pay, or Credit Cards.
     11With Tamara Buy Now Pay Later, you can split your payments – totally interest-free. Accepts payments from Mada, Apple Pay, or Credit Cards.
    1212
    1313== Tamara for WooCommerce ==
  • tamara-checkout/trunk/src/Dependencies/Tamara/Notification/Authenticator.php

    r2812729 r3298882  
    6363    protected function decode(string $token)
    6464    {
     65        JWT::$leeway = 180;
    6566        return JWT::decode($token, $this->tokenKey, ['HS256']);
    6667    }
  • tamara-checkout/trunk/src/TamaraCheckout.php

    r3258399 r3298882  
    694694            'post_status' => $toAuthoriseStatus,
    695695            'date_query' => [
    696                 'before' => date('Y-m-d', strtotime('-3 hours')),
     696                'before' => date('Y-m-d', strtotime('-1 second')),
    697697                'after' => date('Y-m-d', strtotime('-180 days')),
    698698                'inclusive' => true,
     
    701701                'relation' => 'AND',
    702702                [
    703                     'key' => 'tamara_checkout_session_id',
     703                    'key' => '_tamara_checkout_session_id',
    704704                    'compare' => 'EXISTS',
    705705                ],
  • tamara-checkout/trunk/tamara-checkout.php

    r3289672 r3298882  
    33 * Plugin Name: Tamara Checkout
    44 * Plugin URI:  https://tamara.co/
    5  * Description: This plugin enables Tamara Buy Now Pay later on your WooCommerce store. With Tamara, you can split your payments – totally interest-free. Accepts payments from Mada, Apple Pay, or Credit Cards.
     5 * Description: With Tamara Buy Now Pay Later, you can split your payments – totally interest-free. Accepts payments from Mada, Apple Pay, or Credit Cards.
    66 * Author:      dev@tamara.co
    77 * Author URI:  https://tamara.co/
    8  * Version:     1.9.9.7
     8 * Version:     1.9.9.8
    99 * Text Domain: tamara
    1010 */
     
    1212use Tamara\Wp\Plugin\TamaraCheckout;
    1313
    14 defined('TAMARA_CHECKOUT_VERSION') || define('TAMARA_CHECKOUT_VERSION', '1.9.9.7');
     14defined('TAMARA_CHECKOUT_VERSION') || define('TAMARA_CHECKOUT_VERSION', '1.9.9.8');
    1515
    1616// Use autoload if it isn't loaded before
Note: See TracChangeset for help on using the changeset viewer.