diff --git a/README.md b/README.md index 95ce9d1..634c9ae 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ If you're a developer who's spotted a bug issue and have a fix, or simply have f ## Changelog +### 1.2.2 +* Dev - Added in a parameter to the widget args, to allow widget template to know when it is a menu loading it. + ### 1.2.1 * Dev - Adding full width style when option is active. * Dev - Added in a shortcode option to link the widget titles. diff --git a/README.txt b/README.txt index f6ca9f7..23e2af8 100644 --- a/README.txt +++ b/README.txt @@ -5,7 +5,7 @@ Tags: lsx, Gutenberg, mega menu, wordpress blocks, navigation Requires at least: 4.9 Tested up to: 5.2.2 Requires PHP: 7.0 -Stable tag: 1.2.1 +Stable tag: 1.2.2 License: GPLv3 Go from mundane to mega with the [LSX Mega Menus Extension](https://lsx.lsdev.biz/extensions/mega-menus/) extension. Create beautiful full-width menu dropdowns that contain dynamic content such as images, icons, videos, and widget areas.It has a familiar drag and drop interface, and menu items that can easily be resized and reordered. It also allows you to preview before you publish. @@ -41,6 +41,9 @@ If you're a developer who's spotted a bug issue and have a fix, or simply have f ## Changelog +### 1.2.2 +* Dev - Added in a parameter to the widget args, to allow widget template to know when it is a menu loading it. + ### 1.2 * Dev - Cleaned up Code diff --git a/changelog.txt b/changelog.txt index 0efbc89..20ebf1b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ ## Changelog -### 1.2.2 (in development) +### 1.2.2 - September 27 * Dev - Added in a parameter to the widget args, to allow widget template to know when it is a menu loading it. ### 1.2.1 diff --git a/lsx-mega-menus.php b/lsx-mega-menus.php index c04acc3..167c2f9 100644 --- a/lsx-mega-menus.php +++ b/lsx-mega-menus.php @@ -3,7 +3,7 @@ * Plugin Name: LSX Mega Menus * Plugin URI: https://www.lsdev.biz/product/lsx-mega-menus/ * Description: Create custom, full-width dropdown menus that contain images, widgets and more that seamlessly tie into your LSX WordPress site. - * Version: 1.2.1 + * Version: 1.2.2 * Author: LightSpeed * Author URI: https://www.lsdev.biz/ * License: GPL3 @@ -59,7 +59,7 @@ public function __construct() { $this->token = 'lsx-mega-menus'; $this->plugin_url = plugin_dir_url( __FILE__ ); $this->plugin_path = plugin_dir_path( __FILE__ ); - $this->version = '1.2.1'; + $this->version = '1.2.2'; // Register activation hook. register_activation_hook( __FILE__, array( $this, 'install' ) );