Plugin Directory

Changeset 3111055


Ignore:
Timestamp:
07/02/2024 10:34:46 AM (21 months ago)
Author:
writetextai
Message:

minor text update

Location:
writetext-ai
Files:
247 added
4 edited

Legend:

Unmodified
Added
Removed
  • writetext-ai/trunk/CHANGELOG.md

    r3111012 r3111055  
    99The format is based on [Keep a Changelog](http://keepachangelog.com/)
    1010and this project adheres to [Semantic Versioning](http://semver.org/).
     11
     12## [1.30.4] - 2024-07-02
     13
     14### Fixed
     15
     16- Fix for competitor keyword displaying an empty as of date in the help text message.
    1117
    1218## [1.30.3] - 2024-07-02
  • writetext-ai/trunk/assets/js/admin-installed.js

    r3111012 r3111055  
    1635916359            } else {
    1636016360                var empty_competitor_message = WTAI_OBJ.emptyCompetitorMessage;
    16361                 if ( data.result['done_analysis'] == '1' ) {
     16361                if ( data.result['done_analysis'] == '1' && data.result['competitor_last_date_retrieval'] != '' ) {
    1636216362                    empty_competitor_message = WTAI_OBJ.emptyCompetitorMessageWithAnalysis;
    1636316363                    empty_competitor_message = empty_competitor_message.replace("%s", data.result['competitor_last_date_retrieval']);
  • writetext-ai/trunk/readme.txt

    r3111012 r3111055  
    55Requires at least: 6.0
    66Tested up to: 6.5.2
    7 Stable tag: 1.30.3
     7Stable tag: 1.30.4
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    157157
    158158== Changelog ==
     159
     160= 1.30.4 2024-07-02 =
     161
     162* Fix - Fix for competitor keyword displaying an empty as of date in the help text message.
    159163
    160164= 1.30.3 2024-07-02 =
     
    582586== Upgrade Notice ==
    583587
    584 = 1.30.3 =
     588= 1.30.4 =
    585589
    586590Please upgrade, to ensure all plugin features works as expected.
  • writetext-ai/trunk/writetext-ai.php

    r3111012 r3111055  
    44 * Plugin URI: https://writetext.ai/woocommerce
    55 * Description: Let AI automatically generate product descriptions and other content from your product data.
    6  * Version: 1.30.3
     6 * Version: 1.30.4
    77 * Author:  1902 Software
    88 * Author URI: https://writetext.ai/
     
    5656
    5757    if ( ! defined( 'WTAI_VERSION' ) ) {
    58         define( 'WTAI_VERSION', '1.30.3' );
     58        define( 'WTAI_VERSION', '1.30.4' );
    5959    }
    6060
Note: See TracChangeset for help on using the changeset viewer.