Changeset 3298882
- Timestamp:
- 05/22/2025 03:35:12 PM (11 months ago)
- Location:
- tamara-checkout/trunk
- Files:
-
- 5 edited
-
package.json (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
src/Dependencies/Tamara/Notification/Authenticator.php (modified) (1 diff)
-
src/TamaraCheckout.php (modified) (2 diffs)
-
tamara-checkout.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tamara-checkout/trunk/package.json
r3232068 r3298882 1 1 { 2 2 "name": "tamara_checkout", 3 "version": "1.9.9. 5",3 "version": "1.9.9.8", 4 4 "description": "Plugin for checking out using Tamara payment method", 5 5 "scripts": { -
tamara-checkout/trunk/readme.txt
r3296234 r3298882 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.3.0 7 Stable tag: 1.9.9. 77 Stable tag: 1.9.9.8 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 With Tamara Buy Now Pay Later, you r 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.11 With Tamara Buy Now Pay Later, you can split your payments – totally interest-free. Accepts payments from Mada, Apple Pay, or Credit Cards. 12 12 13 13 == Tamara for WooCommerce == -
tamara-checkout/trunk/src/Dependencies/Tamara/Notification/Authenticator.php
r2812729 r3298882 63 63 protected function decode(string $token) 64 64 { 65 JWT::$leeway = 180; 65 66 return JWT::decode($token, $this->tokenKey, ['HS256']); 66 67 } -
tamara-checkout/trunk/src/TamaraCheckout.php
r3258399 r3298882 694 694 'post_status' => $toAuthoriseStatus, 695 695 'date_query' => [ 696 'before' => date('Y-m-d', strtotime('- 3 hours')),696 'before' => date('Y-m-d', strtotime('-1 second')), 697 697 'after' => date('Y-m-d', strtotime('-180 days')), 698 698 'inclusive' => true, … … 701 701 'relation' => 'AND', 702 702 [ 703 'key' => ' tamara_checkout_session_id',703 'key' => '_tamara_checkout_session_id', 704 704 'compare' => 'EXISTS', 705 705 ], -
tamara-checkout/trunk/tamara-checkout.php
r3289672 r3298882 3 3 * Plugin Name: Tamara Checkout 4 4 * 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. 6 6 * Author: dev@tamara.co 7 7 * Author URI: https://tamara.co/ 8 * Version: 1.9.9. 78 * Version: 1.9.9.8 9 9 * Text Domain: tamara 10 10 */ … … 12 12 use Tamara\Wp\Plugin\TamaraCheckout; 13 13 14 defined('TAMARA_CHECKOUT_VERSION') || define('TAMARA_CHECKOUT_VERSION', '1.9.9. 7');14 defined('TAMARA_CHECKOUT_VERSION') || define('TAMARA_CHECKOUT_VERSION', '1.9.9.8'); 15 15 16 16 // Use autoload if it isn't loaded before
Note: See TracChangeset
for help on using the changeset viewer.