Skip to content

Commit

Permalink
V 2.8.4 Ready
Browse files Browse the repository at this point in the history
  • Loading branch information
varunsridharan committed Feb 12, 2022
1 parent 2f2ad99 commit 58e1eff
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion classmaps.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
// Last Updated: Fri 11-Feb-2022 | 11:31:27:am
// Last Updated: Sat 12-Feb-2022 | 07:00:37:am
// Total Class: 14

return array (
Expand Down
4 changes: 2 additions & 2 deletions i18n/wc-quick-buy.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the Quick Buy For WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Quick Buy For WooCommerce 2.8.23\n"
"Project-Id-Version: Quick Buy For WooCommerce 2.8.4\n"
"Report-Msgid-Bugs-To: https:\/\/wordpress.org\/support\/plugin\/woocommerce-quick-buy\n\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: varunsridharan23@gmail.com\n\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2022-02-11T11:31:28+05:30\n"
"POT-Creation-Date: 2022-02-12T07:00:38+05:30\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: wc-quick-buy\n"
Expand Down
4 changes: 2 additions & 2 deletions includes/class-button-placement.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function shop_page_button() {
'type' => 'link',
);
$instance = new Button_Generator( $args );
echo $instance->html();
echo wp_kses_post( $instance->html() );
}
}
}
Expand All @@ -105,7 +105,7 @@ public function single_product_page_button() {
if ( apply_filters( 'wc_quick_buy_allow_render_button', true, $product, true ) ) {
$args = array( 'product' => $product );
$instance = new Button_Generator( $args );
echo $instance->html();
echo wp_kses_post( $instance->html() );
}
}
}
8 changes: 7 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Plugin URL: https://wordpress.org/plugins/woocommerce-quick-buy/
**Donate link:** http://paypal.me/varunsridharan23
**Requires at least:** 3.0
**Tested up to:** 5.9
**Stable tag:** 2.8.3
**Stable tag:** 2.8.4
**Requires PHP:** 7.0
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -149,6 +149,12 @@ Please open an issue at <a href="https://github.com/varunsridharan/woocommerce-q
## Changelog


### 2.8.4 12/02/2022
* Updated : Filterd XSS attacks in Strings
* Tested : WordPress 5.9
* Tested : WooCommerce 6.2.0


### 2.8.3 11/02/2022
* Updated : Filterd XSS attacks in Strings
* Tested : WordPress 5.9
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tags: Woocommerce,wc,Quick buy,add to cart,affiliate, cart, checkout, commerce,
Donate link: http://paypal.me/varunsridharan23
Requires at least: 3.0
Tested up to: 5.9
Stable tag: 2.8.3
Stable tag: 2.8.4
Requires PHP: 7.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -129,6 +129,11 @@ Please open an issue at <a href="https://github.com/varunsridharan/woocommerce-q

== Changelog ==

= 2.8.4 12/02/2022 =
* Updated : Filterd XSS attacks in Strings
* Tested : WordPress 5.9
* Tested : WooCommerce 6.2.0

= 2.8.3 11/02/2022 =
* Updated : Filterd XSS attacks in Strings
* Tested : WordPress 5.9
Expand Down
4 changes: 2 additions & 2 deletions wc-quick-buy.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Quick Buy For WooCommerce
* Plugin URI: https://wordpress.org/plugins/woocommerce-quick-buy/
* Description: Add Quick buy button to redirect user to checkout / cart immediately when he click quick buy button
* Version: 2.8.23
* Version: 2.8.4
* Author: Varun Sridharan
* Author URI: http://varunsridharan.in
* Text Domain: wc-quick-buy
Expand All @@ -18,7 +18,7 @@
defined( 'ABSPATH' ) || exit;

defined( 'WCQB_FILE' ) || define( 'WCQB_FILE', __FILE__ );
defined( 'WCQB_VERSION' ) || define( 'WCQB_VERSION', '2.8.3' );
defined( 'WCQB_VERSION' ) || define( 'WCQB_VERSION', '2.8.4' );
defined( 'WCQB_NAME' ) || define( 'WCQB_NAME', __( 'Quick Buy For WooCommerce', 'wc-quick-buy' ) );

if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
Expand Down

0 comments on commit 58e1eff

Please sign in to comment.