Plugin Directory

Changeset 2507645


Ignore:
Timestamp:
04/01/2021 06:47:03 PM (5 years ago)
Author:
captivateaudio
Message:

Preparing for 2.0.6 release

Location:
captivatesync-trade/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • captivatesync-trade/trunk/README.html

    r2502367 r2507645  
    1111Requires at least: 4.8.0
    1212Tested up to: 5.7
    13 Stable tag: 2.0.5</p>
     13Stable tag: 2.0.6</p>
    1414
    1515<p>Captivate Sync™ is a WordPress plugin maintained and developed by Captivate, part of the Rebel Base Media family. With our background in Podcast Websites, WordPress development and podcast hosting, hundreds of independent podcasters trust Captivate Sync™ and Captivate to power their podcast brands everyday.</p>
     
    131131
    132132<p>== Changelog ==</p>
     133
     134<p>= 2.0.6 =</p>
     135<ul>
     136    <li>Released on 01/04/2021</li>
     137    <li>Small minor fix</li>
     138</ul>
    133139
    134140<p>= 2.0.5 =</p>
  • captivatesync-trade/trunk/captivate-sync.php

    r2502367 r2507645  
    44 Plugin URI:   https://captivate.fm/sync
    55 Description:  Captivate Sync&trade; is the WordPress podcasting plugin from Captivate.fm. Publish directly from your WordPress site or your Captivate podcast hosting account and stay in-sync wherever you are!
    6  Version:      2.0.5
     6 Version:      2.0.6
    77 Author:       Captivate Audio Ltd
    88 Author URI:   https://www.captivate.fm
     
    2222
    2323if ( ! defined( 'CFMH_VERSION' ) ) {
    24     define( 'CFMH_VERSION', '2.0.5' );
     24    define( 'CFMH_VERSION', '2.0.6' );
    2525}
    2626
  • captivatesync-trade/trunk/inc/class-cfmh-hosting-publish-episode.php

    r2502341 r2507645  
    370370                                $body = json_decode( $response['body'] );
    371371
    372                                 if ( isset( $body->success ) && $body->record ) {
    373 
    374                                     $captivate_episode_id = $body->record->id ? $body->record->id : $body->record->episodes_id;
     372                                if ( isset( $body->success ) && $body->episode ) {
     373
     374                                    $captivate_episode_id = $body->episode->id ? $body->episode->id : $body->episode->episodes_id;
    375375
    376376                                    update_post_meta( $post_id, 'cfm_episode_id', $captivate_episode_id );
  • captivatesync-trade/trunk/readme.txt

    r2502367 r2507645  
    44Requires at least: 4.8.0
    55Tested up to: 5.7
    6 Stable tag: 2.0.5
     6Stable tag: 2.0.6
    77
    88Captivate Sync™ is a WordPress plugin maintained and developed by Captivate, part of the Rebel Base Media family. With our background in Podcast Websites, WordPress development and podcast hosting, hundreds of independent podcasters trust Captivate Sync™ and Captivate to power their podcast brands everyday.
     
    103103
    104104== Changelog ==
     105
     106= 2.0.6 =
     107* Released on 01/04/2021
     108* Small minor fix
    105109
    106110= 2.0.5 =
Note: See TracChangeset for help on using the changeset viewer.