Changeset 133881
- Timestamp:
- 07/10/2009 03:10:08 PM (17 years ago)
- Location:
- twitter-friends-widget/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (6 diffs)
-
twitter-friends-widget.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
twitter-friends-widget/trunk/readme.txt
r123472 r133881 69 69 == Changelog == 70 70 71 = Version 3.02 = 71 = 3.10 = 72 * Fixed bug that prevented Followeres from being shown 73 74 = 3.02 = 72 75 * Added WordPress Mu compatibility. (Fixed issue with WPMU users not being able to save settings). 73 76 * Minor update to CSS used to display images. 74 77 * Added Settings link to Plugins page. (Appears beside Deactivate and Edit links) 75 78 76 = Version3.01 =79 = 3.01 = 77 80 * Updated CSS for better compatibility with IE. 78 81 79 = Version3.0 =82 = 3.0 = 80 83 * Complete rewrite of plugin. 81 84 * Images displayed using DIV's instead of TABLE. … … 92 95 93 96 94 = Version2.7 =97 = 2.7 = 95 98 * Added shortcode. 96 99 * Added rel="nofollow" to Twitter Profile/ RSS links. … … 98 101 * Bug Fix: Updated code for genarating output table to remove an XHTML validation error. 99 102 100 = Version2.6 =103 = 2.6 = 101 104 * Added option to specify whether Friends or Followers are displayed. 102 105 * Updated code to use curl instead of pmc_http_class to connect to Twitter. … … 106 109 * Bug Fix: Twitter ID not updated correctly. 107 110 108 = Version2.5.1 =111 = 2.5.1 = 109 112 * Incorporated patch from David Jack Wange Olrik to rename class_http.php and generic http() class to avoid naming conflicts. 110 113 111 = Version2.5 =114 = 2.5 = 112 115 * Added "Twitter Friends Widget - Advanced Settings" plugin. 113 116 * Added Delete Friends option. … … 118 121 * Fixed minor issue with profile images being incorrectly displayed in sidebar. 119 122 120 = Version2.4 =123 = 2.4 = 121 124 * Added option to change table style. 122 125 123 = Version2.3 =126 = 2.3 = 124 127 * Added option to enable/ disable "Subscribe to My Twitter Feed" link. 125 128 * Added option to add link to Widget Title 126 129 127 = Version2.2 =130 = 2.2 = 128 131 * Fixed a bug where ther limit specified in the widget settings was not being applied. 129 132 130 = Version2.1 =133 = 2.1 = 131 134 * Removed wp-cron based caching as this was unreliable. 132 135 * Added my own simple scheduler for updating the cache. 133 136 134 = Version2.0 =137 = 2.0 = 135 138 * Complete re-write of the plugin 136 139 * Added caching via a new table added to the WordPress database … … 139 142 * Added RSS icon to subscribe link 140 143 141 = Version1.21 =144 = 1.21 = 142 145 * Fixed bug with background and text colour styles not being applied correctly 143 146 144 = Version1.2 =147 = 1.2 = 145 148 * Due to a large number of issues with the caching function, caching has been removed. See FAQ for more details. 146 149 * Added link to users Twitter RSS 147 150 * Added option to change background and text colours. 148 151 149 = Version1.13 =152 = 1.13 = 150 153 * Added blank http_friends.xml to cache so that cache folder will be included with plugin .zip. 151 154 * Updated installation instructions to reflect that cache must be writable. 152 155 * Updated readme with error message regarding unwritable cache folder. 153 156 154 = Version1.12 =157 = 1.12 = 155 158 Fixed issue with profile images not being displayed correctly. 156 159 157 = Version1.11 =160 = 1.11 = 158 161 Fixed bug with local caching 159 162 160 = Version1.1 =163 = 1.1 = 161 164 * Changed from using "normal" size images to "mini" size profile images 162 165 * Added styles to header -
twitter-friends-widget/trunk/twitter-friends-widget.php
r123472 r133881 4 4 Plugin URI: http://www.paulmc.org/whatithink/wordpress/plugins/twitter-friends-widget/ 5 5 Description: Widget to display your Twitter Friends in the sidebar. 6 Version: 3. 026 Version: 3.1 7 7 Author: Paul McCarthy 8 8 Author URI: http://www.paulmc.org/whatithink … … 263 263 update_option('pmc_TF_user', $pmcUser); 264 264 //update the password 265 update_option('pmc_TF_password', $pmc User);265 update_option('pmc_TF_password', $pmcPass); 266 266 //delete current friends from the database 267 267 $pmcSQL = "DELETE FROM $pmcTable WHERE `id` LIKE '%'"; … … 529 529 //set the url to retrieve friends from Twitter dependent on the type to retrieve 530 530 $pmcURL = 'http://twitter.com/statuses/followers.xml?page=' . $i; 531 531 532 532 533 //set the curl url
Note: See TracChangeset
for help on using the changeset viewer.