Changeset 3406653
- Timestamp:
- 12/01/2025 10:03:09 AM (3 months ago)
- Location:
- ai-alt-text-builder
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.3 (copied) (copied from ai-alt-text-builder/trunk)
-
tags/1.0.3/ai-alt-text-builder.php (modified) (4 diffs)
-
tags/1.0.3/readme.txt (modified) (2 diffs)
-
trunk/ai-alt-text-builder.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-alt-text-builder/tags/1.0.3/ai-alt-text-builder.php
r3403718 r3406653 3 3 Plugin Name: AI Alt Text Builder 4 4 Description: Generate SEO-friendly ALT text for Media Library images in one click, with scoring, bulk generation and language options. 5 Version: 1.0. 25 Version: 1.0.3 6 6 Author: RankPilotAI 7 7 Author URI: https://rankpilotai.com … … 16 16 if ( ! defined( 'ABSPATH' ) ) exit; 17 17 18 define( 'AATB_VERSION', '1.0. 2' );18 define( 'AATB_VERSION', '1.0.3' ); 19 19 define( 'AATB_PATH', plugin_dir_path( __FILE__ ) ); 20 20 define( 'AATB_URL', plugin_dir_url ( __FILE__ ) ); … … 30 30 register_activation_hook( __FILE__, function () { 31 31 $opt = get_option( AATB_SETTINGS_SLUG, [] ); 32 if ( empty( $opt['site_token'] ) ) { 33 $opt['site_token'] = 'rp_' . wp_generate_password( 20, false, false ); 34 } 32 if ( ! is_array( $opt ) ) { 33 $opt = []; 34 } 35 36 if ( ! array_key_exists( 'site_token', $opt ) ) { 37 $opt['site_token'] = ''; 38 } 39 35 40 if ( empty( $opt['lang_choice'] ) ) { 36 41 $opt['lang_choice'] = 'en'; … … 39 44 $opt['model_choice'] = 'gpt-4o-mini'; 40 45 } 46 41 47 update_option( AATB_SETTINGS_SLUG, $opt ); 42 48 } ); -
ai-alt-text-builder/tags/1.0.3/readme.txt
r3403718 r3406653 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 1.0.3 = 82 * New installs start with an empty Site Key field instead of a random generated key. 83 81 84 = 1.0.2 = 82 85 * Tweak: removed extra “View details” link on the Plugins screen and synced short description. No functional changes. -
ai-alt-text-builder/trunk/ai-alt-text-builder.php
r3403718 r3406653 3 3 Plugin Name: AI Alt Text Builder 4 4 Description: Generate SEO-friendly ALT text for Media Library images in one click, with scoring, bulk generation and language options. 5 Version: 1.0. 25 Version: 1.0.3 6 6 Author: RankPilotAI 7 7 Author URI: https://rankpilotai.com … … 16 16 if ( ! defined( 'ABSPATH' ) ) exit; 17 17 18 define( 'AATB_VERSION', '1.0. 2' );18 define( 'AATB_VERSION', '1.0.3' ); 19 19 define( 'AATB_PATH', plugin_dir_path( __FILE__ ) ); 20 20 define( 'AATB_URL', plugin_dir_url ( __FILE__ ) ); … … 30 30 register_activation_hook( __FILE__, function () { 31 31 $opt = get_option( AATB_SETTINGS_SLUG, [] ); 32 if ( empty( $opt['site_token'] ) ) { 33 $opt['site_token'] = 'rp_' . wp_generate_password( 20, false, false ); 34 } 32 if ( ! is_array( $opt ) ) { 33 $opt = []; 34 } 35 36 if ( ! array_key_exists( 'site_token', $opt ) ) { 37 $opt['site_token'] = ''; 38 } 39 35 40 if ( empty( $opt['lang_choice'] ) ) { 36 41 $opt['lang_choice'] = 'en'; … … 39 44 $opt['model_choice'] = 'gpt-4o-mini'; 40 45 } 46 41 47 update_option( AATB_SETTINGS_SLUG, $opt ); 42 48 } ); -
ai-alt-text-builder/trunk/readme.txt
r3403718 r3406653 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 1.0.3 = 82 * New installs start with an empty Site Key field instead of a random generated key. 83 81 84 = 1.0.2 = 82 85 * Tweak: removed extra “View details” link on the Plugins screen and synced short description. No functional changes.
Note: See TracChangeset
for help on using the changeset viewer.