Changeset 3437955
- Timestamp:
- 01/12/2026 04:45:29 PM (3 months ago)
- Location:
- post2podcast
- Files:
-
- 4 edited
- 1 copied
-
tags/1.3.0 (copied) (copied from post2podcast/trunk)
-
tags/1.3.0/post2podcast.php (modified) (2 diffs)
-
tags/1.3.0/readme.txt (modified) (2 diffs)
-
trunk/post2podcast.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post2podcast/tags/1.3.0/post2podcast.php
r3437951 r3437955 4 4 * Plugin server URI: https://github.com/samukbg/post2podcast-server 5 5 * Description: Convert WordPress posts into podcast episodes with AI voices 6 * Version: 1. 2.106 * Version: 1.3.0 7 7 * Author: Samuel Bezerra 8 8 * Author URI: https://github.com/samukbg … … 20 20 21 21 // Define plugin constants 22 define('POST2PODCAST_VERSION', '1. 2.10');22 define('POST2PODCAST_VERSION', '1.3.0'); 23 23 define('POST2PODCAST_PLUGIN_DIR', plugin_dir_path(__FILE__)); 24 24 define('POST2PODCAST_PLUGIN_URL', plugin_dir_url(__FILE__)); -
post2podcast/tags/1.3.0/readme.txt
r3437951 r3437955 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1. 2.107 Stable tag: 1.3.0 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 274 274 == Changelog == 275 275 276 = 1.2.10 = 276 = 1.3.0 = 277 * MAJOR UPDATE: Streaming SSE architecture for long audio generation without timeouts 277 278 * FIXED: Language detection now correctly auto-selects voices from the SAME detected language 278 279 * 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 279 282 * 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 281 285 * 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) 282 287 283 288 = 1.2.9 = -
post2podcast/trunk/post2podcast.php
r3437951 r3437955 4 4 * Plugin server URI: https://github.com/samukbg/post2podcast-server 5 5 * Description: Convert WordPress posts into podcast episodes with AI voices 6 * Version: 1. 2.106 * Version: 1.3.0 7 7 * Author: Samuel Bezerra 8 8 * Author URI: https://github.com/samukbg … … 20 20 21 21 // Define plugin constants 22 define('POST2PODCAST_VERSION', '1. 2.10');22 define('POST2PODCAST_VERSION', '1.3.0'); 23 23 define('POST2PODCAST_PLUGIN_DIR', plugin_dir_path(__FILE__)); 24 24 define('POST2PODCAST_PLUGIN_URL', plugin_dir_url(__FILE__)); -
post2podcast/trunk/readme.txt
r3437951 r3437955 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1. 2.107 Stable tag: 1.3.0 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 274 274 == Changelog == 275 275 276 = 1.2.10 = 276 = 1.3.0 = 277 * MAJOR UPDATE: Streaming SSE architecture for long audio generation without timeouts 277 278 * FIXED: Language detection now correctly auto-selects voices from the SAME detected language 278 279 * 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 279 282 * 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 281 285 * 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) 282 287 283 288 = 1.2.9 =
Note: See TracChangeset
for help on using the changeset viewer.