Plugin Directory

Changeset 3466858


Ignore:
Timestamp:
02/22/2026 11:33:15 AM (5 weeks ago)
Author:
aamato
Message:

Release 1.2.7

Location:
spamanvil
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • spamanvil/tags/1.2.7/admin/views/settings-general.php

    r3466846 r3466858  
    9191            <?php endif; ?>
    9292        </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 ) ) : ?>
    9494            <div class="spamanvil-cron-status spamanvil-cron-stale">
    9595                <?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  
    66msgid ""
    77msgstr ""
    8 "Project-Id-Version: SpamAnvil 1.2.6\n"
     8"Project-Id-Version: SpamAnvil 1.2.7\n"
    99"Report-Msgid-Bugs-To: https://software.amato.com.br/spamanvil-antispam-"
    1010"plugin-for-wordpress/\n"
  • spamanvil/tags/1.2.7/readme.txt

    r3466854 r3466858  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 1.2.6
     8Stable tag: 1.2.7
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    215215== Changelog ==
    216216
    217 = 1.2.6 =
     217= 1.2.7 =
    218218* Feature: Cron now automatically scans pending WordPress comments when the queue is empty — no manual "Scan Pending" click needed
    219219* Fix: Comments stuck in "Max Retries" are now automatically retried after 1 hour instead of requiring manual intervention
    220220* 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 job
     221* Enhancement: DISABLE_WP_CRON warning only shown when cron is actually not running (no false alarm when a real server cron is configured)
    222222
    223223= 1.2.2 =
  • spamanvil/tags/1.2.7/spamanvil.php

    r3466854 r3466858  
    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.2.6
     6 * Version:           1.2.7
    77 * Requires at least: 5.8
    88 * Requires PHP:      7.4
     
    1919}
    2020
    21 define( 'SPAMANVIL_VERSION', '1.2.6' );
     21define( 'SPAMANVIL_VERSION', '1.2.7' );
    2222define( 'SPAMANVIL_DB_VERSION', '1.0.0' );
    2323define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ );
  • spamanvil/trunk/admin/views/settings-general.php

    r3466846 r3466858  
    9191            <?php endif; ?>
    9292        </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 ) ) : ?>
    9494            <div class="spamanvil-cron-status spamanvil-cron-stale">
    9595                <?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  
    66msgid ""
    77msgstr ""
    8 "Project-Id-Version: SpamAnvil 1.2.6\n"
     8"Project-Id-Version: SpamAnvil 1.2.7\n"
    99"Report-Msgid-Bugs-To: https://software.amato.com.br/spamanvil-antispam-"
    1010"plugin-for-wordpress/\n"
  • spamanvil/trunk/readme.txt

    r3466854 r3466858  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 1.2.6
     8Stable tag: 1.2.7
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    215215== Changelog ==
    216216
    217 = 1.2.6 =
     217= 1.2.7 =
    218218* Feature: Cron now automatically scans pending WordPress comments when the queue is empty — no manual "Scan Pending" click needed
    219219* Fix: Comments stuck in "Max Retries" are now automatically retried after 1 hour instead of requiring manual intervention
    220220* 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 job
     221* Enhancement: DISABLE_WP_CRON warning only shown when cron is actually not running (no false alarm when a real server cron is configured)
    222222
    223223= 1.2.2 =
  • spamanvil/trunk/spamanvil.php

    r3466854 r3466858  
    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.2.6
     6 * Version:           1.2.7
    77 * Requires at least: 5.8
    88 * Requires PHP:      7.4
     
    1919}
    2020
    21 define( 'SPAMANVIL_VERSION', '1.2.6' );
     21define( 'SPAMANVIL_VERSION', '1.2.7' );
    2222define( 'SPAMANVIL_DB_VERSION', '1.0.0' );
    2323define( 'SPAMANVIL_PLUGIN_FILE', __FILE__ );
Note: See TracChangeset for help on using the changeset viewer.