Plugin Directory

Changeset 3442620


Ignore:
Timestamp:
01/19/2026 02:32:48 PM (2 months ago)
Author:
stitchexpress
Message:

1.3.3

Location:
stitch-express
Files:
6 added
6 deleted
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • stitch-express/tags/1.3.3/build/index.asset.php

    r3235498 r3442620  
    1 <?php return array('dependencies' => array('react'), 'version' => '2add49743846c67ab069');
     1<?php return array('dependencies' => array('react'), 'version' => 'b7bf90c4bf35b8115381');
  • stitch-express/tags/1.3.3/build/index.js

    r3235498 r3442620  
    1 (()=>{"use strict";const e=window.React;function t(t){return(0,e.createElement)("span",null,"Secure payments powered by Stitch Express")}const{registerPaymentMethod:a}=window.wc.wcBlocksRegistry;a({label:(0,e.createElement)((function(t){const a=window.wc.wcSettings.getSetting("stitch-express_data");return(0,e.createElement)("div",{className:"UxZcXi_y2qynokK0PSsy"},(0,e.createElement)("span",{className:"UmqPaUuJYLCVz6igFbTW"},"Pay with Apple | Google | Capitec | Card"),(0,e.createElement)("div",{className:"IGKYqJZGeWmHgWNjllAN"},(0,e.createElement)("img",{src:a.icon_block_master_card,alt:"Master card logo"}),(0,e.createElement)("img",{src:a.icon_block_visa,alt:"visa logo"}),(0,e.createElement)("img",{src:a.icon_block_apple_pay,alt:"apple pay logo"}),(0,e.createElement)("img",{src:a.icon_block_google_pay,alt:"google pay logo"}),(0,e.createElement)("img",{src:a.icon_block_capitec_pay,alt:"capitec pay logo"}),(0,e.createElement)("img",{src:a.icon_block_happy_pay,alt:"happy pay logo"})))}),null),ariaLabel:"Pay with Stitch Express",content:(0,e.createElement)(t,null),edit:(0,e.createElement)(t,null),name:"stitch-express",canMakePayment(e){const{currency_code:t,total_price:a}=e.cartTotals;return"ZAR"===t&&parseInt(a,10)>=500},supports:{features:["products","refunds"]},placeOrderButtonLabel:"Pay"})})();
     1(()=>{"use strict";const e=window.React;function t(t){return(0,e.createElement)("span",null,"Secure payments powered by Stitch Express")}const{registerPaymentMethod:a}=window.wc.wcBlocksRegistry;a({label:(0,e.createElement)((function(t){const a=window.wc.wcSettings.getSetting("stitch-express_data");return(0,e.createElement)("div",{className:"UxZcXi_y2qynokK0PSsy"},(0,e.createElement)("span",{className:"UmqPaUuJYLCVz6igFbTW"},"Pay with Apple | Google | Capitec | Card | BNPL"),(0,e.createElement)("div",{className:"IGKYqJZGeWmHgWNjllAN"},(0,e.createElement)("img",{src:a.icon_block_master_card,alt:"Master card logo"}),(0,e.createElement)("img",{src:a.icon_block_visa,alt:"visa logo"}),(0,e.createElement)("img",{src:a.icon_block_apple_pay,alt:"apple pay logo"}),(0,e.createElement)("img",{src:a.icon_block_google_pay,alt:"google pay logo"}),(0,e.createElement)("img",{src:a.icon_block_capitec_pay,alt:"capitec pay logo"}),(0,e.createElement)("img",{src:a.icon_block_bnpl,alt:"BNPL logo"})))}),null),ariaLabel:"Pay with Stitch Express",content:(0,e.createElement)(t,null),edit:(0,e.createElement)(t,null),name:"stitch-express",canMakePayment(e){const{currency_code:t,total_price:a}=e.cartTotals;return"ZAR"===t&&parseInt(a,10)>=500},supports:{features:["products","refunds"]},placeOrderButtonLabel:"Pay"})})();
  • stitch-express/tags/1.3.3/includes/stitch-express-block.php

    r3235498 r3442620  
    5353        $icon_block_master_card = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/master-card.svg';
    5454        $icon_block_capitec_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/capitec-pay.svg';
    55         $icon_block_happy_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/happy-pay.svg';
     55        $icon_block_bnpl = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/stitch.svg';
    5656        $icon_block_google_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/google-pay.svg';
    5757        $icon_block_apple_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/apple-pay.svg';
     
    6161            'icon_block_master_card' => $icon_block_master_card,
    6262            'icon_block_capitec_pay' => $icon_block_capitec_pay,
    63             'icon_block_happy_pay' => $icon_block_happy_pay,
     63            'icon_block_bnpl' => $icon_block_bnpl,
    6464            'icon_block_apple_pay' => $icon_block_apple_pay,
    6565            'icon_block_google_pay' => $icon_block_google_pay,
  • stitch-express/tags/1.3.3/includes/stitch-express-client.php

    r3426123 r3442620  
    3838
    3939class Stitch_Express_Client {
    40     private const PLUGIN_VERSION = '1.3.2';
     40    private const PLUGIN_VERSION = '1.3.3';
    4141    private string $baseUrl = 'https://express.stitch.money';
    4242    private string $client_id;
  • stitch-express/tags/1.3.3/includes/stitch-express-gateway.php

    r3386994 r3442620  
    1010    public function __construct() {
    1111        $this->id = 'stitch-express';
    12         $this->icon = STITCH_EXPRESS_PLUGIN_URL.'/assets/wc-logo.svg';
     12        $this->icon = STITCH_EXPRESS_PLUGIN_URL.'/assets/wc-logo-v2.svg';
    1313        $this->has_fields = false;
    14         $this->title = 'Pay with Apple | Google | Capitec | Card';
     14        $this->title = 'Pay with Apple | Google | Capitec | Card | BNPL';
    1515        $this->description = 'Secure payments powered by Stitch Express';
    1616        $this->method_title = 'Stitch Express';
  • stitch-express/tags/1.3.3/readme.txt

    r3426123 r3442620  
    33Tags: woocommerce, card, payments, south africa, apple pay, google pay, stitch, express, stitch express
    44Tested up to: 6.7
    5 Stable tag: 1.3.2
     5Stable tag: 1.3.3
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1414* Apple Pay
    1515* Google Pay
    16 * Happy Pay (Buy now, pay later)
     16* Stitch Buy Now Pay Later (BNPL)
    1717* Capitec Pay
    1818* Payments with any Mastercard or Visa card
     
    3434* 2.95% on local, SA card transactions
    3535* 3.4% on International card transactions
    36 * 4.9% +R4 on Happy Pay transactions
     36* 4.9% +R4 on BNPL transactions
    3737* 2% on Capitec Pay transactions*
    3838
     
    8383
    8484== Changelog ==
     85= 1.3.3 =
     86* Replace Happy Pay with Stitch BNPL
     87
    8588= 1.3.2 =
    8689* Minor improvements
     
    158161
    159162== Upgrade Notice ==
     163= 1.3.3 =
     164* Replace Happy Pay with Stitch BNPL
     165
    160166= 1.3.2 =
    161167* Minor improvements
  • stitch-express/tags/1.3.3/stitch-express.php

    r3426123 r3442620  
    99 * Description:          Use Stitch Express to easily and securely accept Card payment on your WooCommerce store.
    1010 * Plugin URI:           https://wordpress.org/plugins/stitchexpress/
    11  * Version:              1.3.2
     11 * Version:              1.3.3
    1212 * Requires at least:    6.5
    1313 * Requires PHP:         8.0
  • stitch-express/trunk/build/index.asset.php

    r3235498 r3442620  
    1 <?php return array('dependencies' => array('react'), 'version' => '2add49743846c67ab069');
     1<?php return array('dependencies' => array('react'), 'version' => 'b7bf90c4bf35b8115381');
  • stitch-express/trunk/build/index.js

    r3235498 r3442620  
    1 (()=>{"use strict";const e=window.React;function t(t){return(0,e.createElement)("span",null,"Secure payments powered by Stitch Express")}const{registerPaymentMethod:a}=window.wc.wcBlocksRegistry;a({label:(0,e.createElement)((function(t){const a=window.wc.wcSettings.getSetting("stitch-express_data");return(0,e.createElement)("div",{className:"UxZcXi_y2qynokK0PSsy"},(0,e.createElement)("span",{className:"UmqPaUuJYLCVz6igFbTW"},"Pay with Apple | Google | Capitec | Card"),(0,e.createElement)("div",{className:"IGKYqJZGeWmHgWNjllAN"},(0,e.createElement)("img",{src:a.icon_block_master_card,alt:"Master card logo"}),(0,e.createElement)("img",{src:a.icon_block_visa,alt:"visa logo"}),(0,e.createElement)("img",{src:a.icon_block_apple_pay,alt:"apple pay logo"}),(0,e.createElement)("img",{src:a.icon_block_google_pay,alt:"google pay logo"}),(0,e.createElement)("img",{src:a.icon_block_capitec_pay,alt:"capitec pay logo"}),(0,e.createElement)("img",{src:a.icon_block_happy_pay,alt:"happy pay logo"})))}),null),ariaLabel:"Pay with Stitch Express",content:(0,e.createElement)(t,null),edit:(0,e.createElement)(t,null),name:"stitch-express",canMakePayment(e){const{currency_code:t,total_price:a}=e.cartTotals;return"ZAR"===t&&parseInt(a,10)>=500},supports:{features:["products","refunds"]},placeOrderButtonLabel:"Pay"})})();
     1(()=>{"use strict";const e=window.React;function t(t){return(0,e.createElement)("span",null,"Secure payments powered by Stitch Express")}const{registerPaymentMethod:a}=window.wc.wcBlocksRegistry;a({label:(0,e.createElement)((function(t){const a=window.wc.wcSettings.getSetting("stitch-express_data");return(0,e.createElement)("div",{className:"UxZcXi_y2qynokK0PSsy"},(0,e.createElement)("span",{className:"UmqPaUuJYLCVz6igFbTW"},"Pay with Apple | Google | Capitec | Card | BNPL"),(0,e.createElement)("div",{className:"IGKYqJZGeWmHgWNjllAN"},(0,e.createElement)("img",{src:a.icon_block_master_card,alt:"Master card logo"}),(0,e.createElement)("img",{src:a.icon_block_visa,alt:"visa logo"}),(0,e.createElement)("img",{src:a.icon_block_apple_pay,alt:"apple pay logo"}),(0,e.createElement)("img",{src:a.icon_block_google_pay,alt:"google pay logo"}),(0,e.createElement)("img",{src:a.icon_block_capitec_pay,alt:"capitec pay logo"}),(0,e.createElement)("img",{src:a.icon_block_bnpl,alt:"BNPL logo"})))}),null),ariaLabel:"Pay with Stitch Express",content:(0,e.createElement)(t,null),edit:(0,e.createElement)(t,null),name:"stitch-express",canMakePayment(e){const{currency_code:t,total_price:a}=e.cartTotals;return"ZAR"===t&&parseInt(a,10)>=500},supports:{features:["products","refunds"]},placeOrderButtonLabel:"Pay"})})();
  • stitch-express/trunk/includes/stitch-express-block.php

    r3235498 r3442620  
    5353        $icon_block_master_card = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/master-card.svg';
    5454        $icon_block_capitec_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/capitec-pay.svg';
    55         $icon_block_happy_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/happy-pay.svg';
     55        $icon_block_bnpl = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/stitch.svg';
    5656        $icon_block_google_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/google-pay.svg';
    5757        $icon_block_apple_pay = STITCH_EXPRESS_PLUGIN_URL.'/assets/blocks/apple-pay.svg';
     
    6161            'icon_block_master_card' => $icon_block_master_card,
    6262            'icon_block_capitec_pay' => $icon_block_capitec_pay,
    63             'icon_block_happy_pay' => $icon_block_happy_pay,
     63            'icon_block_bnpl' => $icon_block_bnpl,
    6464            'icon_block_apple_pay' => $icon_block_apple_pay,
    6565            'icon_block_google_pay' => $icon_block_google_pay,
  • stitch-express/trunk/includes/stitch-express-client.php

    r3426123 r3442620  
    3838
    3939class Stitch_Express_Client {
    40     private const PLUGIN_VERSION = '1.3.2';
     40    private const PLUGIN_VERSION = '1.3.3';
    4141    private string $baseUrl = 'https://express.stitch.money';
    4242    private string $client_id;
  • stitch-express/trunk/includes/stitch-express-gateway.php

    r3386994 r3442620  
    1010    public function __construct() {
    1111        $this->id = 'stitch-express';
    12         $this->icon = STITCH_EXPRESS_PLUGIN_URL.'/assets/wc-logo.svg';
     12        $this->icon = STITCH_EXPRESS_PLUGIN_URL.'/assets/wc-logo-v2.svg';
    1313        $this->has_fields = false;
    14         $this->title = 'Pay with Apple | Google | Capitec | Card';
     14        $this->title = 'Pay with Apple | Google | Capitec | Card | BNPL';
    1515        $this->description = 'Secure payments powered by Stitch Express';
    1616        $this->method_title = 'Stitch Express';
  • stitch-express/trunk/readme.txt

    r3426123 r3442620  
    33Tags: woocommerce, card, payments, south africa, apple pay, google pay, stitch, express, stitch express
    44Tested up to: 6.7
    5 Stable tag: 1.3.2
     5Stable tag: 1.3.3
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1414* Apple Pay
    1515* Google Pay
    16 * Happy Pay (Buy now, pay later)
     16* Stitch Buy Now Pay Later (BNPL)
    1717* Capitec Pay
    1818* Payments with any Mastercard or Visa card
     
    3434* 2.95% on local, SA card transactions
    3535* 3.4% on International card transactions
    36 * 4.9% +R4 on Happy Pay transactions
     36* 4.9% +R4 on BNPL transactions
    3737* 2% on Capitec Pay transactions*
    3838
     
    8383
    8484== Changelog ==
     85= 1.3.3 =
     86* Replace Happy Pay with Stitch BNPL
     87
    8588= 1.3.2 =
    8689* Minor improvements
     
    158161
    159162== Upgrade Notice ==
     163= 1.3.3 =
     164* Replace Happy Pay with Stitch BNPL
     165
    160166= 1.3.2 =
    161167* Minor improvements
  • stitch-express/trunk/stitch-express.php

    r3426123 r3442620  
    99 * Description:          Use Stitch Express to easily and securely accept Card payment on your WooCommerce store.
    1010 * Plugin URI:           https://wordpress.org/plugins/stitchexpress/
    11  * Version:              1.3.2
     11 * Version:              1.3.3
    1212 * Requires at least:    6.5
    1313 * Requires PHP:         8.0
Note: See TracChangeset for help on using the changeset viewer.