Changeset 871375
- Timestamp:
- 03/07/2014 07:00:56 PM (12 years ago)
- Location:
- rss-synchronization
- Files:
-
- 19 added
- 5 edited
-
tags/0.5.2 (added)
-
tags/0.5.2/LICENSE.txt (added)
-
tags/0.5.2/README.txt (added)
-
tags/0.5.2/admin (added)
-
tags/0.5.2/admin/class-rss-sync-admin.php (added)
-
tags/0.5.2/admin/views (added)
-
tags/0.5.2/admin/views/admin.php (added)
-
tags/0.5.2/admin/views/index.php (added)
-
tags/0.5.2/assets (added)
-
tags/0.5.2/includes (added)
-
tags/0.5.2/includes/class-rss-sync-tools.php (added)
-
tags/0.5.2/index.php (added)
-
tags/0.5.2/languages (added)
-
tags/0.5.2/languages/index.php (added)
-
tags/0.5.2/languages/rss-sync.pot (added)
-
tags/0.5.2/public (added)
-
tags/0.5.2/public/class-rss-sync.php (added)
-
tags/0.5.2/rss-sync.php (added)
-
tags/0.5.2/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/views/admin.php (modified) (2 diffs)
-
trunk/includes/class-rss-sync-tools.php (modified) (2 diffs)
-
trunk/public/class-rss-sync.php (modified) (1 diff)
-
trunk/rss-sync.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rss-synchronization/trunk/README.txt
r871328 r871375 4 4 Requires at least: 3.8 5 5 Tested up to: 3.8.1 6 Stable tag: 0.5. 16 Stable tag: 0.5.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 == Changelog == 47 47 48 = 0.5.2 = 49 * Added support to thumbnail/featured images in posts when 'Link to media gallery' is selected in the settings. 50 48 51 = 0.5.1 = 49 52 * Improved behaviour by instantly fetching feeds as soon as they are added in the settings. -
rss-synchronization/trunk/admin/views/admin.php
r871328 r871375 112 112 <br/> 113 113 <label for="image_storage_options"> 114 <?php _e(" Plugin uses hotlinking by default. To import RSS feed images to your media gallery select 'Link to media gallery'."); ?>114 <?php _e("Note: For featured/thumbnail images to work in posts, choose 'Link to media gallery'"); ?> 115 115 </label> 116 116 </fieldset> … … 127 127 if($existing['rss_feeds'] != $options['rss_feeds']){ 128 128 include_once( ABSPATH . 'wp-content/plugins/rss-sync/includes/class-rss-sync-tools.php' ); 129 129 130 130 $tools = RSS_Sync_Tools::get_instance(); 131 131 $tools->rss_sync_fetch($options['rss_feeds']); -
rss-synchronization/trunk/includes/class-rss-sync-tools.php
r871328 r871375 57 57 58 58 if(is_string($raw_feeds_to_fetch)){ 59 write_log('HERE!');60 59 $rss_feeds_to_fetch = explode("\r\n", $raw_feeds_to_fetch); 61 60 } … … 347 346 $attach_data = wp_generate_attachment_metadata( $attach_id, $url ); 348 347 wp_update_attachment_metadata( $attach_id, $attach_data ); 348 //Set as featured image 349 set_post_thumbnail( $post_id, $attach_id ); 349 350 350 351 return $upload; -
rss-synchronization/trunk/public/class-rss-sync.php
r871328 r871375 27 27 * Plugin version, used for cache-busting of style and script file references. 28 28 * 29 * @since 0.2.030 *31 29 * @var string 32 30 */ 33 const VERSION = '0.5. 1';31 const VERSION = '0.5.2'; 34 32 35 33 const RSS_ID_CUSTOM_FIELD = 'rss_id'; -
rss-synchronization/trunk/rss-sync.php
r871328 r871375 13 13 * Plugin Name: RSS Sync 14 14 * Description: Synchronize posts with external RSS feed. 15 * Version: 0.5. 115 * Version: 0.5.2 16 16 * Author: Horta 17 17 * Text Domain: rss-sync
Note: See TracChangeset
for help on using the changeset viewer.