Plugin Directory

Changeset 3437955


Ignore:
Timestamp:
01/12/2026 04:45:29 PM (3 months ago)
Author:
samukbg
Message:

Tagging version 1.3.0

Location:
post2podcast
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • post2podcast/tags/1.3.0/post2podcast.php

    r3437951 r3437955  
    44 * Plugin server URI: https://github.com/samukbg/post2podcast-server
    55 * Description: Convert WordPress posts into podcast episodes with AI voices
    6  * Version: 1.2.10
     6 * Version: 1.3.0
    77 * Author: Samuel Bezerra
    88 * Author URI: https://github.com/samukbg
     
    2020
    2121// Define plugin constants
    22 define('POST2PODCAST_VERSION', '1.2.10');
     22define('POST2PODCAST_VERSION', '1.3.0');
    2323define('POST2PODCAST_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2424define('POST2PODCAST_PLUGIN_URL', plugin_dir_url(__FILE__));
  • post2podcast/tags/1.3.0/readme.txt

    r3437951 r3437955  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.2.10
     7Stable tag: 1.3.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    274274== Changelog ==
    275275
    276 = 1.2.10 =
     276= 1.3.0 =
     277* MAJOR UPDATE: Streaming SSE architecture for long audio generation without timeouts
    277278* FIXED: Language detection now correctly auto-selects voices from the SAME detected language
    278279* FIXED: French language now uses the same voice (ff_siwis) for both speakers since only one French voice is available
     280* ADDED: New backend SSE endpoint (/generate-with-progress) that streams real-time progress updates
     281* IMPROVED: WordPress plugin now receives continuous progress updates during generation via cURL streaming
    279282* IMPROVED: Enhanced voice auto-selection with better logging and user feedback
    280 * IMPROVED: Frontend JavaScript now validates voice selection and triggers change event after auto-selection
     283* IMPROVED: Frontend JavaScript validates voice selection and triggers change event after auto-selection
     284* IMPROVED: Frontend timeout extended to 25 minutes to accommodate very long article generation
    281285* IMPROVED: Better error messages when suggested voices are not found in dropdowns
     286* IMPROVED: Better handling of long-running audio generation (15-20+ minutes for lengthy articles)
    282287
    283288= 1.2.9 =
  • post2podcast/trunk/post2podcast.php

    r3437951 r3437955  
    44 * Plugin server URI: https://github.com/samukbg/post2podcast-server
    55 * Description: Convert WordPress posts into podcast episodes with AI voices
    6  * Version: 1.2.10
     6 * Version: 1.3.0
    77 * Author: Samuel Bezerra
    88 * Author URI: https://github.com/samukbg
     
    2020
    2121// Define plugin constants
    22 define('POST2PODCAST_VERSION', '1.2.10');
     22define('POST2PODCAST_VERSION', '1.3.0');
    2323define('POST2PODCAST_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2424define('POST2PODCAST_PLUGIN_URL', plugin_dir_url(__FILE__));
  • post2podcast/trunk/readme.txt

    r3437951 r3437955  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.2.10
     7Stable tag: 1.3.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    274274== Changelog ==
    275275
    276 = 1.2.10 =
     276= 1.3.0 =
     277* MAJOR UPDATE: Streaming SSE architecture for long audio generation without timeouts
    277278* FIXED: Language detection now correctly auto-selects voices from the SAME detected language
    278279* FIXED: French language now uses the same voice (ff_siwis) for both speakers since only one French voice is available
     280* ADDED: New backend SSE endpoint (/generate-with-progress) that streams real-time progress updates
     281* IMPROVED: WordPress plugin now receives continuous progress updates during generation via cURL streaming
    279282* IMPROVED: Enhanced voice auto-selection with better logging and user feedback
    280 * IMPROVED: Frontend JavaScript now validates voice selection and triggers change event after auto-selection
     283* IMPROVED: Frontend JavaScript validates voice selection and triggers change event after auto-selection
     284* IMPROVED: Frontend timeout extended to 25 minutes to accommodate very long article generation
    281285* IMPROVED: Better error messages when suggested voices are not found in dropdowns
     286* IMPROVED: Better handling of long-running audio generation (15-20+ minutes for lengthy articles)
    282287
    283288= 1.2.9 =
Note: See TracChangeset for help on using the changeset viewer.