Version Description
(2014-03-05) = * Fixed bug: Hook change in last version suspected reason for some installations having non-updated feed items.
Download this release
Release Info
Developer | jeangalea |
Plugin | WP RSS Aggregator |
Version | 4.0.6 |
Comparing to | |
See all releases |
Code changes from version 4.0.5 to 4.0.6
- changelog.txt +3 -0
- includes/admin-welcome.php +1 -6
- includes/cron-jobs.php +2 -2
- readme.txt +4 -1
- wp-rss-aggregator.php +4 -4
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
4.0.5 (2014-03-03)
|
2 |
New Feature: Time ago added as an option.
|
3 |
Enhanced: The plugin now allows the use of RSS and Atom feeds that do not specify the correct MIME type.
|
1 |
+
4.0.6 (2014-03-05)
|
2 |
+
Fixed bug: Hook change in last version suspected reason for some installations having non-updated feed items.
|
3 |
+
|
4 |
4.0.5 (2014-03-03)
|
5 |
New Feature: Time ago added as an option.
|
6 |
Enhanced: The plugin now allows the use of RSS and Atom feeds that do not specify the correct MIME type.
|
includes/admin-welcome.php
CHANGED
@@ -74,12 +74,7 @@
|
|
74 |
|
75 |
<h3>Changelog for v<?php echo WPRSS_VERSION; ?></h3>
|
76 |
<ul>
|
77 |
-
<li><
|
78 |
-
<li><b>Enhanced:</b> The plugin now allows the use of RSS and Atom feeds that do not specify the correct MIME type.</li>
|
79 |
-
<li><b>Enhanced:</b> Better performance due to better hook usage.</li>
|
80 |
-
<li><b>Fixed bug:</b> Facebook page feed URL conversion was not being triggered for new feed sources.</li>
|
81 |
-
<li><b>Fixed bug:</b> Styles fix for pagination.</li>
|
82 |
-
<li><b>Fixed bug:</b> Removed empty spaces in logging.</li>
|
83 |
</ul>
|
84 |
|
85 |
|
74 |
|
75 |
<h3>Changelog for v<?php echo WPRSS_VERSION; ?></h3>
|
76 |
<ul>
|
77 |
+
<li><strong>Fixed bug:</strong> Hook change in last version suspected reason for some installations having non-updated feed items.</li>
|
|
|
|
|
|
|
|
|
|
|
78 |
</ul>
|
79 |
|
80 |
|
includes/cron-jobs.php
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
add_action( 'wprss_pause_feed_schedule_hook', 'wprss_pause_feed_source', 10 , 1 );
|
12 |
|
13 |
|
14 |
-
add_action( '
|
15 |
/**
|
16 |
* Creates the cron to fetch feeds every hour
|
17 |
*
|
@@ -33,7 +33,7 @@
|
|
33 |
}
|
34 |
|
35 |
|
36 |
-
add_action( '
|
37 |
/**
|
38 |
* Creates the cron to truncate wprss_feed_item posts daily
|
39 |
*
|
11 |
add_action( 'wprss_pause_feed_schedule_hook', 'wprss_pause_feed_source', 10 , 1 );
|
12 |
|
13 |
|
14 |
+
add_action( 'init', 'wprss_schedule_fetch_all_feeds_cron' );
|
15 |
/**
|
16 |
* Creates the cron to fetch feeds every hour
|
17 |
*
|
33 |
}
|
34 |
|
35 |
|
36 |
+
add_action( 'init', 'wprss_schedule_truncate_posts_cron' );
|
37 |
/**
|
38 |
* Creates the cron to truncate wprss_feed_item posts daily
|
39 |
*
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.wprssaggregator.com
|
|
5 |
Tags: rss, feeds, aggregation, autoblog aggregator, rss import, feed aggregator, rss aggregator, multiple rss feeds, multi rss feeds, rss multi importer, feed import, feed import, multiple feed import, feed aggregation, rss feader, feed reader, feed to post, multiple feeds, multi feed importer, multi feed import, multi import, autoblogging, autoblogger
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 3.8.1
|
8 |
-
Stable tag: 4.0.
|
9 |
License: GPLv2 or later
|
10 |
Imports and aggregates multiple RSS Feeds using SimplePie. Outputs feeds sorted by date (latest first).
|
11 |
|
@@ -145,6 +145,9 @@ Yes, within the [Feed to Post](http://www.wprssaggregator.com/extensions/feed-to
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
148 |
= 4.0.5 (2014-03-03) =
|
149 |
* New Feature: Time ago added as an option.
|
150 |
* Enhanced: The plugin now allows the use of RSS and Atom feeds that do not specify the correct MIME type.
|
5 |
Tags: rss, feeds, aggregation, autoblog aggregator, rss import, feed aggregator, rss aggregator, multiple rss feeds, multi rss feeds, rss multi importer, feed import, feed import, multiple feed import, feed aggregation, rss feader, feed reader, feed to post, multiple feeds, multi feed importer, multi feed import, multi import, autoblogging, autoblogger
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 3.8.1
|
8 |
+
Stable tag: 4.0.6
|
9 |
License: GPLv2 or later
|
10 |
Imports and aggregates multiple RSS Feeds using SimplePie. Outputs feeds sorted by date (latest first).
|
11 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 4.0.6 (2014-03-05) =
|
149 |
+
* Fixed bug: Hook change in last version suspected reason for some installations having non-updated feed items.
|
150 |
+
|
151 |
= 4.0.5 (2014-03-03) =
|
152 |
* New Feature: Time ago added as an option.
|
153 |
* Enhanced: The plugin now allows the use of RSS and Atom feeds that do not specify the correct MIME type.
|
wp-rss-aggregator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP RSS Aggregator
|
4 |
Plugin URI: http://www.wprssaggregator.com
|
5 |
Description: Imports and aggregates multiple RSS Feeds using SimplePie
|
6 |
-
Version: 4.0.
|
7 |
Author: Jean Galea
|
8 |
Author URI: http://www.wprssaggregator.com
|
9 |
License: GPLv2
|
@@ -29,10 +29,10 @@
|
|
29 |
|
30 |
/**
|
31 |
* @package WPRSSAggregator
|
32 |
-
* @version 4.0.
|
33 |
* @since 1.0
|
34 |
* @author Jean Galea <info@jeangalea.com>
|
35 |
-
* @copyright Copyright (c) 2012-
|
36 |
* @link http://www.wpmayor.com/
|
37 |
* @license http://www.gnu.org/licenses/gpl.html
|
38 |
*/
|
@@ -43,7 +43,7 @@
|
|
43 |
|
44 |
// Set the version number of the plugin.
|
45 |
if( !defined( 'WPRSS_VERSION' ) )
|
46 |
-
define( 'WPRSS_VERSION', '4.0.
|
47 |
|
48 |
// Set the database version number of the plugin.
|
49 |
if( !defined( 'WPRSS_DB_VERSION' ) )
|
3 |
Plugin Name: WP RSS Aggregator
|
4 |
Plugin URI: http://www.wprssaggregator.com
|
5 |
Description: Imports and aggregates multiple RSS Feeds using SimplePie
|
6 |
+
Version: 4.0.6
|
7 |
Author: Jean Galea
|
8 |
Author URI: http://www.wprssaggregator.com
|
9 |
License: GPLv2
|
29 |
|
30 |
/**
|
31 |
* @package WPRSSAggregator
|
32 |
+
* @version 4.0.6
|
33 |
* @since 1.0
|
34 |
* @author Jean Galea <info@jeangalea.com>
|
35 |
+
* @copyright Copyright (c) 2012-2014, Jean Galea
|
36 |
* @link http://www.wpmayor.com/
|
37 |
* @license http://www.gnu.org/licenses/gpl.html
|
38 |
*/
|
43 |
|
44 |
// Set the version number of the plugin.
|
45 |
if( !defined( 'WPRSS_VERSION' ) )
|
46 |
+
define( 'WPRSS_VERSION', '4.0.6', true );
|
47 |
|
48 |
// Set the database version number of the plugin.
|
49 |
if( !defined( 'WPRSS_DB_VERSION' ) )
|