Plugin Directory

Changeset 3189566


Ignore:
Timestamp:
11/15/2024 12:57:44 PM (16 months ago)
Author:
eteubert
Message:

Update to version 4.1.21 from GitHub

Location:
podlove-podcasting-plugin-for-wordpress
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.21/lib/model/media_file.php

    r3094180 r3189566  
    206206        }
    207207
    208         $path .= '/'.$this->get_download_file_name();
     208        $path .= '/'.urlencode($this->get_download_file_name());
    209209
    210210        return $path;
     
    224224        // add params to path
    225225        foreach ($params as $param_name => $value) {
    226             $path .= $connector($path).'ptm_'.$param_name.'='.$value;
     226            $path .= $connector($path).'ptm_'.$param_name.'='.urlencode($value);
    227227        }
    228228
    229229        // at last, add file param, so wget users get the right extension
    230         $path .= $connector($path).'ptm_file='.$this->get_download_file_name();
     230        $path .= $connector($path).'ptm_file='.urlencode($this->get_download_file_name());
    231231
    232232        return $path;
     
    417417
    418418        // verify HTTP header
    419         if (!preg_match('/^[23]\\d\\d$/', $header['http_code'])) {
     419        if (!preg_match('/^[23]\d\d$/', $header['http_code'])) {
    420420            Log::get()->addError(
    421421                'Unexpected http response when trying to access remote media file.',
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.21/podlove.php

    r3188654 r3189566  
    33 * Plugin Name: Podlove Podcast Publisher
    44 * Plugin URI:  https://podlove.org/podlove-podcast-publisher/
    5  * Version: 4.1.20
     5 * Version: 4.1.21
    66 * Requires at least: 4.9.6
    77 * Requires PHP: 8.0
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.21/readme.txt

    r3188654 r3189566  
    44Tags: podlove, podcast, publishing, rss, audio
    55Tested up to: 6.7
    6 Stable tag: 4.1.20
     6Stable tag: 4.1.21
    77Requires at least: 4.9.6
    88Requires PHP: 8.0
     
    115115
    116116== Changelog ==
     117
     118= 4.1.21 =
     119
     120* fix: encode tracking urls and their redirected urls
    117121
    118122= 4.1.20 =
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.21/vendor/composer/installed.php

    r3188654 r3189566  
    22    'root' => array(
    33        'name' => 'podlove/podcast-publisher',
    4         'pretty_version' => '4.1.20',
    5         'version' => '4.1.20.0',
    6         'reference' => 'ddf453598e504de95b6da2e42f06a65ddc6864d1',
     4        'pretty_version' => '4.1.21',
     5        'version' => '4.1.21.0',
     6        'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    135135        ),
    136136        'podlove/podcast-publisher' => array(
    137             'pretty_version' => '4.1.20',
    138             'version' => '4.1.20.0',
    139             'reference' => 'ddf453598e504de95b6da2e42f06a65ddc6864d1',
     137            'pretty_version' => '4.1.21',
     138            'version' => '4.1.21.0',
     139            'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977',
    140140            'type' => 'library',
    141141            'install_path' => __DIR__ . '/../../',
  • podlove-podcasting-plugin-for-wordpress/trunk/lib/model/media_file.php

    r3094180 r3189566  
    206206        }
    207207
    208         $path .= '/'.$this->get_download_file_name();
     208        $path .= '/'.urlencode($this->get_download_file_name());
    209209
    210210        return $path;
     
    224224        // add params to path
    225225        foreach ($params as $param_name => $value) {
    226             $path .= $connector($path).'ptm_'.$param_name.'='.$value;
     226            $path .= $connector($path).'ptm_'.$param_name.'='.urlencode($value);
    227227        }
    228228
    229229        // at last, add file param, so wget users get the right extension
    230         $path .= $connector($path).'ptm_file='.$this->get_download_file_name();
     230        $path .= $connector($path).'ptm_file='.urlencode($this->get_download_file_name());
    231231
    232232        return $path;
     
    417417
    418418        // verify HTTP header
    419         if (!preg_match('/^[23]\\d\\d$/', $header['http_code'])) {
     419        if (!preg_match('/^[23]\d\d$/', $header['http_code'])) {
    420420            Log::get()->addError(
    421421                'Unexpected http response when trying to access remote media file.',
  • podlove-podcasting-plugin-for-wordpress/trunk/podlove.php

    r3188654 r3189566  
    33 * Plugin Name: Podlove Podcast Publisher
    44 * Plugin URI:  https://podlove.org/podlove-podcast-publisher/
    5  * Version: 4.1.20
     5 * Version: 4.1.21
    66 * Requires at least: 4.9.6
    77 * Requires PHP: 8.0
  • podlove-podcasting-plugin-for-wordpress/trunk/readme.txt

    r3188654 r3189566  
    44Tags: podlove, podcast, publishing, rss, audio
    55Tested up to: 6.7
    6 Stable tag: 4.1.20
     6Stable tag: 4.1.21
    77Requires at least: 4.9.6
    88Requires PHP: 8.0
     
    115115
    116116== Changelog ==
     117
     118= 4.1.21 =
     119
     120* fix: encode tracking urls and their redirected urls
    117121
    118122= 4.1.20 =
  • podlove-podcasting-plugin-for-wordpress/trunk/vendor/composer/installed.php

    r3188654 r3189566  
    22    'root' => array(
    33        'name' => 'podlove/podcast-publisher',
    4         'pretty_version' => '4.1.20',
    5         'version' => '4.1.20.0',
    6         'reference' => 'ddf453598e504de95b6da2e42f06a65ddc6864d1',
     4        'pretty_version' => '4.1.21',
     5        'version' => '4.1.21.0',
     6        'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    135135        ),
    136136        'podlove/podcast-publisher' => array(
    137             'pretty_version' => '4.1.20',
    138             'version' => '4.1.20.0',
    139             'reference' => 'ddf453598e504de95b6da2e42f06a65ddc6864d1',
     137            'pretty_version' => '4.1.21',
     138            'version' => '4.1.21.0',
     139            'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977',
    140140            'type' => 'library',
    141141            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.