Plugin Directory

Changeset 3320175


Ignore:
Timestamp:
06/30/2025 04:38:28 PM (7 months ago)
Author:
leewillis77
Message:

Deploying 3.4.4

Location:
cart-recovery/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • cart-recovery/trunk/cart-recovery-for-wordpress.php

    r3320173 r3320175  
    66 * Description: An easy-to-use plugin that allows you to capture abandoned, and failed orders, and follow up.
    77 * Author: Ademti Software
    8  * Version: 3.4.3
     8 * Version: 3.4.4
    99 * WC requires at least: 9.0
    1010 * WC tested up to: 9.8
     
    3838}
    3939
    40 define( 'CRFW_VERSION', '3.4.3' );
     40define( 'CRFW_VERSION', '3.4.4' );
    4141define( 'CRFW_DB_VERSION', 6 );
    4242
  • cart-recovery/trunk/readme.txt

    r3320173 r3320175  
    77License: GPL v2
    88Requires PHP: 7.4
    9 Stable tag: 3.4.3
     9Stable tag: 3.4.4
    1010
    1111Cart recovery for WordPress brings abandoned cart recovery and tracking to your WordPress store.
     
    5151== Changelog ==
    5252
    53 = 3.4.3 =
     53= 3.4.4 =
    5454* Fix: Fix issue on sites with neither ext-bcmath or ext-gmp
    5555
  • cart-recovery/trunk/vendor/composer/installed.json

    r3320173 r3320175  
    8484                "branch-alias": {
    8585                    "dev-master": "4.1-dev"
     86                },
     87                "patches_applied": {
     88                    "Fix issue with extbc compat": "patches/hashids.diff"
    8689                }
    8790            },
  • cart-recovery/trunk/vendor/hashids/hashids/src/Hashids.php

    r3319896 r3320175  
    402402        }
    403403
    404         if (\extension_loaded('bcmath')) {
    405             return new Bc();
    406         }
    407 
    408         throw new RuntimeException('Missing BC Math or GMP extension.');
     404        return new Bc();
    409405    }
    410406
Note: See TracChangeset for help on using the changeset viewer.