Plugin Directory

Changeset 3468786


Ignore:
Timestamp:
02/24/2026 05:00:44 PM (12 days ago)
Author:
alttextai
Message:

Update to version 1.10.29 from GitHub

Location:
alttext-ai
Files:
2 deleted
9 edited
1 copied

Legend:

Unmodified
Added
Removed
  • alttext-ai/assets/screenshot-5.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • alttext-ai/tags/1.10.29/README.txt

    r3466888 r3468786  
    66Requires at least: 4.7
    77Tested up to: 6.9
    8 Stable tag: 1.10.28
     8Stable tag: 1.10.29
    99WC requires at least: 3.3
    1010WC tested up to: 10.1
     
    7171
    7272== Changelog ==
     73
     74= 1.10.29 - 2026-02-24 =
     75* Improved: Plugin version now included in API requests
    7376
    7477= 1.10.28 - 2026-02-22 =
  • alttext-ai/tags/1.10.29/atai.php

    r3466888 r3468786  
    1616 * Plugin URI:        https://alttext.ai/product
    1717 * Description:       Automatically generate image alt text with AltText.ai.
    18  * Version:           1.10.28
     18 * Version:           1.10.29
    1919 * Author:            AltText.ai
    2020 * Author URI:        https://alttext.ai
     
    3434 * Current plugin version.
    3535 */
    36 define( 'ATAI_VERSION', '1.10.28' );
     36define( 'ATAI_VERSION', '1.10.29' );
    3737
    3838/**
  • alttext-ai/tags/1.10.29/changelog.txt

    r3466692 r3468786  
    11*** AltText.ai Changelog ***
    22
    3 2026-02-20 - version 1.10.25
    4 * NEW: Network Bulk Generate for WordPress Multisite — manage alt text across all your subsites from one central Network Admin dashboard
    5 * NEW: WP-CLI `wp alttext enrich` command — generate alt text for images embedded in posts and pages directly from the command line
    6 * NEW: WP-CLI `wp alttext import` command — import alt text in bulk from AltText.ai CSV exports via the command line
    7 * Fixed: Alt text updates in the Media Library now sync correctly into Elementor image modals without requiring images to be re-added
     32026-02-24 - version 1.10.29
     4* Improved: Plugin version now included in API requests
    85
    962026-02-17 - version 1.10.22
  • alttext-ai/tags/1.10.29/includes/class-atai-api.php

    r3466692 r3468786  
    6464        'headers'       => array(
    6565          'Content-Type'  => 'application/json',
    66           'X-Api-Key'     => $this->api_key
     66          'X-Api-Key'     => $this->api_key,
     67          'X-Client'      => 'wordpress/' . ATAI_VERSION
    6768        )
    6869      )
     
    174175        'headers'       => array(
    175176          'Content-Type'  => 'application/json',
    176           'X-Api-Key'     => $this->api_key
     177          'X-Api-Key'     => $this->api_key,
     178          'X-Client'      => 'wordpress/' . ATAI_VERSION
    177179        ),
    178180        'timeout' => $timeout_secs,
  • alttext-ai/trunk/README.txt

    r3466888 r3468786  
    66Requires at least: 4.7
    77Tested up to: 6.9
    8 Stable tag: 1.10.28
     8Stable tag: 1.10.29
    99WC requires at least: 3.3
    1010WC tested up to: 10.1
     
    7171
    7272== Changelog ==
     73
     74= 1.10.29 - 2026-02-24 =
     75* Improved: Plugin version now included in API requests
    7376
    7477= 1.10.28 - 2026-02-22 =
  • alttext-ai/trunk/atai.php

    r3466888 r3468786  
    1616 * Plugin URI:        https://alttext.ai/product
    1717 * Description:       Automatically generate image alt text with AltText.ai.
    18  * Version:           1.10.28
     18 * Version:           1.10.29
    1919 * Author:            AltText.ai
    2020 * Author URI:        https://alttext.ai
     
    3434 * Current plugin version.
    3535 */
    36 define( 'ATAI_VERSION', '1.10.28' );
     36define( 'ATAI_VERSION', '1.10.29' );
    3737
    3838/**
  • alttext-ai/trunk/changelog.txt

    r3466692 r3468786  
    11*** AltText.ai Changelog ***
    22
    3 2026-02-20 - version 1.10.25
    4 * NEW: Network Bulk Generate for WordPress Multisite — manage alt text across all your subsites from one central Network Admin dashboard
    5 * NEW: WP-CLI `wp alttext enrich` command — generate alt text for images embedded in posts and pages directly from the command line
    6 * NEW: WP-CLI `wp alttext import` command — import alt text in bulk from AltText.ai CSV exports via the command line
    7 * Fixed: Alt text updates in the Media Library now sync correctly into Elementor image modals without requiring images to be re-added
     32026-02-24 - version 1.10.29
     4* Improved: Plugin version now included in API requests
    85
    962026-02-17 - version 1.10.22
  • alttext-ai/trunk/includes/class-atai-api.php

    r3466692 r3468786  
    6464        'headers'       => array(
    6565          'Content-Type'  => 'application/json',
    66           'X-Api-Key'     => $this->api_key
     66          'X-Api-Key'     => $this->api_key,
     67          'X-Client'      => 'wordpress/' . ATAI_VERSION
    6768        )
    6869      )
     
    174175        'headers'       => array(
    175176          'Content-Type'  => 'application/json',
    176           'X-Api-Key'     => $this->api_key
     177          'X-Api-Key'     => $this->api_key,
     178          'X-Client'      => 'wordpress/' . ATAI_VERSION
    177179        ),
    178180        'timeout' => $timeout_secs,
Note: See TracChangeset for help on using the changeset viewer.