Changeset 3466858
- Timestamp:
- 02/22/2026 11:33:15 AM (5 weeks ago)
- Location:
- spamanvil
- Files:
-
- 10 edited
- 1 copied
-
tags/1.2.7 (copied) (copied from spamanvil/trunk)
-
tags/1.2.7/admin/views/settings-general.php (modified) (1 diff)
-
tags/1.2.7/languages/spamanvil-pt_BR.mo (modified) (previous)
-
tags/1.2.7/languages/spamanvil-pt_BR.po (modified) (1 diff)
-
tags/1.2.7/readme.txt (modified) (2 diffs)
-
tags/1.2.7/spamanvil.php (modified) (2 diffs)
-
trunk/admin/views/settings-general.php (modified) (1 diff)
-
trunk/languages/spamanvil-pt_BR.mo (modified) (previous)
-
trunk/languages/spamanvil-pt_BR.po (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/spamanvil.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
spamanvil/tags/1.2.7/admin/views/settings-general.php
r3466846 r3466858 91 91 <?php endif; ?> 92 92 </div> 93 <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>93 <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON && ( ! $last_cron_run || $cron_stale ) ) : ?> 94 94 <div class="spamanvil-cron-status spamanvil-cron-stale"> 95 95 <?php esc_html_e( 'DISABLE_WP_CRON is enabled in wp-config.php. Automatic queue processing and pending comment scanning will not work unless you set up a real server cron job.', 'spamanvil' ); ?> -
spamanvil/tags/1.2.7/languages/spamanvil-pt_BR.po
r3466854 r3466858 6 6 msgid "" 7 7 msgstr "" 8 "Project-Id-Version: SpamAnvil 1.2. 6\n"8 "Project-Id-Version: SpamAnvil 1.2.7\n" 9 9 "Report-Msgid-Bugs-To: https://software.amato.com.br/spamanvil-antispam-" 10 10 "plugin-for-wordpress/\n" -
spamanvil/tags/1.2.7/readme.txt
r3466854 r3466858 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.2. 68 Stable tag: 1.2.7 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 215 215 == Changelog == 216 216 217 = 1.2. 6=217 = 1.2.7 = 218 218 * Feature: Cron now automatically scans pending WordPress comments when the queue is empty — no manual "Scan Pending" click needed 219 219 * Fix: Comments stuck in "Max Retries" are now automatically retried after 1 hour instead of requiring manual intervention 220 220 * Enhancement: Provider dropdowns only show providers with a configured API key — prevents selecting unconfigured providers 221 * Enhancement: Warning displayed when DISABLE_WP_CRON is active, with instructions to set up a real server cron job221 * Enhancement: DISABLE_WP_CRON warning only shown when cron is actually not running (no false alarm when a real server cron is configured) 222 222 223 223 = 1.2.2 = -
spamanvil/tags/1.2.7/spamanvil.php
r3466854 r3466858 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.2. 66 * Version: 1.2.7 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'SPAMANVIL_VERSION', '1.2. 6' );21 define( 'SPAMANVIL_VERSION', '1.2.7' ); 22 22 define( 'SPAMANVIL_DB_VERSION', '1.0.0' ); 23 23 define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ ); -
spamanvil/trunk/admin/views/settings-general.php
r3466846 r3466858 91 91 <?php endif; ?> 92 92 </div> 93 <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>93 <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON && ( ! $last_cron_run || $cron_stale ) ) : ?> 94 94 <div class="spamanvil-cron-status spamanvil-cron-stale"> 95 95 <?php esc_html_e( 'DISABLE_WP_CRON is enabled in wp-config.php. Automatic queue processing and pending comment scanning will not work unless you set up a real server cron job.', 'spamanvil' ); ?> -
spamanvil/trunk/languages/spamanvil-pt_BR.po
r3466854 r3466858 6 6 msgid "" 7 7 msgstr "" 8 "Project-Id-Version: SpamAnvil 1.2. 6\n"8 "Project-Id-Version: SpamAnvil 1.2.7\n" 9 9 "Report-Msgid-Bugs-To: https://software.amato.com.br/spamanvil-antispam-" 10 10 "plugin-for-wordpress/\n" -
spamanvil/trunk/readme.txt
r3466854 r3466858 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.2. 68 Stable tag: 1.2.7 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 215 215 == Changelog == 216 216 217 = 1.2. 6=217 = 1.2.7 = 218 218 * Feature: Cron now automatically scans pending WordPress comments when the queue is empty — no manual "Scan Pending" click needed 219 219 * Fix: Comments stuck in "Max Retries" are now automatically retried after 1 hour instead of requiring manual intervention 220 220 * Enhancement: Provider dropdowns only show providers with a configured API key — prevents selecting unconfigured providers 221 * Enhancement: Warning displayed when DISABLE_WP_CRON is active, with instructions to set up a real server cron job221 * Enhancement: DISABLE_WP_CRON warning only shown when cron is actually not running (no false alarm when a real server cron is configured) 222 222 223 223 = 1.2.2 = -
spamanvil/trunk/spamanvil.php
r3466854 r3466858 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.2. 66 * Version: 1.2.7 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'SPAMANVIL_VERSION', '1.2. 6' );21 define( 'SPAMANVIL_VERSION', '1.2.7' ); 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.