Plugin Directory

Changeset 3459067


Ignore:
Timestamp:
02/11/2026 03:12:33 PM (6 weeks ago)
Author:
purposego
Message:

Release 2.0.5

Location:
clearpost-simple-ai-auto-post
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • clearpost-simple-ai-auto-post/tags/2.0.5/assets/js/onboarding-wizard.js

    r3459022 r3459067  
    214214            var $container = $('#saiap-wizard-competitor-urls');
    215215            var $addBtn = $('#saiap-wizard-add-competitor');
    216             var maxItems = 3;
     216            var maxItems = 10;
    217217
    218218            // Add new URL field
     
    382382                        if (index === 0) {
    383383                            $existingInputs.first().val(url);
    384                         } else if (index < 3) {
    385                             // Add new input for additional URLs (max 3)
     384                        } else if (index < 10) {
     385                            // Add new input for additional URLs (max 10)
    386386                            var $newItem = $('<div class="saiap-wizard__repeater-item">' +
    387387                                '<input type="url" name="competitor_urls[]" class="saiap-wizard__input saiap-wizard__repeater-input" value="' + url + '" />' +
  • clearpost-simple-ai-auto-post/tags/2.0.5/readme.txt

    r3459022 r3459067  
    44Requires at least: 5.0
    55Tested up to: 6.9
    6 Stable tag: 2.0.4
     6Stable tag: 2.0.5
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    229229
    230230== Changelog ==
     231
     232= 2.0.5 =
     233* Improved: Local SEO content now distributed evenly across your service locations.
     234* Improved: "Near me" keywords automatically converted to location-specific keywords for better local rankings.
     235* New: Localized content ratio adapts to your target locations (more locations = more local content).
     236* Improved: Onboarding wizard now allows up to 10 competitor URLs (previously 3).
    231237
    232238= 2.0.4 =
  • clearpost-simple-ai-auto-post/tags/2.0.5/simple-ai-auto-post.php

    r3459022 r3459067  
    44Description: Your AI Agent for SEO, in WordPress. An AI content marketer that knows your site, then schedules and generates posts every day.
    55Plugin URI: https://clearpostplugin.com/
    6 Version: 2.0.4
     6Version: 2.0.5
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1818
    1919// Define plugin version
    20 define( 'SAIAP_VERSION', '2.0.4' );
     20define( 'SAIAP_VERSION', '2.0.5' );
    2121
    2222// Define premium API URL
  • clearpost-simple-ai-auto-post/trunk/assets/js/onboarding-wizard.js

    r3459022 r3459067  
    214214            var $container = $('#saiap-wizard-competitor-urls');
    215215            var $addBtn = $('#saiap-wizard-add-competitor');
    216             var maxItems = 3;
     216            var maxItems = 10;
    217217
    218218            // Add new URL field
     
    382382                        if (index === 0) {
    383383                            $existingInputs.first().val(url);
    384                         } else if (index < 3) {
    385                             // Add new input for additional URLs (max 3)
     384                        } else if (index < 10) {
     385                            // Add new input for additional URLs (max 10)
    386386                            var $newItem = $('<div class="saiap-wizard__repeater-item">' +
    387387                                '<input type="url" name="competitor_urls[]" class="saiap-wizard__input saiap-wizard__repeater-input" value="' + url + '" />' +
  • clearpost-simple-ai-auto-post/trunk/readme.txt

    r3459022 r3459067  
    44Requires at least: 5.0
    55Tested up to: 6.9
    6 Stable tag: 2.0.4
     6Stable tag: 2.0.5
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    229229
    230230== Changelog ==
     231
     232= 2.0.5 =
     233* Improved: Local SEO content now distributed evenly across your service locations.
     234* Improved: "Near me" keywords automatically converted to location-specific keywords for better local rankings.
     235* New: Localized content ratio adapts to your target locations (more locations = more local content).
     236* Improved: Onboarding wizard now allows up to 10 competitor URLs (previously 3).
    231237
    232238= 2.0.4 =
  • clearpost-simple-ai-auto-post/trunk/simple-ai-auto-post.php

    r3459022 r3459067  
    44Description: Your AI Agent for SEO, in WordPress. An AI content marketer that knows your site, then schedules and generates posts every day.
    55Plugin URI: https://clearpostplugin.com/
    6 Version: 2.0.4
     6Version: 2.0.5
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1818
    1919// Define plugin version
    20 define( 'SAIAP_VERSION', '2.0.4' );
     20define( 'SAIAP_VERSION', '2.0.5' );
    2121
    2222// Define premium API URL
Note: See TracChangeset for help on using the changeset viewer.