Plugin Directory

Changeset 3446146


Ignore:
Timestamp:
01/24/2026 01:48:16 PM (4 weeks ago)
Author:
ehtmlu
Message:

Version 1.1.2

Location:
peak-publisher
Files:
3 edited
19 copied

Legend:

Unmodified
Added
Removed
  • peak-publisher/tags/1.1.2/classes/PublicAPI.php

    r3444907 r3446146  
    288288        }
    289289
    290         $result['short_description'] = $latest_release_content['plugin_readme_txt']['content']['short_description'] ?? '';
     290        $result['short_description'] = $latest_release_content['plugin_readme_txt']['content']['short_description'] ?? $plugin_data['Description'] ?? '';
    291291        $result['description']       = $result['sections']['description'] ?? $result['short_description'];
    292292        $result['download_link']     = rest_url(self::NAMESPACE . '/plugins/download/' . $plugin->post_name . '/' . $latest_release->post_title);
  • peak-publisher/tags/1.1.2/peak-publisher.php

    r3445119 r3446146  
    44 * Plugin Name: Peak Publisher
    55 * Description: The easiest way to self-host, manage and publish your own custom plugins.
    6  * Version: 1.1.1
     6 * Version: 1.1.2
    77 * Requires at least: 5.8
    88 * Requires PHP: 8.1
  • peak-publisher/tags/1.1.2/readme.txt

    r3445119 r3446146  
    99Requires PHP: 8.1
    1010Tested up to: 6.9
    11 Stable tag: 1.1.1
     11Stable tag: 1.1.2
    1212License: GPLv2 or later
    1313License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    109109== Changelog ==
    110110
     111= 1.1.2 - 2026-01-24 =
     112* Fixed description tab for plugins without a readme.txt (added previous solution as a fallback)
     113
    111114= 1.1.1 - 2026-01-22 =
    112115* Fixed small issue in version number validation logic
  • peak-publisher/trunk/classes/PublicAPI.php

    r3444907 r3446146  
    288288        }
    289289
    290         $result['short_description'] = $latest_release_content['plugin_readme_txt']['content']['short_description'] ?? '';
     290        $result['short_description'] = $latest_release_content['plugin_readme_txt']['content']['short_description'] ?? $plugin_data['Description'] ?? '';
    291291        $result['description']       = $result['sections']['description'] ?? $result['short_description'];
    292292        $result['download_link']     = rest_url(self::NAMESPACE . '/plugins/download/' . $plugin->post_name . '/' . $latest_release->post_title);
  • peak-publisher/trunk/peak-publisher.php

    r3445119 r3446146  
    44 * Plugin Name: Peak Publisher
    55 * Description: The easiest way to self-host, manage and publish your own custom plugins.
    6  * Version: 1.1.1
     6 * Version: 1.1.2
    77 * Requires at least: 5.8
    88 * Requires PHP: 8.1
  • peak-publisher/trunk/readme.txt

    r3445119 r3446146  
    99Requires PHP: 8.1
    1010Tested up to: 6.9
    11 Stable tag: 1.1.1
     11Stable tag: 1.1.2
    1212License: GPLv2 or later
    1313License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    109109== Changelog ==
    110110
     111= 1.1.2 - 2026-01-24 =
     112* Fixed description tab for plugins without a readme.txt (added previous solution as a fallback)
     113
    111114= 1.1.1 - 2026-01-22 =
    112115* Fixed small issue in version number validation logic
Note: See TracChangeset for help on using the changeset viewer.