Changeset 3461481
- Timestamp:
- 02/14/2026 07:21:25 PM (6 weeks ago)
- Location:
- spamanvil
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.3 (copied) (copied from spamanvil/trunk)
-
tags/1.1.3/admin/js/admin.js (modified) (1 diff)
-
tags/1.1.3/readme.txt (modified) (2 diffs)
-
tags/1.1.3/spamanvil.php (modified) (2 diffs)
-
trunk/admin/js/admin.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/spamanvil.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
spamanvil/tags/1.1.3/admin/js/admin.js
r3461369 r3461481 479 479 d.already_queued + ' already queued.' 480 480 ); 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 } 481 489 } else { 482 490 $result.addClass('error').text(response.data); -
spamanvil/tags/1.1.3/readme.txt
r3461476 r3461481 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 28 Stable tag: 1.1.3 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 211 211 == Changelog == 212 212 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 213 217 = 1.1.2 = 214 218 * 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 4 4 * Plugin URI: https://software.amato.com.br/spamanvil-antispam-plugin-for-wordpress/ 5 5 * Description: Blocks comment spam using AI/LLM services with support for multiple providers, async processing, and intelligent heuristics. 6 * Version: 1.1. 26 * Version: 1.1.3 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'SPAMANVIL_VERSION', '1.1. 2' );21 define( 'SPAMANVIL_VERSION', '1.1.3' ); 22 22 define( 'SPAMANVIL_DB_VERSION', '1.0.0' ); 23 23 define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ ); -
spamanvil/trunk/admin/js/admin.js
r3461369 r3461481 479 479 d.already_queued + ' already queued.' 480 480 ); 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 } 481 489 } else { 482 490 $result.addClass('error').text(response.data); -
spamanvil/trunk/readme.txt
r3461476 r3461481 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 28 Stable tag: 1.1.3 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 211 211 == Changelog == 212 212 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 213 217 = 1.1.2 = 214 218 * Feature: All-time "Spam Comments Blocked" hero banner on Statistics page with AI, heuristic, and IP blocking breakdown -
spamanvil/trunk/spamanvil.php
r3461476 r3461481 4 4 * Plugin URI: https://software.amato.com.br/spamanvil-antispam-plugin-for-wordpress/ 5 5 * Description: Blocks comment spam using AI/LLM services with support for multiple providers, async processing, and intelligent heuristics. 6 * Version: 1.1. 26 * Version: 1.1.3 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'SPAMANVIL_VERSION', '1.1. 2' );21 define( 'SPAMANVIL_VERSION', '1.1.3' ); 22 22 define( 'SPAMANVIL_DB_VERSION', '1.0.0' ); 23 23 define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ );
Note: See TracChangeset
for help on using the changeset viewer.