Plugin Directory

Changeset 3451454


Ignore:
Timestamp:
02/01/2026 03:37:10 PM (8 weeks ago)
Author:
bluebranch
Message:

Tagging version 1.1.2 - fix too much bulk options to the same time

Location:
bilder-alt
Files:
4 edited
9 copied

Legend:

Unmodified
Added
Removed
  • bilder-alt/tags/1.1.2/bilder-alt.php

    r3451442 r3451454  
    55 * Plugin URI: https://app.bilder-alt.de/
    66 * 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.1
     7 * Version: 1.1.2
    88 * Author: Lukas Beck <[email protected]>
    99 * Author URI: https://www.bluebranch.de/
  • bilder-alt/tags/1.1.2/bilder_alt_config.php

    r3451435 r3451454  
    33if (!defined('ABSPATH')) exit; // Exit if accessed directly
    44
    5 define('BILDER_ALT_VERSION', '1.1.0');
     5define('BILDER_ALT_VERSION', '1.1.2');
    66define('BILDER_ALT_PLUGIN_DIR', plugin_dir_path(__FILE__));
    77define('BILDER_ALT_PLUGIN_URL', plugin_dir_url(__FILE__));
  • bilder-alt/tags/1.1.2/readme.txt

    r3451442 r3451454  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7474== Changelog ==
    7575
     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
    7684= 1.1.0 =
    7785* 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  
    7575
    7676    $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;
    7878    $paged = isset($_GET['paged']) ? max(1, intval($_GET['paged'])) : 1;
    7979
     
    168168                <select name="bulk_size" id="bilder-alt-bulk-size">
    169169                    <?php
    170                     $bulk_options = [1, 2, 5, 10];
     170                    $bulk_options = [1, 2];
    171171                    foreach ($bulk_options as $opt) {
    172172                        printf('<option value="%d" %s>%d</option>', $opt, selected($bulk_size, $opt, false), $opt);
  • bilder-alt/trunk/bilder-alt.php

    r3451442 r3451454  
    55 * Plugin URI: https://app.bilder-alt.de/
    66 * 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.1
     7 * Version: 1.1.2
    88 * Author: Lukas Beck <[email protected]>
    99 * Author URI: https://www.bluebranch.de/
  • bilder-alt/trunk/bilder_alt_config.php

    r3451435 r3451454  
    33if (!defined('ABSPATH')) exit; // Exit if accessed directly
    44
    5 define('BILDER_ALT_VERSION', '1.1.0');
     5define('BILDER_ALT_VERSION', '1.1.2');
    66define('BILDER_ALT_PLUGIN_DIR', plugin_dir_path(__FILE__));
    77define('BILDER_ALT_PLUGIN_URL', plugin_dir_url(__FILE__));
  • bilder-alt/trunk/readme.txt

    r3451442 r3451454  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7474== Changelog ==
    7575
     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
    7684= 1.1.0 =
    7785* Added a dedicated "Bilder Alt" media overview page for advanced bulk management.
  • bilder-alt/trunk/views/bilder_alt_media_view.php

    r3451435 r3451454  
    7575
    7676    $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;
    7878    $paged = isset($_GET['paged']) ? max(1, intval($_GET['paged'])) : 1;
    7979
     
    168168                <select name="bulk_size" id="bilder-alt-bulk-size">
    169169                    <?php
    170                     $bulk_options = [1, 2, 5, 10];
     170                    $bulk_options = [1, 2];
    171171                    foreach ($bulk_options as $opt) {
    172172                        printf('<option value="%d" %s>%d</option>', $opt, selected($bulk_size, $opt, false), $opt);
Note: See TracChangeset for help on using the changeset viewer.