Changeset 3071927
- Timestamp:
- 04/16/2024 07:32:28 PM (20 months ago)
- Location:
- gazchaps-woocommerce-getaddress-io
- Files:
-
- 12 added
- 3 edited
-
tags/3.2.1 (added)
-
tags/3.2.1/class.admin.php (added)
-
tags/3.2.1/class.api-client.php (added)
-
tags/3.2.1/class.checkout.php (added)
-
tags/3.2.1/class.common.php (added)
-
tags/3.2.1/class.database.php (added)
-
tags/3.2.1/class.exception.php (added)
-
tags/3.2.1/class.settings.php (added)
-
tags/3.2.1/gazchaps-getaddress-io-admin.min.js (added)
-
tags/3.2.1/gazchaps-getaddress-io.min.js (added)
-
tags/3.2.1/index.php (added)
-
tags/3.2.1/readme.txt (added)
-
trunk/class.common.php (modified) (4 diffs)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gazchaps-woocommerce-getaddress-io/trunk/class.common.php
r2984227 r3071927 5 5 6 6 class GazChap_WC_GetAddress_Plugin_Common { 7 const PLUGIN_VERSION = '3.2 ';7 const PLUGIN_VERSION = '3.2.1'; 8 8 const DONATE_URL = 'https://ko-fi.com/gazchap'; 9 9 … … 56 56 } catch ( GazChap_WC_GetAddress_Plugin_Exception $exception ) { 57 57 $output = array( 58 'error_code' => $exception->getCode() 58 'error_code' => $exception->getCode(), 59 59 ); 60 60 switch( $exception->getCode() ) { … … 71 71 $output['error'] = __('Server error. Please try again later.', 'gazchaps-woocommerce-getaddress-io' ); 72 72 break; 73 74 default: 75 $output['error'] = __('An unknown error occurred. Please try again later.', 'gazchaps-woocommerce-getaddress-io'); 73 76 } 74 77 } … … 77 80 if ( empty( $output ) ) { 78 81 $output = array( 79 'error' => __('No postcode was supplied.', 'gazchaps-woocommerce-getaddress-io' ),82 'error' => __('No postcode was supplied.', 'gazchaps-woocommerce-getaddress-io' ), 80 83 'error_code' => 400, 81 84 ); -
gazchaps-woocommerce-getaddress-io/trunk/index.php
r2984227 r3071927 3 3 * Plugin Name: GazChap's WooCommerce getAddress.io Postcode Lookup 4 4 * Plugin URI: https://www.gazchap.com/posts/woocommerce-getaddress-io 5 * Version: 3.2 5 * Version: 3.2.1 6 6 * Author: Gareth 'GazChap' Griffiths 7 7 * Author URI: https://www.gazchap.com 8 8 * Description: Adds a UK postcode address lookup tool to the WooCommerce checkout process. 9 * Tested up to: 6. 39 * Tested up to: 6.5 10 10 * WC requires at least: 3.0.0 11 * WC tested up to: 8. 2.111 * WC tested up to: 8.7.0 12 12 * Text Domain: gazchaps-woocommerce-getaddress-io 13 13 * Domain Path: /lang 14 14 * License: GNU General Public License v2.0 15 15 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 16 * Donate link: https:// paypal.me/gazchap16 * Donate link: https://ko-fi.com/gazchap 17 17 */ 18 18 -
gazchaps-woocommerce-getaddress-io/trunk/readme.txt
r2984227 r3071927 4 4 Requires at least: 4.8.0 5 5 Requires PHP: 5.6 6 Tested up to: 6. 37 WC tested up to: 8. 2.16 Tested up to: 6.5 7 WC tested up to: 8.7.0 8 8 License: GNU General Public License v2.0 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 Stable tag: 3.2 10 Stable tag: 3.2.1 11 11 Donate link: https://ko-fi.com/gazchap 12 12 … … 82 82 83 83 == Changelog == 84 = 3.2.1 (16/04/2024) = 85 86 * Bugfix - fixed a PHP warning being generated when errors occurred. Thanks to connectisl for the report. 87 84 88 = 3.2 (26/10/2023) = 85 89
Note: See TracChangeset
for help on using the changeset viewer.