Plugin Directory

Changeset 3478543


Ignore:
Timestamp:
03/09/2026 09:04:24 PM (4 weeks ago)
Author:
samukbg
Message:

Update to 1.3.12: Increase initial generation timeout to 5 minutes

Location:
post2podcast
Files:
3 edited
8 copied

Legend:

Unmodified
Added
Removed
  • post2podcast/tags/1.3.12/includes/class-post2podcast-api.php

    r3478525 r3478543  
    4040            $response = wp_remote_post($url, array(
    4141                'method' => 'POST',
    42                 'timeout' => 45,
     42                'timeout' => 300,
    4343                'headers' => array('Content-Type' => 'application/json; charset=utf-8'),
    4444                'body' => json_encode($payload),
  • post2podcast/tags/1.3.12/post2podcast.php

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

    r3478525 r3478543  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.3.11
     7Stable tag: 1.3.12
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • post2podcast/trunk/includes/class-post2podcast-api.php

    r3478525 r3478543  
    4040            $response = wp_remote_post($url, array(
    4141                'method' => 'POST',
    42                 'timeout' => 45,
     42                'timeout' => 300,
    4343                'headers' => array('Content-Type' => 'application/json; charset=utf-8'),
    4444                'body' => json_encode($payload),
  • post2podcast/trunk/post2podcast.php

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

    r3478525 r3478543  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.3.11
     7Stable tag: 1.3.12
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.