Changeset 3451454
- Timestamp:
- 02/01/2026 03:37:10 PM (8 weeks ago)
- Location:
- bilder-alt
- Files:
-
- 4 edited
- 9 copied
-
tags/1.1.2 (copied) (copied from bilder-alt/trunk)
-
tags/1.1.2/api/bilder_alt_rest_api.php (copied) (copied from bilder-alt/trunk/api/bilder_alt_rest_api.php)
-
tags/1.1.2/assets/bilder-alt-list.js (copied) (copied from bilder-alt/trunk/assets/bilder-alt-list.js)
-
tags/1.1.2/assets/bilder-alt.js (copied) (copied from bilder-alt/trunk/assets/bilder-alt.js)
-
tags/1.1.2/bilder-alt.php (copied) (copied from bilder-alt/trunk/bilder-alt.php) (1 diff)
-
tags/1.1.2/bilder_alt_config.php (copied) (copied from bilder-alt/trunk/bilder_alt_config.php) (1 diff)
-
tags/1.1.2/readme.txt (copied) (copied from bilder-alt/trunk/readme.txt) (2 diffs)
-
tags/1.1.2/views/bilder_alt_media_view.php (copied) (copied from bilder-alt/trunk/views/bilder_alt_media_view.php) (2 diffs)
-
tags/1.1.2/views/bilder_alt_settings_view.php (copied) (copied from bilder-alt/trunk/views/bilder_alt_settings_view.php)
-
trunk/bilder-alt.php (modified) (1 diff)
-
trunk/bilder_alt_config.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/views/bilder_alt_media_view.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bilder-alt/tags/1.1.2/bilder-alt.php
r3451442 r3451454 5 5 * Plugin URI: https://app.bilder-alt.de/ 6 6 * Description: Generate SEO-optimized and accessible alt texts for your images using AI – directly in WordPress. The "Bilder Alt" plugin uses artificial intelligence to generate accurate and relevant image descriptions. A free API key from https://app.bilder-alt.de is required. 7 * Version: 1.1. 17 * Version: 1.1.2 8 8 * Author: Lukas Beck <[email protected]> 9 9 * Author URI: https://www.bluebranch.de/ -
bilder-alt/tags/1.1.2/bilder_alt_config.php
r3451435 r3451454 3 3 if (!defined('ABSPATH')) exit; // Exit if accessed directly 4 4 5 define('BILDER_ALT_VERSION', '1.1. 0');5 define('BILDER_ALT_VERSION', '1.1.2'); 6 6 define('BILDER_ALT_PLUGIN_DIR', plugin_dir_path(__FILE__)); 7 7 define('BILDER_ALT_PLUGIN_URL', plugin_dir_url(__FILE__)); -
bilder-alt/tags/1.1.2/readme.txt
r3451442 r3451454 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 18 Stable tag: 1.1.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 74 74 == Changelog == 75 75 76 = 1.1.2 = 77 * Reduced maximum bulk processing size to 2 simultaneous requests to avoid API throttling. 78 * Set default bulk processing size to 2. 79 80 = 1.1.1 = 81 * Fixed various minor bugs and improved UI consistency. 82 * Improved stability of the media overview page. 83 76 84 = 1.1.0 = 77 85 * Added a dedicated "Bilder Alt" media overview page for advanced bulk management. -
bilder-alt/tags/1.1.2/views/bilder_alt_media_view.php
r3451435 r3451454 75 75 76 76 $per_page = isset($_GET['per_page']) ? $_GET['per_page'] : 25; 77 $bulk_size = isset($_GET['bulk_size']) ? intval($_GET['bulk_size']) : 5;77 $bulk_size = isset($_GET['bulk_size']) ? intval($_GET['bulk_size']) : 2; 78 78 $paged = isset($_GET['paged']) ? max(1, intval($_GET['paged'])) : 1; 79 79 … … 168 168 <select name="bulk_size" id="bilder-alt-bulk-size"> 169 169 <?php 170 $bulk_options = [1, 2 , 5, 10];170 $bulk_options = [1, 2]; 171 171 foreach ($bulk_options as $opt) { 172 172 printf('<option value="%d" %s>%d</option>', $opt, selected($bulk_size, $opt, false), $opt); -
bilder-alt/trunk/bilder-alt.php
r3451442 r3451454 5 5 * Plugin URI: https://app.bilder-alt.de/ 6 6 * Description: Generate SEO-optimized and accessible alt texts for your images using AI – directly in WordPress. The "Bilder Alt" plugin uses artificial intelligence to generate accurate and relevant image descriptions. A free API key from https://app.bilder-alt.de is required. 7 * Version: 1.1. 17 * Version: 1.1.2 8 8 * Author: Lukas Beck <[email protected]> 9 9 * Author URI: https://www.bluebranch.de/ -
bilder-alt/trunk/bilder_alt_config.php
r3451435 r3451454 3 3 if (!defined('ABSPATH')) exit; // Exit if accessed directly 4 4 5 define('BILDER_ALT_VERSION', '1.1. 0');5 define('BILDER_ALT_VERSION', '1.1.2'); 6 6 define('BILDER_ALT_PLUGIN_DIR', plugin_dir_path(__FILE__)); 7 7 define('BILDER_ALT_PLUGIN_URL', plugin_dir_url(__FILE__)); -
bilder-alt/trunk/readme.txt
r3451442 r3451454 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 18 Stable tag: 1.1.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 74 74 == Changelog == 75 75 76 = 1.1.2 = 77 * Reduced maximum bulk processing size to 2 simultaneous requests to avoid API throttling. 78 * Set default bulk processing size to 2. 79 80 = 1.1.1 = 81 * Fixed various minor bugs and improved UI consistency. 82 * Improved stability of the media overview page. 83 76 84 = 1.1.0 = 77 85 * Added a dedicated "Bilder Alt" media overview page for advanced bulk management. -
bilder-alt/trunk/views/bilder_alt_media_view.php
r3451435 r3451454 75 75 76 76 $per_page = isset($_GET['per_page']) ? $_GET['per_page'] : 25; 77 $bulk_size = isset($_GET['bulk_size']) ? intval($_GET['bulk_size']) : 5;77 $bulk_size = isset($_GET['bulk_size']) ? intval($_GET['bulk_size']) : 2; 78 78 $paged = isset($_GET['paged']) ? max(1, intval($_GET['paged'])) : 1; 79 79 … … 168 168 <select name="bulk_size" id="bilder-alt-bulk-size"> 169 169 <?php 170 $bulk_options = [1, 2 , 5, 10];170 $bulk_options = [1, 2]; 171 171 foreach ($bulk_options as $opt) { 172 172 printf('<option value="%d" %s>%d</option>', $opt, selected($bulk_size, $opt, false), $opt);
Note: See TracChangeset
for help on using the changeset viewer.