Version Description
- Fixed imcompatibility of other jQuery plugins due to the usage of the latest version of jQuery.
Download this release
Release Info
Developer | vaakash |
Plugin | Super RSS Reader |
Version | 2.3 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.3
- readme.txt +4 -2
- super-rss-reader.php +4 -4
readme.txt
CHANGED
@@ -6,8 +6,8 @@ Tags: rss, feeds, widget, links, twitter, admin, plugin, feed, posts, page, tick
|
|
6 |
License: GPLv2 or later
|
7 |
Donate Link: http://bit.ly/srrdonate
|
8 |
Requires at least: 2.8
|
9 |
-
Tested up to: 3.5
|
10 |
-
Stable tag: 2.
|
11 |
|
12 |
An awesome RSS widget plugin, which displays feeds like news ticker effect with thumbnails, multiple tabbed feeds, customizable color styles and more
|
13 |
|
@@ -85,6 +85,8 @@ For more FAQs just check out the [official page](http://www.aakashweb.com/wordpr
|
|
85 |
[More screenshots in Aakash Web](http://www.aakashweb.com/wordpress-plugins/super-rss-reader/)
|
86 |
|
87 |
== Changelog ==
|
|
|
|
|
88 |
|
89 |
= 2.2 =
|
90 |
* Displays "thumbnail" of the feed item if available.
|
6 |
License: GPLv2 or later
|
7 |
Donate Link: http://bit.ly/srrdonate
|
8 |
Requires at least: 2.8
|
9 |
+
Tested up to: 3.5
|
10 |
+
Stable tag: 2.3
|
11 |
|
12 |
An awesome RSS widget plugin, which displays feeds like news ticker effect with thumbnails, multiple tabbed feeds, customizable color styles and more
|
13 |
|
85 |
[More screenshots in Aakash Web](http://www.aakashweb.com/wordpress-plugins/super-rss-reader/)
|
86 |
|
87 |
== Changelog ==
|
88 |
+
= 2.3 =
|
89 |
+
* Fixed imcompatibility of other jQuery plugins due to the usage of the latest version of jQuery.
|
90 |
|
91 |
= 2.2 =
|
92 |
* Displays "thumbnail" of the feed item if available.
|
super-rss-reader.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.aakashweb.com/wordpress-plugins/super-rss-reader/
|
|
5 |
Author URI: http://www.aakashweb.com/
|
6 |
Description: Super RSS Reader is jQuery based RSS reader widget, which displays the RSS feeds in the widget in an attractive way. It uses the jQuery easy ticker plugin to add a news ticker like effect to the RSS feeds. Multiple RSS feeds can be added for a single widget and they get seperated in tabs. <a href="http://www.youtube.com/watch?v=02aOG_-98Tg" target="_blank" title="Super RSS Reader demo video">Check out the demo video</a>.
|
7 |
Author: Aakash Chakravarthy
|
8 |
-
Version: 2.
|
9 |
*/
|
10 |
|
11 |
if(!defined('WP_CONTENT_URL')) {
|
@@ -14,15 +14,15 @@ if(!defined('WP_CONTENT_URL')) {
|
|
14 |
$srr_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
|
15 |
}
|
16 |
|
17 |
-
define('SRR_VERSION', '2.
|
18 |
define('SRR_AUTHOR', 'Aakash Chakravarthy');
|
19 |
define('SRR_URL', $srr_url);
|
20 |
|
21 |
## Include the required scripts
|
22 |
function srr_public_scripts(){
|
23 |
// jQuery
|
24 |
-
wp_deregister_script('jquery');
|
25 |
-
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');
|
26 |
wp_enqueue_script('jquery');
|
27 |
|
28 |
// Super RSS Reader JS and CSS
|
5 |
Author URI: http://www.aakashweb.com/
|
6 |
Description: Super RSS Reader is jQuery based RSS reader widget, which displays the RSS feeds in the widget in an attractive way. It uses the jQuery easy ticker plugin to add a news ticker like effect to the RSS feeds. Multiple RSS feeds can be added for a single widget and they get seperated in tabs. <a href="http://www.youtube.com/watch?v=02aOG_-98Tg" target="_blank" title="Super RSS Reader demo video">Check out the demo video</a>.
|
7 |
Author: Aakash Chakravarthy
|
8 |
+
Version: 2.3
|
9 |
*/
|
10 |
|
11 |
if(!defined('WP_CONTENT_URL')) {
|
14 |
$srr_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
|
15 |
}
|
16 |
|
17 |
+
define('SRR_VERSION', '2.3');
|
18 |
define('SRR_AUTHOR', 'Aakash Chakravarthy');
|
19 |
define('SRR_URL', $srr_url);
|
20 |
|
21 |
## Include the required scripts
|
22 |
function srr_public_scripts(){
|
23 |
// jQuery
|
24 |
+
//wp_deregister_script('jquery');
|
25 |
+
//wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');
|
26 |
wp_enqueue_script('jquery');
|
27 |
|
28 |
// Super RSS Reader JS and CSS
|