Skip to content

Commit

Permalink
feat: release 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Kobzarev committed Sep 8, 2024
1 parent 08d96de commit 374075a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
9 changes: 5 additions & 4 deletions assets/js/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
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.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
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions recrawler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -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' );
Expand Down

0 comments on commit 374075a

Please sign in to comment.