Changeset 3468786
- Timestamp:
- 02/24/2026 05:00:44 PM (12 days ago)
- Location:
- alttext-ai
- Files:
-
- 2 deleted
- 9 edited
- 1 copied
-
assets/screenshot-5.jpg (modified) (1 prop) (previous)
-
tags/1.10.29 (copied) (copied from alttext-ai/trunk)
-
tags/1.10.29/.factory (deleted)
-
tags/1.10.29/README.txt (modified) (2 diffs)
-
tags/1.10.29/atai.php (modified) (2 diffs)
-
tags/1.10.29/changelog.txt (modified) (1 diff)
-
tags/1.10.29/includes/class-atai-api.php (modified) (2 diffs)
-
trunk/.factory (deleted)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/atai.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/class-atai-api.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
alttext-ai/assets/screenshot-5.jpg
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/jpeg
-
Property
svn:mime-type
changed from
-
alttext-ai/tags/1.10.29/README.txt
r3466888 r3468786 6 6 Requires at least: 4.7 7 7 Tested up to: 6.9 8 Stable tag: 1.10.2 88 Stable tag: 1.10.29 9 9 WC requires at least: 3.3 10 10 WC tested up to: 10.1 … … 71 71 72 72 == Changelog == 73 74 = 1.10.29 - 2026-02-24 = 75 * Improved: Plugin version now included in API requests 73 76 74 77 = 1.10.28 - 2026-02-22 = -
alttext-ai/tags/1.10.29/atai.php
r3466888 r3468786 16 16 * Plugin URI: https://alttext.ai/product 17 17 * Description: Automatically generate image alt text with AltText.ai. 18 * Version: 1.10.2 818 * Version: 1.10.29 19 19 * Author: AltText.ai 20 20 * Author URI: https://alttext.ai … … 34 34 * Current plugin version. 35 35 */ 36 define( 'ATAI_VERSION', '1.10.2 8' );36 define( 'ATAI_VERSION', '1.10.29' ); 37 37 38 38 /** -
alttext-ai/tags/1.10.29/changelog.txt
r3466692 r3468786 1 1 *** AltText.ai Changelog *** 2 2 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 3 2026-02-24 - version 1.10.29 4 * Improved: Plugin version now included in API requests 8 5 9 6 2026-02-17 - version 1.10.22 -
alttext-ai/tags/1.10.29/includes/class-atai-api.php
r3466692 r3468786 64 64 'headers' => array( 65 65 'Content-Type' => 'application/json', 66 'X-Api-Key' => $this->api_key 66 'X-Api-Key' => $this->api_key, 67 'X-Client' => 'wordpress/' . ATAI_VERSION 67 68 ) 68 69 ) … … 174 175 'headers' => array( 175 176 'Content-Type' => 'application/json', 176 'X-Api-Key' => $this->api_key 177 'X-Api-Key' => $this->api_key, 178 'X-Client' => 'wordpress/' . ATAI_VERSION 177 179 ), 178 180 'timeout' => $timeout_secs, -
alttext-ai/trunk/README.txt
r3466888 r3468786 6 6 Requires at least: 4.7 7 7 Tested up to: 6.9 8 Stable tag: 1.10.2 88 Stable tag: 1.10.29 9 9 WC requires at least: 3.3 10 10 WC tested up to: 10.1 … … 71 71 72 72 == Changelog == 73 74 = 1.10.29 - 2026-02-24 = 75 * Improved: Plugin version now included in API requests 73 76 74 77 = 1.10.28 - 2026-02-22 = -
alttext-ai/trunk/atai.php
r3466888 r3468786 16 16 * Plugin URI: https://alttext.ai/product 17 17 * Description: Automatically generate image alt text with AltText.ai. 18 * Version: 1.10.2 818 * Version: 1.10.29 19 19 * Author: AltText.ai 20 20 * Author URI: https://alttext.ai … … 34 34 * Current plugin version. 35 35 */ 36 define( 'ATAI_VERSION', '1.10.2 8' );36 define( 'ATAI_VERSION', '1.10.29' ); 37 37 38 38 /** -
alttext-ai/trunk/changelog.txt
r3466692 r3468786 1 1 *** AltText.ai Changelog *** 2 2 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 3 2026-02-24 - version 1.10.29 4 * Improved: Plugin version now included in API requests 8 5 9 6 2026-02-17 - version 1.10.22 -
alttext-ai/trunk/includes/class-atai-api.php
r3466692 r3468786 64 64 'headers' => array( 65 65 'Content-Type' => 'application/json', 66 'X-Api-Key' => $this->api_key 66 'X-Api-Key' => $this->api_key, 67 'X-Client' => 'wordpress/' . ATAI_VERSION 67 68 ) 68 69 ) … … 174 175 'headers' => array( 175 176 'Content-Type' => 'application/json', 176 'X-Api-Key' => $this->api_key 177 'X-Api-Key' => $this->api_key, 178 'X-Client' => 'wordpress/' . ATAI_VERSION 177 179 ), 178 180 'timeout' => $timeout_secs,
Note: See TracChangeset
for help on using the changeset viewer.