From 374075ae88b1eb6c1f6f60183a1c8e20c4a15e4b Mon Sep 17 00:00:00 2001 From: Mikhail Kobzarev Date: Mon, 9 Sep 2024 00:58:18 +0300 Subject: [PATCH] feat: release 0.1.5 --- assets/js/admin.js | 9 +++++---- readme.txt | 5 ++++- recrawler.php | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/assets/js/admin.js b/assets/js/admin.js index cd7c154..6ee09c5 100644 --- a/assets/js/admin.js +++ b/assets/js/admin.js @@ -56,13 +56,14 @@ jQuery( document ).ready( function( $ ) { }); }); - if ( '' != active_tab && $( active_tab + '-tab' ).length ) { + if ( '' !== active_tab && $( active_tab + '-tab' ).length ) { $( active_tab + '-tab' ).addClass( 'nav-tab-active' ); } else { - $( '.nav-tab-wrapper a:first' ).addClass( 'nav-tab-active' ); + $( '.wposa .nav-tab-wrapper a:first' ).addClass( 'nav-tab-active' ); } - $( '.nav-tab-wrapper a' ).click( function( evt ) { - $( '.nav-tab-wrapper a' ).removeClass( 'nav-tab-active' ); + + $( '.wposa .nav-tab-wrapper a' ).click( function( evt ) { + $( '.wposa .nav-tab-wrapper a' ).removeClass( 'nav-tab-active' ); $( this ) .addClass( 'nav-tab-active' ) .blur(); diff --git a/readme.txt b/readme.txt index 816a187..def493c 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://www.kobzarev.com/donate/ Tags: indexnow, yandex, bing, google, seo Requires at least: 6.0 Tested up to: 6.6 -Stable tag: 0.1.4 +Stable tag: 0.1.5 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -150,6 +150,9 @@ See the documentation available from each search engine for more details about R == Changelog == += 0.1.5 (09.09.2024) = +* Fixed integration bug with "LuckyWP Table of Contents" plugin + = 0.1.4 (31.08.2024) = * Fixed tab switching bug diff --git a/recrawler.php b/recrawler.php index 91d73bd..dcf9c27 100644 --- a/recrawler.php +++ b/recrawler.php @@ -2,7 +2,7 @@ /** * Plugin Name: ReCrawler * Description: ReCrawler is a small WordPress Plugin for quickly notifying search engines whenever their website content is created, updated, or deleted. - * Version: 0.1.4 + * Version: 0.1.5 * Author: Mikhail Kobzarev * Author URI: https://www.kobzarev.com/ * Plugin URI: https://wordpress.org/plugins/recrawler/ @@ -22,7 +22,7 @@ exit; } -define( 'RECRAWLER_VERSION', '0.1.4' ); +define( 'RECRAWLER_VERSION', '0.1.5' ); define( 'RECRAWLER_SLUG', 'recrawler' ); define( 'RECRAWLER_PREFIX', 'recrawler' ); define( 'RECRAWLER_NAME', 'ReCrawler' );