Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Commit

Permalink
1.3.12 Release (#77)
Browse files Browse the repository at this point in the history
* Fix/73 pickup time delay (#75)

* NPM updates.
* Docker local dev updates.
* Updates Nginx config to include default local development domains.
* Fixes issue with use of date_i18n() function and not using the WordPress Time Zone when formatting pickup time intervals.
* Bumps version to 1.3.12 patch release.
* Fixes NPM dependencies & Travis Co build config.
* Fixes invalid NPM version to attempt to install.
* Fixes public plugin class object property calls to use get methods.
* Adds backwards compatibility for date output prior to WordPress 5.3.

* Fix/73 pickup time delay (#76)

* NPM updates.
* Docker local dev updates.
* Updates Nginx config to include default local development domains.
* Fixes issue with use of date_i18n() function and not using the WordPress Time Zone when formatting pickup time intervals.
* Bumps version to 1.3.12 patch release.
* Fixes NPM dependencies & Travis Co build config.
* Fixes invalid NPM version to attempt to install.
* Fixes public plugin class object property calls to use get methods.
* Adds backwards compatiblity for date output prior to WordPress 5.3.
* Fixes codes style.
  • Loading branch information
timnolte authored Mar 26, 2020
1 parent 925cb9f commit 1711ab4
Show file tree
Hide file tree
Showing 12 changed files with 2,605 additions and 2,845 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@ matrix:
addons:
apt:
packages:
- nodejs
- nodejs

before_install:
- npm install grunt-cli
- npm install -g [email protected]
- npm install -g grunt-cli

install:
- composer install
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**Tags:** woocommcerce, shipping, local pickup, checkout fields, ecommerce, e-commerce, wordpress ecommerce
**Requires at least:** 4.7
**Tested up to:** 5.3.2
**Stable tag:** 1.3.11
**Stable tag:** 1.3.12
**Requires PHP:** 5.6
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -69,6 +69,9 @@ The location, by default, is hooked to `woocommerce_admin_order_data_after_billi

## Changelog ##

### 1.3.12 ###
* Fixes Time Zone related pickup delay issue.

### 1.3.11 ###
* NPM development dependencies security vulnerability update.

Expand Down
14 changes: 9 additions & 5 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@ version: '3.7'
services:
wordpress-develop:
volumes:
- ./tools/local-env/default.template:/etc/nginx/conf.d/default.template
- .:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select
- ../tools/local-env/default.template:/etc/nginx/conf.d/default.template
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select
- ../vendor/woocommerce/woocommerce:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce

# Load our config file, substituning environment variables into the config.
command: /bin/sh -c "envsubst '$$LOCAL_DIR $$LOCAL_HOSTNAME' < /etc/nginx/conf.d/default.template > /etc/nginx/conf.d/default.conf && exec nginx -g 'daemon off;'"

php:
volumes:
- .:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select
- ../vendor/woocommerce/woocommerce:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce
cli:
volumes:
- .:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select
- ../vendor/woocommerce/woocommerce:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce
phpunit:
volumes:
- .:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select'
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce-local-pickup-time-select
- ../vendor/woocommerce/woocommerce:/var/www/${LOCAL_DIR-src}/wp-content/plugins/woocommerce
14 changes: 7 additions & 7 deletions languages/woocommerce-local-pickup-time-cs_CZ.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: WooCommerce Local Pickup Time\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-local-"
"pickup-time\n"
"POT-Creation-Date: 2019-11-20 04:42:44+00:00\n"
"POT-Creation-Date: 2020-03-26 06:34:11+00:00\n"
"PO-Revision-Date: 2019-02-01 14:28:47+0000\n"
"Language: cs_CZ\n"
"MIME-Version: 1.0\n"
Expand Down Expand Up @@ -288,9 +288,9 @@ msgid "Pickup Time:"
msgstr "Čas vyzvednutí:"

#: admin/class-local-pickup-time-admin.php:356
#: public/class-local-pickup-time.php:543
#: public/class-local-pickup-time.php:550
#: public/class-local-pickup-time.php:602
#: public/class-local-pickup-time.php:551
#: public/class-local-pickup-time.php:558
#: public/class-local-pickup-time.php:610
msgid "Pickup Time"
msgstr "Čas vyzvednutí"

Expand Down Expand Up @@ -322,15 +322,15 @@ msgstr "Sobota"
msgid "Sunday"
msgstr "Neděle"

#: public/class-local-pickup-time.php:420
#: public/class-local-pickup-time.php:424
msgid "Select time"
msgstr "Vyberte čas"

#: public/class-local-pickup-time.php:570
#: public/class-local-pickup-time.php:578
msgid "Please select a pickup time."
msgstr "vyberte si čas vyzvednutí."

#: public/class-local-pickup-time.php:622
#: public/class-local-pickup-time.php:630
msgid "None"
msgstr "Žádná"

Expand Down
14 changes: 7 additions & 7 deletions languages/woocommerce-local-pickup-time-en_US.po
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: WooCommerce Local Pickup Time Select\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-local-"
"pickup-time\n"
"POT-Creation-Date: 2019-11-20 04:42:44+00:00\n"
"POT-Creation-Date: 2020-03-26 06:34:11+00:00\n"
"PO-Revision-Date: 2017-05-11 11:03+0200\n"
"Last-Translator: Karolína Vyskočilová <[email protected]>\n"
"Language-Team: Matt Banks <[email protected]>\n"
Expand Down Expand Up @@ -261,9 +261,9 @@ msgid "Pickup Time:"
msgstr ""

#: admin/class-local-pickup-time-admin.php:356
#: public/class-local-pickup-time.php:543
#: public/class-local-pickup-time.php:550
#: public/class-local-pickup-time.php:602
#: public/class-local-pickup-time.php:551
#: public/class-local-pickup-time.php:558
#: public/class-local-pickup-time.php:610
msgid "Pickup Time"
msgstr ""

Expand Down Expand Up @@ -295,15 +295,15 @@ msgstr ""
msgid "Sunday"
msgstr ""

#: public/class-local-pickup-time.php:420
#: public/class-local-pickup-time.php:424
msgid "Select time"
msgstr ""

#: public/class-local-pickup-time.php:570
#: public/class-local-pickup-time.php:578
msgid "Please select a pickup time."
msgstr ""

#: public/class-local-pickup-time.php:622
#: public/class-local-pickup-time.php:630
msgid "None"
msgstr ""

Expand Down
16 changes: 8 additions & 8 deletions languages/woocommerce-local-pickup-time.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce Local Pickup Time Select 1.3.11\n"
"Project-Id-Version: WooCommerce Local Pickup Time Select 1.3.12\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/woocommerce-local-pickup-time\n"
"POT-Creation-Date: 2020-02-12 03:57:42+00:00\n"
"POT-Creation-Date: 2020-03-26 06:34:11+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down Expand Up @@ -266,9 +266,9 @@ msgid "Pickup Time:"
msgstr ""

#: admin/class-local-pickup-time-admin.php:356
#: public/class-local-pickup-time.php:543
#: public/class-local-pickup-time.php:550
#: public/class-local-pickup-time.php:602
#: public/class-local-pickup-time.php:551
#: public/class-local-pickup-time.php:558
#: public/class-local-pickup-time.php:610
msgid "Pickup Time"
msgstr ""

Expand Down Expand Up @@ -300,15 +300,15 @@ msgstr ""
msgid "Sunday"
msgstr ""

#: public/class-local-pickup-time.php:420
#: public/class-local-pickup-time.php:424
msgid "Select time"
msgstr ""

#: public/class-local-pickup-time.php:570
#: public/class-local-pickup-time.php:578
msgid "Please select a pickup time."
msgstr ""

#: public/class-local-pickup-time.php:622
#: public/class-local-pickup-time.php:630
msgid "None"
msgstr ""

Expand Down
Loading

0 comments on commit 1711ab4

Please sign in to comment.