Skip to content

Commit

Permalink
tagging release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
viscosho committed Aug 7, 2019
1 parent 3b1f4fd commit c489651
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: lsx, gutenberg, banner hero images, hero image block, hero image plugin
Requires at least: 4.9
Tested up to: 5.2.2
Requires PHP: 7.0
Stable tag: 1.2.0
Stable tag: 1.2.1
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html

Expand Down
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### 1.2.1 -
* Fix - Fixed the post type archive titles
* Fix - Fixed the taxonomy admin class.
* Dev - Blog improvements to match new structure for the LSX Blog Customizer.

### 1.2.0 - 19th June 2019
* Dev - Added in a theme option to allow enabling banners on the events page
Expand Down
2 changes: 1 addition & 1 deletion classes/class-lsx-banners-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function add_taxonomies( $taxonomies ) {

if ( false !== $taxonomies && is_array( $taxonomies ) ) {
$taxonomies = array_merge( $taxonomies, $allowed_taxonomies );
} elseif( is_array( $allowed_taxonomies ) ) {
} elseif ( is_array( $allowed_taxonomies ) ) {
$taxonomies = $allowed_taxonomies;
}
}
Expand Down
4 changes: 2 additions & 2 deletions lsx-banners.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: LSX Banners
* Plugin URI: https://lsx.lsdev.biz/extensions/banners/
* Description: The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.
* Version: 1.2.0
* Version: 1.2.1
* Author: LightSpeed
* Author URI: https://www.lsdev.biz/
* License: GPL3
Expand All @@ -20,7 +20,7 @@
define( 'LSX_BANNERS_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_BANNERS_CORE', __FILE__ );
define( 'LSX_BANNERS_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_BANNERS_VER', '1.1.7' );
define( 'LSX_BANNERS_VER', '1.2.1' );

if ( ! function_exists( 'cmb_init' ) && is_file( LSX_BANNERS_PATH . 'vendor/Custom-Meta-Boxes/custom-meta-boxes.php' ) && ! defined( 'LSX_BANNER_DISABLE_CMB' ) ) {
require LSX_BANNERS_PATH . 'vendor/Custom-Meta-Boxes/custom-meta-boxes.php';
Expand Down
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ We offer premium support for this plugin. Premium support that can be purchased

If you are experiencing issues with the LSX Banners Plugin & have experience with Github, please log any bug issues you are having on the [LSX Banners Github Issues](https://github.com/lightspeeddevelopment/lsx-banners/issues/) page.

You can also send an email to our Support Team at [[email protected]](mailto:[email protected]) if you have a request for the LightSpeed Development team.

## Contributing to the LSX Banners Plugin

If you're a developer who's spotted a bug issue and have a fix, or simply have functionality you think would extend our core theme, we are always happy to accept your contribution! Visit the [LSX Banners Plugin on Github](https://github.com/lightspeeddevelopment/lsx-banners/) and submit a Pull Request with your updates.
If you're a developer who's spotted a bug issue and have a fix, or simply have functionality you think would extend our core theme, we are always happy to accept your contribution! Visit the [LSX Banners Plugin on Github](https://github.com/lightspeeddevelopment/lsx-banners/) and submit a Pull Request with your updates.

0 comments on commit c489651

Please sign in to comment.