Plugin Directory

Changeset 3071927


Ignore:
Timestamp:
04/16/2024 07:32:28 PM (20 months ago)
Author:
gazchap
Message:

Update to v3.2.1

Location:
gazchaps-woocommerce-getaddress-io
Files:
12 added
3 edited

Legend:

Unmodified
Added
Removed
  • gazchaps-woocommerce-getaddress-io/trunk/class.common.php

    r2984227 r3071927  
    55
    66    class GazChap_WC_GetAddress_Plugin_Common {
    7         const PLUGIN_VERSION = '3.2';
     7        const PLUGIN_VERSION = '3.2.1';
    88        const DONATE_URL = 'https://ko-fi.com/gazchap';
    99
     
    5656                    } catch ( GazChap_WC_GetAddress_Plugin_Exception $exception ) {
    5757                        $output = array(
    58                             'error_code' => $exception->getCode()
     58                            'error_code' => $exception->getCode(),
    5959                        );
    6060                        switch( $exception->getCode() ) {
     
    7171                                $output['error'] = __('Server error. Please try again later.', 'gazchaps-woocommerce-getaddress-io' );
    7272                                break;
     73
     74                            default:
     75                                $output['error'] = __('An unknown error occurred. Please try again later.', 'gazchaps-woocommerce-getaddress-io');
    7376                        }
    7477                    }
     
    7780            if ( empty( $output ) ) {
    7881                $output = array(
    79                     'error' =>__('No postcode was supplied.', 'gazchaps-woocommerce-getaddress-io' ),
     82                    'error' => __('No postcode was supplied.', 'gazchaps-woocommerce-getaddress-io' ),
    8083                    'error_code' => 400,
    8184                );
  • gazchaps-woocommerce-getaddress-io/trunk/index.php

    r2984227 r3071927  
    33 * Plugin Name: GazChap's WooCommerce getAddress.io Postcode Lookup
    44 * Plugin URI: https://www.gazchap.com/posts/woocommerce-getaddress-io
    5  * Version: 3.2
     5 * Version: 3.2.1
    66 * Author: Gareth 'GazChap' Griffiths
    77 * Author URI: https://www.gazchap.com
    88 * Description: Adds a UK postcode address lookup tool to the WooCommerce checkout process.
    9  * Tested up to: 6.3
     9 * Tested up to: 6.5
    1010 * WC requires at least: 3.0.0
    11  * WC tested up to: 8.2.1
     11 * WC tested up to: 8.7.0
    1212 * Text Domain: gazchaps-woocommerce-getaddress-io
    1313 * Domain Path: /lang
    1414 * License: GNU General Public License v2.0
    1515 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
    16  * Donate link: https://paypal.me/gazchap
     16 * Donate link: https://ko-fi.com/gazchap
    1717 */
    1818
  • gazchaps-woocommerce-getaddress-io/trunk/readme.txt

    r2984227 r3071927  
    44Requires at least: 4.8.0
    55Requires PHP: 5.6
    6 Tested up to: 6.3
    7 WC tested up to: 8.2.1
     6Tested up to: 6.5
     7WC tested up to: 8.7.0
    88License: GNU General Public License v2.0
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    10 Stable tag: 3.2
     10Stable tag: 3.2.1
    1111Donate link: https://ko-fi.com/gazchap
    1212
     
    8282
    8383== 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
    8488= 3.2 (26/10/2023) =
    8589
Note: See TracChangeset for help on using the changeset viewer.