Changeset 2339437
- Timestamp:
- 07/13/2020 12:25:17 AM (6 years ago)
- Location:
- pinecast-wp-sync
- Files:
-
- 9 edited
- 6 copied
-
tags/1.0.7 (copied) (copied from pinecast-wp-sync/trunk)
-
tags/1.0.7/includes/class-podcast.php (modified) (1 diff)
-
tags/1.0.7/includes/cron-functions.php (modified) (1 diff)
-
tags/1.0.7/package-lock.json (copied) (copied from pinecast-wp-sync/trunk/package-lock.json) (1 diff)
-
tags/1.0.7/package.json (copied) (copied from pinecast-wp-sync/trunk/package.json) (1 diff)
-
tags/1.0.7/pinecast.php (copied) (copied from pinecast-wp-sync/trunk/pinecast.php) (1 diff)
-
tags/1.0.7/plugin.php (copied) (copied from pinecast-wp-sync/trunk/plugin.php) (1 diff)
-
tags/1.0.7/readme.txt (copied) (copied from pinecast-wp-sync/trunk/readme.txt) (1 diff)
-
trunk/includes/class-podcast.php (modified) (1 diff)
-
trunk/includes/cron-functions.php (modified) (1 diff)
-
trunk/package-lock.json (modified) (1 diff)
-
trunk/package.json (modified) (1 diff)
-
trunk/pinecast.php (modified) (1 diff)
-
trunk/plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pinecast-wp-sync/tags/1.0.7/includes/class-podcast.php
r2310548 r2339437 390 390 391 391 if ( $this->use_featured_image() ) { 392 if ( $data->image&& $attachment_id = $this->import_episode_image( $data->image, $post_id ) ) {392 if (!empty($data->image) && $attachment_id = $this->import_episode_image( $data->image, $post_id ) ) { 393 393 set_post_thumbnail( $post_id, $attachment_id ); 394 394 } -
pinecast-wp-sync/tags/1.0.7/includes/cron-functions.php
r2120413 r2339437 25 25 $podcasts = get_podcasts(); 26 26 27 // Sort the podcast list by last updated (lexicographical sort == chronological sort) ascending. 28 // We want to refresh the least-recently updated feed first. 29 usort($podcasts, function ($a, $b) { 30 return strcmp(strtolower($a->get_last_updated()), strtolower($b->get_last_updated())); 31 }); 32 27 33 array_walk( $podcasts, function( $podcast ) { 28 34 /** @var Podcast $podcast */ -
pinecast-wp-sync/tags/1.0.7/package-lock.json
r2310549 r2339437 1 1 { 2 2 "name": "pinecast", 3 "version": "1.0. 6",3 "version": "1.0.7", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
pinecast-wp-sync/tags/1.0.7/package.json
r2310549 r2339437 1 1 { 2 2 "name": "pinecast", 3 "version": "1.0. 6",3 "version": "1.0.7", 4 4 "description": "", 5 5 "main": "gulpfile.js", -
pinecast-wp-sync/tags/1.0.7/pinecast.php
r2310549 r2339437 8 8 9 9 /** @var string Plugin version */ 10 public $version = '1.0. 6';10 public $version = '1.0.7'; 11 11 12 12 /** @var string Main plugin file */ -
pinecast-wp-sync/tags/1.0.7/plugin.php
r2310549 r2339437 4 4 * Plugin URI: https://help.pinecast.com/articles/3072843-pinecast-wordpress-sync-plugin 5 5 * Description: Sync your Pinecast podcast episodes from Pinecast to WordPress 6 * Version: 1.0. 66 * Version: 1.0.7 7 7 * Author: Pinecast 8 8 * Author URI: https://pinecast.com -
pinecast-wp-sync/tags/1.0.7/readme.txt
r2310549 r2339437 29 29 == Changelog == 30 30 31 = 1.0.7 = 32 * Feeds now refresh in order of least-recently-updated first. 33 31 34 = 1.0 = 32 35 * The initial release -
pinecast-wp-sync/trunk/includes/class-podcast.php
r2310548 r2339437 390 390 391 391 if ( $this->use_featured_image() ) { 392 if ( $data->image&& $attachment_id = $this->import_episode_image( $data->image, $post_id ) ) {392 if (!empty($data->image) && $attachment_id = $this->import_episode_image( $data->image, $post_id ) ) { 393 393 set_post_thumbnail( $post_id, $attachment_id ); 394 394 } -
pinecast-wp-sync/trunk/includes/cron-functions.php
r2120413 r2339437 25 25 $podcasts = get_podcasts(); 26 26 27 // Sort the podcast list by last updated (lexicographical sort == chronological sort) ascending. 28 // We want to refresh the least-recently updated feed first. 29 usort($podcasts, function ($a, $b) { 30 return strcmp(strtolower($a->get_last_updated()), strtolower($b->get_last_updated())); 31 }); 32 27 33 array_walk( $podcasts, function( $podcast ) { 28 34 /** @var Podcast $podcast */ -
pinecast-wp-sync/trunk/package-lock.json
r2310549 r2339437 1 1 { 2 2 "name": "pinecast", 3 "version": "1.0. 6",3 "version": "1.0.7", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
pinecast-wp-sync/trunk/package.json
r2310549 r2339437 1 1 { 2 2 "name": "pinecast", 3 "version": "1.0. 6",3 "version": "1.0.7", 4 4 "description": "", 5 5 "main": "gulpfile.js", -
pinecast-wp-sync/trunk/pinecast.php
r2310549 r2339437 8 8 9 9 /** @var string Plugin version */ 10 public $version = '1.0. 6';10 public $version = '1.0.7'; 11 11 12 12 /** @var string Main plugin file */ -
pinecast-wp-sync/trunk/plugin.php
r2310549 r2339437 4 4 * Plugin URI: https://help.pinecast.com/articles/3072843-pinecast-wordpress-sync-plugin 5 5 * Description: Sync your Pinecast podcast episodes from Pinecast to WordPress 6 * Version: 1.0. 66 * Version: 1.0.7 7 7 * Author: Pinecast 8 8 * Author URI: https://pinecast.com -
pinecast-wp-sync/trunk/readme.txt
r2310549 r2339437 29 29 == Changelog == 30 30 31 = 1.0.7 = 32 * Feeds now refresh in order of least-recently-updated first. 33 31 34 = 1.0 = 32 35 * The initial release
Note: See TracChangeset
for help on using the changeset viewer.