Version Description
(2014-02-08) = * Fixed bug: Empty array of feed items bug caused importing problems.
Download this release
Release Info
Developer | jeangalea |
Plugin | WP RSS Aggregator |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0 to 4.0.1
- changelog.txt +3 -0
- includes/admin-welcome.php +1 -2
- includes/feed-importing.php +3 -0
- js/admin-custom.js +25 -1
- readme.txt +5 -2
- wp-rss-aggregator.php +3 -3
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
4.0 (2014-02-04)
|
2 |
Enhanced: Improved some internal queries, for better performance.
|
3 |
Fixed bug: Feed limits were not working properly.
|
1 |
+
4.0.1 (2014-02-08)
|
2 |
+
Fixed bug: Empty array of feed items bug caused importing problems.
|
3 |
+
|
4 |
4.0 (2014-02-04)
|
5 |
Enhanced: Improved some internal queries, for better performance.
|
6 |
Fixed bug: Feed limits were not working properly.
|
includes/admin-welcome.php
CHANGED
@@ -74,8 +74,7 @@
|
|
74 |
|
75 |
<h3>Changelog for v<?php echo WPRSS_VERSION; ?></h3>
|
76 |
<ul>
|
77 |
-
<li><b>
|
78 |
-
<li><b>Fixed bug:</b> Feed limits were not working properly.</li>
|
79 |
</ul>
|
80 |
|
81 |
|
74 |
|
75 |
<h3>Changelog for v<?php echo WPRSS_VERSION; ?></h3>
|
76 |
<ul>
|
77 |
+
<li><b>Fixed bug:</b> Empty array of feed items bug caused importing problems.</li>
|
|
|
78 |
</ul>
|
79 |
|
80 |
|
includes/feed-importing.php
CHANGED
@@ -59,6 +59,9 @@
|
|
59 |
foreach( $items as $item ) {
|
60 |
$permalink = $item->get_permalink();
|
61 |
if ( !in_array( $permalink, $existing_permalinks ) ) {
|
|
|
|
|
|
|
62 |
$new_items = array_push( $new_items, $item );
|
63 |
}
|
64 |
}
|
59 |
foreach( $items as $item ) {
|
60 |
$permalink = $item->get_permalink();
|
61 |
if ( !in_array( $permalink, $existing_permalinks ) ) {
|
62 |
+
if ( ! is_array( $new_items ) ) {
|
63 |
+
$new_items = array();
|
64 |
+
}
|
65 |
$new_items = array_push( $new_items, $item );
|
66 |
}
|
67 |
}
|
js/admin-custom.js
CHANGED
@@ -4,6 +4,30 @@ function fetch_items_row_action_callback(){
|
|
4 |
var original_text = link.text();
|
5 |
var id = link.attr('pid');
|
6 |
var url = link.attr('purl');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
jQuery.post(
|
8 |
url,
|
9 |
{
|
@@ -16,7 +40,7 @@ function fetch_items_row_action_callback(){
|
|
16 |
link.text( original_text ).click( fetch_items_row_action_callback );
|
17 |
}, 3500 );
|
18 |
}
|
19 |
-
)
|
20 |
link.text('Please wait ...');
|
21 |
link.unbind('click');
|
22 |
};
|
4 |
var original_text = link.text();
|
5 |
var id = link.attr('pid');
|
6 |
var url = link.attr('purl');
|
7 |
+
|
8 |
+
jQuery.ajax({
|
9 |
+
url: url,
|
10 |
+
type: 'POST',
|
11 |
+
data: {
|
12 |
+
'action': 'wprss_fetch_feeds_row_action',
|
13 |
+
'id': id
|
14 |
+
},
|
15 |
+
success: function( response, status, jqXHR ){
|
16 |
+
console.log( jqXHR );
|
17 |
+
link.text( 'Feed items imported!' );
|
18 |
+
setTimeout( function(){
|
19 |
+
link.text( original_text ).click( fetch_items_row_action_callback );
|
20 |
+
}, 3500 );
|
21 |
+
},
|
22 |
+
error: function( response ){
|
23 |
+
link.text( 'Failed to import: ' + response );
|
24 |
+
setTimeout( function(){
|
25 |
+
link.text( original_text ).click( fetch_items_row_action_callback );
|
26 |
+
}, 3500 );
|
27 |
+
},
|
28 |
+
timeout: 60000 // set timeout to 1 minute
|
29 |
+
});
|
30 |
+
/*
|
31 |
jQuery.post(
|
32 |
url,
|
33 |
{
|
40 |
link.text( original_text ).click( fetch_items_row_action_callback );
|
41 |
}, 3500 );
|
42 |
}
|
43 |
+
);*/
|
44 |
link.text('Please wait ...');
|
45 |
link.unbind('click');
|
46 |
};
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
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
|
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 (2014-02-04) =
|
149 |
* Enhanced: Improved some internal queries, for better performance.
|
150 |
* Fixed bug: Feed limits were not working properly.
|
4 |
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.1
|
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.1 (2014-02-08) =
|
149 |
+
* Fixed bug: Empty array of feed items bug caused importing problems.
|
150 |
+
|
151 |
= 4.0 (2014-02-04) =
|
152 |
* Enhanced: Improved some internal queries, for better performance.
|
153 |
* Fixed bug: Feed limits were not working properly.
|
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,7 +29,7 @@
|
|
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-2013, Jean Galea
|
@@ -43,7 +43,7 @@
|
|
43 |
|
44 |
// Set the version number of the plugin.
|
45 |
if( !defined( 'WPRSS_VERSION' ) )
|
46 |
-
define( 'WPRSS_VERSION', '4.0', true );
|
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.1
|
7 |
Author: Jean Galea
|
8 |
Author URI: http://www.wprssaggregator.com
|
9 |
License: GPLv2
|
29 |
|
30 |
/**
|
31 |
* @package WPRSSAggregator
|
32 |
+
* @version 4.0.1
|
33 |
* @since 1.0
|
34 |
* @author Jean Galea <info@jeangalea.com>
|
35 |
* @copyright Copyright (c) 2012-2013, Jean Galea
|
43 |
|
44 |
// Set the version number of the plugin.
|
45 |
if( !defined( 'WPRSS_VERSION' ) )
|
46 |
+
define( 'WPRSS_VERSION', '4.0.1', true );
|
47 |
|
48 |
// Set the database version number of the plugin.
|
49 |
if( !defined( 'WPRSS_DB_VERSION' ) )
|