Latest Tweets Widget - Version 1.0.7

Version Description

  • Allow library coexist across plugins
Download this release

Release Info

Developer timwhitlock
Plugin Icon 128x128 Latest Tweets Widget
Version 1.0.7
Comparing to
See all releases

Code changes from version 1.0.6 to 1.0.7

Files changed (2) hide show
  1. latest-tweets.php +4 -3
  2. readme.txt +11 -2
latest-tweets.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Latest Tweets
4
  Plugin URI: http://wordpress.org/extend/plugins/latest-tweets-widget/
5
  Description: Provides a sidebar widget showing latest tweets - compatible with the new Twitter API 1.1
6
  Author: Tim Whitlock
7
- Version: 1.0.6
8
  Author URI: http://timwhitlock.info/
9
  */
10
 
@@ -182,8 +182,9 @@ add_action( 'widgets_init', 'latest_tweets_register_widget' );
182
 
183
 
184
  if( is_admin() ){
185
- require_once dirname(__FILE__).'/lib/twitter-api.php';
186
-
 
187
  // extra visibility of API settings link
188
  function latest_tweets_plugin_row_meta( $links, $file ){
189
  if( false !== strpos($file,'/latest-tweets.php') ){
4
  Plugin URI: http://wordpress.org/extend/plugins/latest-tweets-widget/
5
  Description: Provides a sidebar widget showing latest tweets - compatible with the new Twitter API 1.1
6
  Author: Tim Whitlock
7
+ Version: 1.0.7
8
  Author URI: http://timwhitlock.info/
9
  */
10
 
182
 
183
 
184
  if( is_admin() ){
185
+ if( ! function_exists('twitter_api_get') ){
186
+ require_once dirname(__FILE__).'/lib/twitter-api.php';
187
+ }
188
  // extra visibility of API settings link
189
  function latest_tweets_plugin_row_meta( $links, $file ){
190
  if( false !== strpos($file,'/latest-tweets.php') ){
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://timwhitlock.info/donate-to-a-project/
4
  Tags: twitter, tweets, oauth, api, rest, api, widget, sidebar
5
  Requires at least: 3.5.1
6
  Tested up to: 3.5.1
7
- Stable tag: 1.0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -17,7 +17,7 @@ Connect your Twitter account to this plugin and the widget will display your lat
17
  This plugin is compatible with the new **Twitter API 1.1** and provides full **OAuth** authentication via the Wordpress admin area.
18
 
19
 
20
- Built by [timwhitlock](https://twitter.com/timwhitlock)
21
 
22
  The underlying Twitter API library is [available on Github](https://github.com/timwhitlock/wp-twitter-api)
23
 
@@ -71,6 +71,9 @@ Do so at your own risk.
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 1.0.6 =
75
  * Enabled translations and added pt_BR
76
  * Switched dates to use i18n date formatter
@@ -92,6 +95,12 @@ Do so at your own risk.
92
  = 1.0.1 =
93
  * First public release
94
 
 
 
 
 
 
 
95
  == Theming ==
96
 
97
  For starters you can alter some of the HTML using built-in WordPress features.
4
  Tags: twitter, tweets, oauth, api, rest, api, widget, sidebar
5
  Requires at least: 3.5.1
6
  Tested up to: 3.5.1
7
+ Stable tag: 1.0.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
17
  This plugin is compatible with the new **Twitter API 1.1** and provides full **OAuth** authentication via the Wordpress admin area.
18
 
19
 
20
+ Built by <a href="//twitter.com/timwhitlock">@timwhitlock</a> / <a rel="author" href="https://plus.google.com/106703751121449519322">Tim Whitlock</a>
21
 
22
  The underlying Twitter API library is [available on Github](https://github.com/timwhitlock/wp-twitter-api)
23
 
71
 
72
  == Changelog ==
73
 
74
+ = 1.0.7 =
75
+ * Allow library coexist across plugins
76
+
77
  = 1.0.6 =
78
  * Enabled translations and added pt_BR
79
  * Switched dates to use i18n date formatter
95
  = 1.0.1 =
96
  * First public release
97
 
98
+ == Upgrade Notice ==
99
+
100
+ = 1.0.7 =
101
+ * Various bugfixes and improvements
102
+
103
+
104
  == Theming ==
105
 
106
  For starters you can alter some of the HTML using built-in WordPress features.