Skip to content

Commit

Permalink
Merge pull request #104 from brainstormforce/wp6.3
Browse files Browse the repository at this point in the history
WordPress 6.3 compatibility
  • Loading branch information
vrundakansara authored Aug 17, 2023
2 parents 8e3ff29 + 5aa0248 commit 71206f5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**Tags:** beaver builder, beaver builder free, beaver addons, beaver builder addon, beaver builder add ons, beaver builder lite, beaver builder modules, beaver builder addons, beaver builder extensions, beaver addon, beaver builder plugin, beaver builder wordpress
**Requires at least:** 4.6
**Tested up to:** 6.2
**Stable tag:** 1.5.6
**Stable tag:** 1.5.7
**License:** GPLv2 or later
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -22,7 +22,6 @@ With the Ultimate Addons for Beaver Builder, we took the pain out of the website

The Ultimate Addons for Beaver Builder, free up your time from all the complex website development process with easy to use drag and drop modules and templates that make the process quick and easy.


[Try it out on a free dummy site](https://bsf.io/uabb-lite-demo)

<blockquote><strong>Ultimate Addons Pro &amp; Premium Support: </strong>
Expand Down Expand Up @@ -216,10 +215,13 @@ Yes it is! This plugin comes with .po and .mo files. It is already translated in

## Changelog ##

### 1.5.7 ###
* Improvement: Compatibility with WordPress 6.3.

### 1.5.6 ###
* Security - Added nonce check to refresh cloud templates.

## 1.5.5 ###
### 1.5.5 ###
* Security - Added nonce check to reload icon action.

### 1.5.4 ###
Expand Down Expand Up @@ -304,4 +306,4 @@ Yes it is! This plugin comes with .po and .mo files. It is already translated in
- [Bowser JS](https://github.com/lancedikson/bowser) is distributed under the terms of the MIT License.
- [JQuery LazyLoad](https://github.com/tuupola/lazyload) is distributed under the terms of the MIT License.
- [JQuery Shuffle](https://github.com/Vestride/Shuffle) is distributed under the terms of the MIT License.
- [JQuery throttle / debounce](http://benalman.com/projects/jquery-throttle-debounce-plugin/) is distributed under the terms of the MIT and GNU General Public License v2.0.
- [JQuery throttle / debounce](http://benalman.com/projects/jquery-throttle-debounce-plugin/) is distributed under the terms of the MIT and GNU General Public License v2.0.
4 changes: 2 additions & 2 deletions bb-ultimate-addon.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Ultimate Addons for Beaver Builder - Lite
* Plugin URI: http://www.ultimatebeaver.com/
* Description: Ultimate Addons is a free extension for Beaver Builder that adds 10 modules, and works on top of any Beaver Builder Package. (Free, Standard, Pro & Agency) You can use it with on any WordPress theme.
* Version: 1.5.6
* Version: 1.5.7
* Author: Brainstorm Force
* Author URI: http://www.brainstormforce.com
* Text Domain: uabb
Expand All @@ -18,7 +18,7 @@

define( 'BB_ULTIMATE_ADDON_DIR', plugin_dir_path( __FILE__ ) );
define( 'BB_ULTIMATE_ADDON_URL', plugins_url( '/', __FILE__ ) );
define( 'BB_ULTIMATE_ADDON_LITE_VERSION', '1.5.6' );
define( 'BB_ULTIMATE_ADDON_LITE_VERSION', '1.5.7' );
define( 'BSF_REMOVE_UABB_FROM_REGISTRATION_LISTING', true );
define( 'BB_ULTIMATE_ADDON_FILE', trailingslashit( dirname( __FILE__ ) ) . 'bb-ultimate-addon.php' );// @codingStandardsIgnoreLine.
define( 'BB_ULTIMATE_ADDON_LITE', true );
Expand Down
2 changes: 1 addition & 1 deletion modules/advanced-icon/includes/frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
if ( ! empty( $icon->connections->link ) && empty( $icon->link ) && ! FLBuilderModel::is_builder_active() ) {
echo '';
} else {
echo '<a class="adv-icon-link adv-icon-' . esc_attr( $icon_count ) . '" href="' . $icon->link . '" target="' . esc_attr( $icon->link_target ) . '" ' . wp_kses_post( BB_Ultimate_Addon_Helper::get_link_rel( $icon->link_target, $icon->link_nofollow, 0 ) ) . '>'; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '<a class="adv-icon-link adv-icon-' . esc_attr( $icon_count ) . '" href="' . $icon->link . '" target="' . esc_attr( $icon->link_target ) . '" ' . sanitize_text_field( BB_Ultimate_Addon_Helper::get_link_rel( $icon->link_target, $icon->link_nofollow, 0 ) ) . '>'; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$imageicon_array = array(

/* General Section */
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/BrainstormForce
Tags: beaver builder, beaver builder free, beaver addons, beaver builder addon, beaver builder add ons, beaver builder lite, beaver builder modules, beaver builder addons, beaver builder extensions, beaver addon, beaver builder plugin, beaver builder wordpress
Requires at least: 4.6
Tested up to: 6.2
Stable tag: 1.5.6
Stable tag: 1.5.7
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -215,6 +215,9 @@ Yes it is! This plugin comes with .po and .mo files. It is already translated in

== Changelog ==

= 1.5.7 =
* Improvement: Compatibility with WordPress 6.3.

= 1.5.6 =
* Security - Added nonce check to refresh cloud templates.

Expand Down

0 comments on commit 71206f5

Please sign in to comment.