Skip to content

Commit

Permalink
chore: bump version to 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
devAsadNur committed Dec 30, 2022
1 parent b3d7a55 commit 3efaef0
Show file tree
Hide file tree
Showing 14 changed files with 1,524 additions and 72 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
**Contributors:** [tareq1988](https://profiles.wordpress.org/tareq1988), [wedevs](https://profiles.wordpress.org/wedevs), [nizamuddinbabu](https://profiles.wordpress.org/nizamuddinbabu)
**Donate Link:** http://tareq.co/donate/
**Tags:** WooCommerce POS, point of sale, free pos, pos plugin, woocommerce point of sale
**Requires at least:** 4.4
**Tested up to:** 6.0.3
**WC requires at least:** 3.0
**WC tested up to:** 7.0.0
**Requires PHP:** 5.6
**Stable tag:** 1.2.5
**Requires at least:** 5.4
**Tested up to:** 6.1.1
**WC requires at least:** 5.0.0
**WC tested up to:** 7.2.2
**Requires PHP:** 7.2
**Stable tag:** 1.2.6
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -60,6 +60,12 @@ No FAQ

## Changelog ##

### v1.2.6 -> 30 December, 2022 ###
- **New:** Integrated Vue date range picker, select2 and Vue chart JS packages
- **New:** Added helper methods for getting day JS and date range picker date formats
- **New:** Added helper method for getting custom date ranges
- **Refactor:** Order created via wePOS setter

### v1.2.5 -> 02 November, 2022 ###
- **Feature:** "View POS" menu on "My Account" page
- **Enhancement:** Added all decimal separator support as per wooCommerce settings to put a discount or adding a fee from POS frontend
Expand Down
6 changes: 5 additions & 1 deletion assets/css/bootstrap.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/bootstrap.min.css

Large diffs are not rendered by default.

444 changes: 438 additions & 6 deletions assets/js/bootstrap.js

Large diffs are not rendered by default.

289 changes: 284 additions & 5 deletions assets/js/bootstrap.min.js

Large diffs are not rendered by default.

441 changes: 432 additions & 9 deletions assets/js/vendor.js

Large diffs are not rendered by default.

289 changes: 284 additions & 5 deletions assets/js/vendor.min.js

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
],
"minimum-stability": "dev",
"require": {
"appsero/client": "dev-master",
"php": ">=7.2",
"appsero/client": "dev-develop",
"ext-json": "*"
},
"require-dev": {
Expand All @@ -30,5 +31,13 @@
"phpcbf": [
"phpcbf -p"
]
},
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
57 changes: 35 additions & 22 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions languages/wepos.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# This file is distributed under the GPL2.
msgid ""
msgstr ""
"Project-Id-Version: wePOS - Point Of Sale (POS) for WooCommerce 1.2.5\n"
"Project-Id-Version: wePOS - Point Of Sale (POS) for WooCommerce 1.2.6\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wepos\n"
"POT-Creation-Date: 2022-11-02 09:28:03+00:00\n"
"POT-Creation-Date: 2022-12-30 09:08:57+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 @@ -434,7 +434,7 @@ msgstr ""
msgid "View POS"
msgstr ""

#: includes/Admin/Admin.php:99
#: includes/Admin/Admin.php:101
msgid "Is POS"
msgstr ""

Expand Down Expand Up @@ -549,7 +549,8 @@ msgstr ""
msgid "Payment collected via cash"
msgstr ""

#: includes/Gateways/Cash.php:104
#: includes/Gateways/Cash.php:107
#. translators: 1: Cash tendered amount 2: Cash change amount.
msgid "Cash tendered amount: %1$s, Change amount: %2$s"
msgstr ""

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wepos",
"version": "1.2.5",
"version": "1.2.6",
"description": "Point of Sale plugin for WooCommerce",
"author": "weDevs <info@wedevs.com>",
"license": "GPLv2",
Expand Down
18 changes: 12 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
Contributors: tareq1988, wedevs, nizamuddinbabu
Donate Link: http://tareq.co/donate/
Tags: WooCommerce POS, point of sale, free pos, pos plugin, woocommerce point of sale
Requires at least: 4.4
Tested up to: 6.0.3
WC requires at least: 3.0
WC tested up to: 7.0.0
Requires PHP: 5.6
Stable tag: 1.2.5
Requires at least: 5.4
Tested up to: 6.1.1
WC requires at least: 5.0.0
WC tested up to: 7.2.2
Requires PHP: 7.2
Stable tag: 1.2.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -60,6 +60,12 @@ No FAQ

== Changelog ==

= v1.2.6 -> 30th December, 2022 =
- **New:** Integrated Vue date range picker, select2 and Vue chart JS packages
- **New:** Added helper methods for getting day JS and date range picker date formats
- **New:** Added helper method for getting custom date ranges
- **Refactor:** Order created via wePOS setter

= v1.2.5 -> 1st November, 2022 =
- **Feature:** "View POS" menu on "My Account" page
- **Enhancement:** Added all decimal separator support as per wooCommerce settings to put a discount or adding a fee from POS frontend
Expand Down
8 changes: 4 additions & 4 deletions wepos.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
Plugin Name: wePOS - Point Of Sale (POS) for WooCommerce
Plugin URI: https://wedevs.com/wepos
Description: A beautiful and fast Point of Sale (POS) system for WooCommerce
Version: 1.2.5
Version: 1.2.6
Author: weDevs
Author URI: https://wedevs.com/
Text Domain: wepos
Domain Path: /languages
WC requires at least: 3.0
WC tested up to: 7.0.0
WC requires at least: 5.0.0
WC tested up to: 7.2.2
License: GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
Expand Down Expand Up @@ -57,7 +57,7 @@ final class WePOS {
*
* @var string
*/
public $version = '1.2.5';
public $version = '1.2.6';

/**
* Holds various class instances
Expand Down

0 comments on commit 3efaef0

Please sign in to comment.