Changeset 2919329
- Timestamp:
- 05/30/2023 10:34:17 PM (3 years ago)
- Location:
- payforme
- Files:
-
- 1 deleted
- 5 edited
- 6 copied
-
tags/2.0.6 (copied) (copied from payforme/trunk)
-
tags/2.0.6/README.txt (copied) (copied from payforme/trunk/README.txt) (2 diffs)
-
tags/2.0.6/build/asset-manifest.json (copied) (copied from payforme/trunk/build/asset-manifest.json)
-
tags/2.0.6/build/static/js/main.24b3aec6.js (deleted)
-
tags/2.0.6/build/static/js/main.8e87d2a3.js (copied) (copied from payforme/trunk/build/static/js/main.8e87d2a3.js)
-
tags/2.0.6/changelog.txt (copied) (copied from payforme/trunk/changelog.txt) (1 diff)
-
tags/2.0.6/payforme-woocommerce.php (copied) (copied from payforme/trunk/payforme-woocommerce.php) (2 diffs)
-
tags/2.0.6/scripts/pfm-script.js (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/payforme-woocommerce.php (modified) (2 diffs)
-
trunk/scripts/pfm-script.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
payforme/tags/2.0.6/README.txt
r2918720 r2919329 4 4 Requires at least: 5.0 5 5 Tested up to: 6.2.2 6 Stable tag: 2.0. 56 Stable tag: 2.0.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 76 76 == Changelog == 77 77 78 = 2.0.6 = 79 * Add - Now providing clear and actionable guidance when WooCommerce API keys are found to be missing or incorrect. 80 78 81 = 2.0.5 = 79 82 * Add - Support for custom store fees. -
payforme/tags/2.0.6/changelog.txt
r2918720 r2919329 1 1 *** PayForMe for Woocommerce Changelog *** 2 3 = 2023-05-30 - version 2.0.6 = 4 * Add - Now providing clear and actionable guidance when WooCommerce API keys are found to be missing or incorrect. 2 5 3 6 2023-05-29 - version 2.0.5 -
payforme/tags/2.0.6/payforme-woocommerce.php
r2918720 r2919329 7 7 * Plugin URI: https://wordpress.org/plugins/payforme/ 8 8 * Description: PayForMe enables people to pay for the purchases of their friends and families via a secure payment link. Accept Credit/Debit cards, ApplePay and GooglePay using PayForMe. 9 * Version: 2.0. 59 * Version: 2.0.6 10 10 * Author: PayForMe 11 11 * Author URI: https://payforme.io/ … … 652 652 653 653 if (is_wp_error($response)) { 654 throw new Exception('WordPress Error ' . $httpcode . ': ' . $response->get_error_message()); 654 http_response_code($httpcode); 655 echo json_encode($response->get_error_message()); 656 exit(); 655 657 } 656 658 657 659 if ($httpcode !== 200) { 658 throw new Exception('Error ' . $httpcode . ': ' . $response_body); 660 http_response_code($httpcode); 661 echo json_encode($response_body); 662 exit(); 659 663 } 660 664 -
payforme/tags/2.0.6/scripts/pfm-script.js
r2906203 r2919329 65 65 return data; 66 66 } catch (error) { 67 const errorMsg = error. statusText ?? error.message;68 consoleLog(" ajax error: " + JSON.stringify(errorMsg));67 const errorMsg = error.responseText ?? error.message ?? error.statusText; 68 consoleLog("errorMsg: " + errorMsg); 69 69 dispatchErrorToComponent(COMPONENT_STORE_CHECKOUT, errorMsg); 70 70 } -
payforme/trunk/README.txt
r2918720 r2919329 4 4 Requires at least: 5.0 5 5 Tested up to: 6.2.2 6 Stable tag: 2.0. 56 Stable tag: 2.0.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 76 76 == Changelog == 77 77 78 = 2.0.6 = 79 * Add - Now providing clear and actionable guidance when WooCommerce API keys are found to be missing or incorrect. 80 78 81 = 2.0.5 = 79 82 * Add - Support for custom store fees. -
payforme/trunk/changelog.txt
r2918720 r2919329 1 1 *** PayForMe for Woocommerce Changelog *** 2 3 = 2023-05-30 - version 2.0.6 = 4 * Add - Now providing clear and actionable guidance when WooCommerce API keys are found to be missing or incorrect. 2 5 3 6 2023-05-29 - version 2.0.5 -
payforme/trunk/payforme-woocommerce.php
r2918720 r2919329 7 7 * Plugin URI: https://wordpress.org/plugins/payforme/ 8 8 * Description: PayForMe enables people to pay for the purchases of their friends and families via a secure payment link. Accept Credit/Debit cards, ApplePay and GooglePay using PayForMe. 9 * Version: 2.0. 59 * Version: 2.0.6 10 10 * Author: PayForMe 11 11 * Author URI: https://payforme.io/ … … 652 652 653 653 if (is_wp_error($response)) { 654 throw new Exception('WordPress Error ' . $httpcode . ': ' . $response->get_error_message()); 654 http_response_code($httpcode); 655 echo json_encode($response->get_error_message()); 656 exit(); 655 657 } 656 658 657 659 if ($httpcode !== 200) { 658 throw new Exception('Error ' . $httpcode . ': ' . $response_body); 660 http_response_code($httpcode); 661 echo json_encode($response_body); 662 exit(); 659 663 } 660 664 -
payforme/trunk/scripts/pfm-script.js
r2906203 r2919329 65 65 return data; 66 66 } catch (error) { 67 const errorMsg = error. statusText ?? error.message;68 consoleLog(" ajax error: " + JSON.stringify(errorMsg));67 const errorMsg = error.responseText ?? error.message ?? error.statusText; 68 consoleLog("errorMsg: " + errorMsg); 69 69 dispatchErrorToComponent(COMPONENT_STORE_CHECKOUT, errorMsg); 70 70 }
Note: See TracChangeset
for help on using the changeset viewer.