Skip to content

Commit

Permalink
Merge pull request #27 from logeecom/hotfix/2020-09-04
Browse files Browse the repository at this point in the history
Release version 3.0.3
  • Loading branch information
logeecom authored Sep 4, 2020
2 parents fb30eae + 6e59ecf commit 896a198
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 15 deletions.
Binary file not shown.
8 changes: 6 additions & 2 deletions PluginInstallation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [v3.0.3](https://github.com/logeecom/pl_woocommerce_module/compare/v3.0.2...v3.0.3) - 2020-09-04
### Changed
- Fixed location picker issue.

## [v3.0.2](https://github.com/logeecom/pl_woocommerce_module/compare/v3.0.1...v3.0.2) - 2020-09-02
### Changed
- Fix translation issue in italian.
- Fixed translation issue in italian.

## [v3.0.1](https://github.com/logeecom/pl_woocommerce_module/compare/v3.0.0...v3.0.1) - 2020-08-28
### Changed
- Fix changing shop order status upon shipment status update.
- Fixed changing shop order status upon shipment status update.

## [v3.0.0](https://github.com/logeecom/pl_woocommerce_module/compare/v2.2.4...v3.0.0) - 2020-08-26
###
Expand Down
16 changes: 8 additions & 8 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,18 @@ if [ ! -d "$destination/js/location-picker" ]; then
mkdir "$destination/js/location-picker"
fi

cp -r "${source}/LocationPicker/js/*" "${destination}/js/location-picker"
cp -r "${source}/LocationPicker/css/*" "${destination}/css"
cp -r ${source}/LocationPicker/js/* ${destination}/js/location-picker
cp -r ${source}/LocationPicker/css/* ${destination}/css

cd "${destination}/js/location-picker"
cd ${destination}/js/location-picker
for file in ./* ; do
mv "$file" "$(echo "$file"|sed -e 's/^.\//packlink\-/' -e 's/\([A-Z]\)/\-\L\1/g' -e 's/\-\-/\-/')"
mv "$file" "$(echo $file|sed -e 's/^.\//packlink\-/' -e 's/\([A-Z]\)/\-\L\1/g' -e 's/\-\-/\-/')"
done

cd "${destination}/css"
cd ${destination}/css
mv ./locationPicker.css ./packlink-location-picker.css

cd "${root}"
cd ${root}

# get plugin version
echo -e "\e[32mSTEP 5:\e[39m Reading module version..."
Expand All @@ -72,7 +72,7 @@ if [ "$version" = "" ]; then
version=$(php -r "echo json_decode(file_get_contents('src/composer.json'), true)['version'];")
if [ "$version" = "" ]; then
echo "Please enter new plugin version (leave empty to use root folder as destination) [ENTER]:"
read -r version
read version
else
echo -e "\e[35mVersion read from the composer.json file: $version\e[39m"
fi
Expand All @@ -98,4 +98,4 @@ else
echo -e "\e[93mNew plugin archive created: $PWD/packlink-pro-shipping.zip"
fi

rm -fR ./packlink-pro-shipping
rm -fR ./packlink-pro-shipping
2 changes: 1 addition & 1 deletion src/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "packlink/woocommerce",
"description": "Packlink WooCommerce Integration",
"version": "3.0.2",
"version": "3.0.3",
"type": "library",
"repositories": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/packlink-pro-shipping.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: Packlink PRO Shipping
* Plugin URI: https://en.wordpress.org/plugins/packlink-pro-shipping/
* Description: Save up to 70% on your shipping costs. No fixed fees, no minimum shipping volume required. Manage all your shipments in a single platform.
* Version: 3.0.2
* Version: 3.0.3
* Author: Packlink Shipping S.L.
* Author URI: https://pro.packlink.es/
* License: GPL
Expand Down
12 changes: 9 additions & 3 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: woocommerce, shipment, shipping, packlink
Requires at least: 4.7
Requires PHP: 5.5
Tested up to: 5.5
Stable tag: 3.0.2
Stable tag: 3.0.3
License: LICENSE-2.0
License URI: http://www.apache.org/licenses/LICENSE-2.0

Expand Down Expand Up @@ -68,17 +68,23 @@ Click <a href="https://support-pro.packlink.com/hc/es-es/articles/210158585" tar

== Changelog ==

#### 3.0.3 - September 04, 2020

**Updates**

- Fixed location picker issue.

#### 3.0.2 - September 02, 2020

**Updates**

- Fix translation issue in italian.
- Fixed translation issue in Italian.

#### 3.0.1

**Updates**

- Fix changing shop order status upon shipment status update.
- Fixed changing shop order status upon shipment status update.

#### 3.0.0 - August 26, 2020

Expand Down

0 comments on commit 896a198

Please sign in to comment.