Plugin Directory

Changeset 3461481


Ignore:
Timestamp:
02/14/2026 07:21:25 PM (6 weeks ago)
Author:
aamato
Message:

Release 1.1.3 — Enable Process Queue button after Scan Pending

Location:
spamanvil
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • spamanvil/tags/1.1.3/admin/js/admin.js

    r3461369 r3461481  
    479479                            d.already_queued + ' already queued.'
    480480                        );
     481
     482                        // Enable "Process Queue Now" and update queued counter.
     483                        if (d.enqueued > 0) {
     484                            $('.spamanvil-process-queue-btn').prop('disabled', false);
     485                            var $queued = $('.spamanvil-status-grid .status-item').eq(0).find('.status-number');
     486                            var current = parseInt($queued.text(), 10) || 0;
     487                            $queued.text(current + d.enqueued);
     488                        }
    481489                    } else {
    482490                        $result.addClass('error').text(response.data);
  • spamanvil/tags/1.1.3/readme.txt

    r3461476 r3461481  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 1.1.2
     8Stable tag: 1.1.3
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    211211== Changelog ==
    212212
     213= 1.1.3 =
     214* Fix: "Process Queue Now" button is now enabled immediately after "Scan Pending Comments" enqueues items (no page reload needed)
     215* Enhancement: Queue counter updates in real-time after scanning
     216
    213217= 1.1.2 =
    214218* Feature: All-time "Spam Comments Blocked" hero banner on Statistics page with AI, heuristic, and IP blocking breakdown
  • spamanvil/tags/1.1.3/spamanvil.php

    r3461476 r3461481  
    44 * Plugin URI:        https://software.amato.com.br/spamanvil-antispam-plugin-for-wordpress/
    55 * Description:       Blocks comment spam using AI/LLM services with support for multiple providers, async processing, and intelligent heuristics.
    6  * Version:           1.1.2
     6 * Version:           1.1.3
    77 * Requires at least: 5.8
    88 * Requires PHP:      7.4
     
    1919}
    2020
    21 define( 'SPAMANVIL_VERSION', '1.1.2' );
     21define( 'SPAMANVIL_VERSION', '1.1.3' );
    2222define( 'SPAMANVIL_DB_VERSION', '1.0.0' );
    2323define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ );
  • spamanvil/trunk/admin/js/admin.js

    r3461369 r3461481  
    479479                            d.already_queued + ' already queued.'
    480480                        );
     481
     482                        // Enable "Process Queue Now" and update queued counter.
     483                        if (d.enqueued > 0) {
     484                            $('.spamanvil-process-queue-btn').prop('disabled', false);
     485                            var $queued = $('.spamanvil-status-grid .status-item').eq(0).find('.status-number');
     486                            var current = parseInt($queued.text(), 10) || 0;
     487                            $queued.text(current + d.enqueued);
     488                        }
    481489                    } else {
    482490                        $result.addClass('error').text(response.data);
  • spamanvil/trunk/readme.txt

    r3461476 r3461481  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 1.1.2
     8Stable tag: 1.1.3
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    211211== Changelog ==
    212212
     213= 1.1.3 =
     214* Fix: "Process Queue Now" button is now enabled immediately after "Scan Pending Comments" enqueues items (no page reload needed)
     215* Enhancement: Queue counter updates in real-time after scanning
     216
    213217= 1.1.2 =
    214218* Feature: All-time "Spam Comments Blocked" hero banner on Statistics page with AI, heuristic, and IP blocking breakdown
  • spamanvil/trunk/spamanvil.php

    r3461476 r3461481  
    44 * Plugin URI:        https://software.amato.com.br/spamanvil-antispam-plugin-for-wordpress/
    55 * Description:       Blocks comment spam using AI/LLM services with support for multiple providers, async processing, and intelligent heuristics.
    6  * Version:           1.1.2
     6 * Version:           1.1.3
    77 * Requires at least: 5.8
    88 * Requires PHP:      7.4
     
    1919}
    2020
    21 define( 'SPAMANVIL_VERSION', '1.1.2' );
     21define( 'SPAMANVIL_VERSION', '1.1.3' );
    2222define( 'SPAMANVIL_DB_VERSION', '1.0.0' );
    2323define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ );
Note: See TracChangeset for help on using the changeset viewer.