Changeset 3466846
- Timestamp:
- 02/22/2026 11:11:00 AM (5 weeks ago)
- Location:
- spamanvil
- Files:
-
- 10 edited
- 1 copied
-
tags/1.2.4 (copied) (copied from spamanvil/trunk)
-
tags/1.2.4/admin/views/settings-general.php (modified) (1 diff)
-
tags/1.2.4/languages/spamanvil-pt_BR.mo (modified) (previous)
-
tags/1.2.4/languages/spamanvil-pt_BR.po (modified) (2 diffs)
-
tags/1.2.4/readme.txt (modified) (2 diffs)
-
tags/1.2.4/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) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/spamanvil.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
spamanvil/tags/1.2.4/admin/views/settings-general.php
r3466819 r3466846 91 91 <?php endif; ?> 92 92 </div> 93 <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?> 94 <div class="spamanvil-cron-status spamanvil-cron-stale"> 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' ); ?> 96 <br><small> 97 <?php 98 printf( 99 /* translators: %s: the WP-Cron URL example */ 100 esc_html__( 'Add a cron job that calls %s every 5 minutes.', 'spamanvil' ), 101 '<code>wget -q -O /dev/null ' . esc_html( site_url( '/wp-cron.php' ) ) . '</code>' 102 ); 103 ?> 104 </small> 105 </div> 106 <?php endif; ?> 93 107 <?php $total_actionable = $queue_status['queued'] + $queue_status['failed'] + $queue_status['max_retries']; ?> 94 108 <p> -
spamanvil/tags/1.2.4/languages/spamanvil-pt_BR.po
r3466837 r3466846 6 6 msgid "" 7 7 msgstr "" 8 "Project-Id-Version: SpamAnvil 1.2. 3\n"8 "Project-Id-Version: SpamAnvil 1.2.4\n" 9 9 "Report-Msgid-Bugs-To: https://software.amato.com.br/spamanvil-antispam-" 10 10 "plugin-for-wordpress/\n" … … 167 167 msgstr "Conexão bem-sucedida!" 168 168 169 msgid "" 170 "DISABLE_WP_CRON is enabled in wp-config.php. Automatic queue processing and " 171 "pending comment scanning will not work unless you set up a real server cron " 172 "job." 173 msgstr "" 174 "DISABLE_WP_CRON está ativado no wp-config.php. O processamento automático da " 175 "fila e a varredura de comentários pendentes não funcionarão a menos que você " 176 "configure um cron job real no servidor." 177 178 #, php-format 179 msgid "Add a cron job that calls %s every 5 minutes." 180 msgstr "Adicione um cron job que chame %s a cada 5 minutos." 181 169 182 #, php-format 170 183 msgid "Current key: %s (leave blank to keep current key)" -
spamanvil/tags/1.2.4/readme.txt
r3466837 r3466846 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.2. 38 Stable tag: 1.2.4 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. 3=217 = 1.2.4 = 218 218 * Feature: Cron now automatically scans pending WordPress comments when the queue is empty — no manual "Scan Pending" click needed 219 * Enhancement: Warning displayed when DISABLE_WP_CRON is active, with instructions to set up a real server cron job 219 220 220 221 = 1.2.2 = -
spamanvil/tags/1.2.4/spamanvil.php
r3466837 r3466846 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. 36 * Version: 1.2.4 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'SPAMANVIL_VERSION', '1.2. 3' );21 define( 'SPAMANVIL_VERSION', '1.2.4' ); 22 22 define( 'SPAMANVIL_DB_VERSION', '1.0.0' ); 23 23 define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ ); -
spamanvil/trunk/admin/views/settings-general.php
r3466819 r3466846 91 91 <?php endif; ?> 92 92 </div> 93 <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?> 94 <div class="spamanvil-cron-status spamanvil-cron-stale"> 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' ); ?> 96 <br><small> 97 <?php 98 printf( 99 /* translators: %s: the WP-Cron URL example */ 100 esc_html__( 'Add a cron job that calls %s every 5 minutes.', 'spamanvil' ), 101 '<code>wget -q -O /dev/null ' . esc_html( site_url( '/wp-cron.php' ) ) . '</code>' 102 ); 103 ?> 104 </small> 105 </div> 106 <?php endif; ?> 93 107 <?php $total_actionable = $queue_status['queued'] + $queue_status['failed'] + $queue_status['max_retries']; ?> 94 108 <p> -
spamanvil/trunk/languages/spamanvil-pt_BR.po
r3466837 r3466846 6 6 msgid "" 7 7 msgstr "" 8 "Project-Id-Version: SpamAnvil 1.2. 3\n"8 "Project-Id-Version: SpamAnvil 1.2.4\n" 9 9 "Report-Msgid-Bugs-To: https://software.amato.com.br/spamanvil-antispam-" 10 10 "plugin-for-wordpress/\n" … … 167 167 msgstr "Conexão bem-sucedida!" 168 168 169 msgid "" 170 "DISABLE_WP_CRON is enabled in wp-config.php. Automatic queue processing and " 171 "pending comment scanning will not work unless you set up a real server cron " 172 "job." 173 msgstr "" 174 "DISABLE_WP_CRON está ativado no wp-config.php. O processamento automático da " 175 "fila e a varredura de comentários pendentes não funcionarão a menos que você " 176 "configure um cron job real no servidor." 177 178 #, php-format 179 msgid "Add a cron job that calls %s every 5 minutes." 180 msgstr "Adicione um cron job que chame %s a cada 5 minutos." 181 169 182 #, php-format 170 183 msgid "Current key: %s (leave blank to keep current key)" -
spamanvil/trunk/readme.txt
r3466837 r3466846 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.2. 38 Stable tag: 1.2.4 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. 3=217 = 1.2.4 = 218 218 * Feature: Cron now automatically scans pending WordPress comments when the queue is empty — no manual "Scan Pending" click needed 219 * Enhancement: Warning displayed when DISABLE_WP_CRON is active, with instructions to set up a real server cron job 219 220 220 221 = 1.2.2 = -
spamanvil/trunk/spamanvil.php
r3466837 r3466846 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. 36 * Version: 1.2.4 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'SPAMANVIL_VERSION', '1.2. 3' );21 define( 'SPAMANVIL_VERSION', '1.2.4' ); 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.