oAuth Twitter Feed for Developers - Version 2.0.1

Version Description

  • Fix an issue with upgrading from 1.0.6
Download this release

Release Info

Developer stormuk
Plugin Icon wp plugin oAuth Twitter Feed for Developers
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0 to 2.0.1

README.md CHANGED
@@ -1,7 +1,7 @@
1
  Storm Twitter Feed for WordPress
2
  ================================
3
 
4
- Twitter API 1.1 compliant plugin that provides a single function for getting an array of a twitter timeline for use by theme developers.
5
 
6
  The new Twitter API requires you be oAuth'd before you can request a list of tweets, this means that all of the existing Twitter plugins that simply make an AJAX request for to the JSON API endpoint will break as of March 2013.
7
 
@@ -60,7 +60,7 @@ Uses Abraham Williams's Twitter OAuth class.
60
  About
61
  =====
62
 
63
- Version: 2.0
64
 
65
  Written by Liam Gladdy of Storm Consultancy - <http://www.stormconsultancy.co.uk>
66
 
1
  Storm Twitter Feed for WordPress
2
  ================================
3
 
4
+ A Twitter API 1.1 compliant wordpress plugin that provides an array of a users timeline from Twitter for use by theme developers.
5
 
6
  The new Twitter API requires you be oAuth'd before you can request a list of tweets, this means that all of the existing Twitter plugins that simply make an AJAX request for to the JSON API endpoint will break as of March 2013.
7
 
60
  About
61
  =====
62
 
63
+ Version: 2.0.1
64
 
65
  Written by Liam Gladdy of Storm Consultancy - <http://www.stormconsultancy.co.uk>
66
 
StormTwitter.class.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- * Version 2.0
4
  * The base class for the storm twitter feed for developers.
5
  * This class provides all the things needed for the wordpress plugin, but in theory means you don't need to use it with wordpress.
6
  * What could go wrong?
1
  <?php
2
  /*
3
+ * Version 2.0.1
4
  * The base class for the storm twitter feed for developers.
5
  * This class provides all the things needed for the wordpress plugin, but in theory means you don't need to use it with wordpress.
6
  * What could go wrong?
readme.txt CHANGED
@@ -4,12 +4,12 @@ Donate link: http://www.stormconsultancy.co.uk/
4
  Tags: twitter, oauth, feed, tweets
5
  Requires at least: 3.4
6
  Tested up to: 3.5
7
- Stable tag: 2.0
8
- Version: 2.0
9
  License: MIT
10
  License URI: http://opensource.org/licenses/MIT
11
 
12
- Twitter API 1.1 compliant plugin that provides a single function for getting an array of a twitter timeline for use by theme developers.
13
 
14
  == Description ==
15
 
@@ -66,7 +66,7 @@ Uses Abraham Williams's Twitter OAuth class.
66
 
67
  == About ==
68
 
69
- Version: 2.0
70
 
71
  Written by Liam Gladdy of Storm Consultancy - <http://www.stormconsultancy.co.uk>
72
 
@@ -100,6 +100,9 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
100
 
101
  == Changelog ==
102
 
 
 
 
103
  = 2.0.0 =
104
  * Support multiple screennames
105
  * Support additional parameters to pass on to twitter (for excluding RTs, etc)
4
  Tags: twitter, oauth, feed, tweets
5
  Requires at least: 3.4
6
  Tested up to: 3.5
7
+ Stable tag: 2.0.1
8
+ Version: 2.0.1
9
  License: MIT
10
  License URI: http://opensource.org/licenses/MIT
11
 
12
+ Twitter API 1.1 compliant plugin that provides a function to get an array of tweets from the auth'd users Twitter feed for use in themes.
13
 
14
  == Description ==
15
 
66
 
67
  == About ==
68
 
69
+ Version: 2.0.1
70
 
71
  Written by Liam Gladdy of Storm Consultancy - <http://www.stormconsultancy.co.uk>
72
 
100
 
101
  == Changelog ==
102
 
103
+ = 2.0.1 =
104
+ * Fix an issue with upgrading from 1.0.6
105
+
106
  = 2.0.0 =
107
  * Support multiple screennames
108
  * Support additional parameters to pass on to twitter (for excluding RTs, etc)
twitter-feed-for-developers.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /*
3
  Plugin Name: oAuth Twitter Feed for Developers
4
- Description: Twitter API 1.1 compliant plugin that provides a single function for getting an array of a twitter timeline for use by theme developers.
5
- Version: 2.0
6
  License: MIT
7
  License URI: http://opensource.org/licenses/MIT
8
  Author: Storm Consultancy (Liam Gladdy)
1
  <?php
2
  /*
3
  Plugin Name: oAuth Twitter Feed for Developers
4
+ Description: Twitter API 1.1 compliant plugin that provides a function to get an array of tweets from the auth'd users Twitter feed for use in themes.
5
+ Version: 2.0.1
6
  License: MIT
7
  License URI: http://opensource.org/licenses/MIT
8
  Author: Storm Consultancy (Liam Gladdy)