Plugin Directory

Changeset 3333112


Ignore:
Timestamp:
07/23/2025 06:05:30 PM (7 months ago)
Author:
benbeecroft
Message:

PowerPress 11.13.6

Location:
powerpress/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • powerpress/trunk/powerpress.php

    r3326310 r3333112  
    44Plugin URI: https://blubrry.com/services/powerpress-plugin/
    55Description: <a href="https://blubrry.com/services/powerpress-plugin/" target="_blank">Blubrry PowerPress</a> is the No. 1 Podcasting plugin for WordPress. Developed by podcasters for podcasters; features include Simple and Advanced modes, multiple audio/video player options, subscribe to podcast tools, podcast SEO features, and more! Fully supports Apple Podcasts (previously iTunes), Google Podcasts, Spotify, and Blubrry Podcasting directories, as well as all podcast applications and clients.
    6 Version: 11.13.5
     6Version: 11.13.6
    77Author: Blubrry
    88Author URI: https://blubrry.com/
     
    133133
    134134// WP_PLUGIN_DIR (REMEMBER TO USE THIS DEFINE IF NEEDED)
    135 define('POWERPRESS_VERSION', '11.13.5' );
     135define('POWERPRESS_VERSION', '11.13.6' );
    136136
    137137// Translation support:
  • powerpress/trunk/powerpressadmin-metabox.php

    r3317820 r3333112  
    3232    if (!$DurationSS) {
    3333        $DurationSS = '00';
     34    }
     35    if (empty($ExtraData)) {
     36        $ExtraData = array();
    3437    }
    3538    $FeedSettings = get_option('powerpress_feed_'.$FeedSlug);
     
    443446        <?php //Apple Podcasts Settings
    444447        // //Apple Podcasts Title
     448        if (empty($ExtraData)) {
     449            $ExtraData = array();
     450        }
    445451        if (empty($ExtraData['episode_title'])) {
    446452            $ExtraData['episode_title'] = '';
     
    702708        $form_action_url = admin_url("media-upload.php?type=powerpress_image&tab=type&post_id={$object->ID}&powerpress_feed={$FeedSlug}&TB_iframe=true&width=450&height=200");
    703709
     710        if (empty($ExtraData)) {
     711            $ExtraData = array();
     712        }
    704713        //Setting for itunes artwork
    705714        if (!isset($ExtraData['itunes_image']) || !$ExtraData['itunes_image']) {
     
    896905    $chaptersParsedJson = array();
    897906
     907    if (empty($ExtraData)) {
     908        $ExtraData = array();
     909    }
    898910    if ($PCIChapters == 1) {
    899911        // first, check if the chapters are hosted on this site. if so, access them directly rather than over http
     
    11731185function vts_tab($FeedSlug, $object, $GeneralSettings, $PCITranscript, $PCITranscriptURL, $PCIChapters, $PCIChaptersManual, $PCIChaptersURL, $PCISoundbites, $ExtraData)
    11741186{
     1187    if (empty($ExtraData)) {
     1188        $ExtraData = array();
     1189    }
    11751190    $existingTimeSplits = get_option('vts_'.$FeedSlug.'_'.$object->ID, array());
    11761191    $existingVTSOrder = $ExtraData['vts_order'] ?? array();
     
    14001415function notes_tab($FeedSlug, $object, $GeneralSettings, $PCITranscript, $PCITranscriptURL, $PCIChapters, $PCIChaptersURL, $PCISoundbites, $ExtraData)
    14011416{
     1417    if (empty($ExtraData)) {
     1418        $ExtraData = array();
     1419    }
    14021420    $lightning = isset($ExtraData['value_lightning']) ? $ExtraData['value_lightning'] : array("");
    14031421    $splits = isset($ExtraData['value_split']) ? $ExtraData['value_split'] : array("");
  • powerpress/trunk/readme.txt

    r3326310 r3333112  
    11=== PowerPress Podcasting plugin by Blubrry ===
    22Contributors: amandato, blubrry
    3 Tags: podcasting, podcast, podcaster, powerpress, itunes, apple, apple podcasts, google podcasts, google play, enclosure, professional, apple, apple tv, ipad, iphone, soundcloud, squarespace, youtube, viddler, ustream, podcasting, audio, video, rss2, feed, player, media, rss, mp3, music, embed, feedburner, statistics, stats, flv, flash, id3, episodes, blubrry, mp4, m4v, wordpressmu, mu, wordpress mu, multisite, multi site, mediacaster, post, plugin, posts, simple, social, dashboard, TSG, Buzzsprout, MTR, WP-boxCast, CastMyBlog, tgs podcasting,  simple podcasting, seriously simple podcasting, seriously-simple-podcasting, serious, seriously, ssp, podlove, podcast.de, clammr, clammr radio, audio player, stitcher, tunein, show, shows, series, docs, documentation, support, free, add-ons, extensions, addons, libsyn, libsyn-podcasting, podbean, podomatic, spreaker
     3Tags: podcast, apple podcasts, podcast rss feed, spotify, podcast publishing
    44Requires at least: 3.6
    55Requires PHP: 5.2
    66Tested up to: 6.8
    7 Stable tag: 11.13.5
     7Stable tag: 11.13.6
    88Donate link: https://blubrry.com/services/podcast-hosting/
    99License: GPLv2 or later
     
    163163
    164164== Changelog ==
     165= 11.13.6 =
     166* Released on 07/23/2025
     167* Small bugfix for PHP 8.3
     168* Updated plugin tags to abide by WP's specification
     169
    165170= 11.13.5 =
    166171* Released on 07/11/2025
  • powerpress/trunk/version.txt

    r3326310 r3333112  
    1 11.13.5
     111.13.6
  • powerpress/trunk/views/episode-box.php

    r3049829 r3333112  
    235235    }
    236236
     237    if (empty($ExtraData)) {
     238        $ExtraData = array();
     239    }
     240
    237241    echo "<div id=\"powerpress_podcast_box_$FeedSlug\" class=\"$editor\">";
    238242    // if no enclosure url AND no other podcast metadata, this is a branch new post
Note: See TracChangeset for help on using the changeset viewer.