Skip to content

Commit

Permalink
Merge pull request #68 from retainful/release_2.6.15
Browse files Browse the repository at this point in the history
Release 2.6.15
  • Loading branch information
rameshelamathi authored Aug 2, 2022
2 parents 5dd35e1 + e2a0d0c commit bc1a740
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
6 changes: 3 additions & 3 deletions developer.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ svn add trunk/*
3. Commit code
svn ci -m 'Adding first version of my plugin'
or
svn ci -m 'v2.6.13 release' --username retainful
svn ci -m 'v2.6.15 release' --username retainful

4. check upto date code
svn up
Expand All @@ -17,5 +17,5 @@ svn stat
svn diff

6. Tagging New Version
svn cp trunk tags/2.6.13
svn ci -m "tagging version 2.6.13"
svn cp trunk tags/2.6.15
svn ci -m "tagging version 2.6.15"
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Requires at least: 4.0
Tested up to: 6.0
WC tested up to: 6.7
Requires PHP: 5.6
Stable tag: 2.6.13
Stable tag: 2.6.15
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -571,3 +571,9 @@ No. There is no charges for support.
- Fix: exit-intent after email success popup content
- Fix: fatal error, when order is not available
- Fix: same as billing notice

= 2.6.14 =
- Fix: composer autoload

= 2.6.15 =
- Added: Order update via Webhook
4 changes: 2 additions & 2 deletions retainful-next-order-coupon-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Recover abandoned carts and drive repeat purchases by sending single-use, unique coupon codes to customers for their next purchase
* Author: Retainful
* Author URI: https://www.retainful.com
* Version: 2.6.13
* Version: 2.6.15
* Slug: retainful-next-order-coupon-for-woocommerce
* Text Domain: retainful-next-order-coupon-for-woocommerce
* Domain Path: /i18n/languages/
Expand All @@ -30,7 +30,7 @@
* Current version of our app
*/
if (!defined('RNOC_VERSION'))
define('RNOC_VERSION', '2.6.13');
define('RNOC_VERSION', '2.6.15');
/**
* Set base file URL
*/
Expand Down
15 changes: 15 additions & 0 deletions retainful.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@ copy_folder(){
done
fi
}

remove_files(){
remove_path="vendor/jaybizzle/crawler-detect/";
remove_folder=("export.php")
if [ -d "$pack_compress_folder" ]
then
# shellcheck disable=SC2068
for dir in ${remove_folder[@]}
do
rm -r "$pack_compress_folder/$remove_path$dir"
done
fi
}

zip_folder(){
pack_folder_name="retainful-wordpress"
rm "$pack_folder_name".zip
Expand All @@ -41,6 +55,7 @@ zip_folder(){
}
composer_run
copy_folder
remove_files
zip_folder

echo "End"

0 comments on commit bc1a740

Please sign in to comment.