Changeset 401799
- Timestamp:
- 06/27/2011 06:52:09 PM (15 years ago)
- Location:
- twitcasting-status
- Files:
-
- 5 added
- 3 edited
-
tags/1.0.0/readme.txt (modified) (3 diffs)
-
tags/1.0.1 (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/screenshot-1.png (added)
-
tags/1.0.1/screenshot-2.png (added)
-
tags/1.0.1/twitcastingstatus.php (added)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/twitcastingstatus.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
twitcasting-status/tags/1.0.0/readme.txt
r401762 r401799 12 12 Stable tag: 1.0.0 13 13 14 Display the online/offline status of your Twitcasting.14 Display the online/offline status of a Twitcasting channel. 15 15 16 16 == Description == 17 17 18 "Twitcasting Status" is a widget plug-in to display the live/offline status of your desired Twitcasting channel, using your desired image.18 "Twitcasting Status" is a widget plug-in to display the live/offline status of a Twitcasting channel, using the images. 19 19 20 Enter your desired Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status imageof your choice.20 Enter a Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status images of your choice. 21 21 22 Twitcasting is the light-weight easy live casting service from your iPhone or Android using your Twitter or Facebook login. No registration is required. You can start the live cast ingright away.22 Twitcasting is the light-weight easy live casting service from your iPhone or Android using your Twitter or Facebook login. No registration is required. You can start the live cast right away. 23 23 24 24 Check out the demo at (although you only see it when I'm live.) … … 30 30 Plug-in Support Page 31 31 http://katzueno.com/wordpress/twitcasting-status/ 32 33 Also check out my other WordPress plugins 34 http://katzueno.com/wordpress/ 32 35 33 36 … … 79 82 - You mistyped the wrong URL of images 80 83 - Twitcasting Server may be having some problem. 81 - Your WordPress server may be blocked fromTwitcasting Server84 - Your WordPress server may be blocked by Twitcasting Server 82 85 83 86 -
twitcasting-status/trunk/readme.txt
r401762 r401799 10 10 Requires at least: 2.8.0 11 11 Tested up to: 3.1.3 12 Stable tag: 1.0. 012 Stable tag: 1.0.1 13 13 14 Display the online/offline status of your Twitcasting.14 Display the online/offline status of a Twitcasting channel. 15 15 16 16 == Description == 17 17 18 "Twitcasting Status" is a widget plug-in to display the live/offline status of your desired Twitcasting channel, using your desired image.18 "Twitcasting Status" is a widget plug-in to display the live/offline status of a Twitcasting channel, using the images. 19 19 20 Enter your desired Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status imageof your choice.20 Enter a Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status images of your choice. 21 21 22 Twitcasting is the light-weight easy live casting service from your iPhone or Android using your Twitter or Facebook login. No registration is required. You can start the live cast ingright away.22 Twitcasting is the light-weight easy live casting service from your iPhone or Android using your Twitter or Facebook login. No registration is required. You can start the live cast right away. 23 23 24 24 Check out the demo at (although you only see it when I'm live.) … … 30 30 Plug-in Support Page 31 31 http://katzueno.com/wordpress/twitcasting-status/ 32 33 Also check out my other WordPress plugins 34 http://katzueno.com/wordpress/ 32 35 33 36 … … 79 82 - You mistyped the wrong URL of images 80 83 - Twitcasting Server may be having some problem. 81 - Your WordPress server may be blocked fromTwitcasting Server84 - Your WordPress server may be blocked by Twitcasting Server 82 85 83 86 … … 90 93 91 94 == Changelog == 95 96 = 1.0.1 = 97 98 * fixed the bug that not showing the Twitcasting title 92 99 93 100 = 1.0.0 = … … 103 110 == Upgrade Notice == 104 111 112 = 1.0.1 = 113 114 Fixed minor bug. Added cache so that the large scale WordPress site can now enjoy the live status. Twitcasting Status is now calling once per min. Your status may remain online/offline max. 1 min. 115 105 116 = 1.0.0 = 106 117 -
twitcasting-status/trunk/twitcastingstatus.php
r401754 r401799 5 5 Plugin URI: http://katzueno.com/wordpress/twitcasting-status/ 6 6 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=TYQTWQ7QGN36J 7 Description: Display the online/offline status of your twitcasting.7 Description: Display the online/offline status of a Twitcasting channel. 8 8 Version: 1.0.0 9 9 Author: Katz Ueno … … 36 36 function wp_twitcasting_status () { 37 37 $widget_ops = array( 38 'description' => _e('Display Twitcasting online status')38 'description' => 'Display Twitcasting online status' 39 39 ); 40 parent::WP_Widget(false, $name = _e('Twitcasting Status'),$widget_ops);41 }40 parent::WP_Widget(false, $name = 'Twitcasting Status' ,$widget_ops); 41 } 42 42 43 43 // ============================================================ … … 105 105 // echo '<!--' . $TwitcastingStatusJson . '-->'; 106 106 // Decode JSON 107 if (function_exists(json_decode)) 107 if (function_exists(json_decode)) { 108 108 if ($TwitcastingStatusSerial->{'islive'}) { 109 109 // If live … … 119 119 </a></div> 120 120 <?php } 121 } else {122 echo _e('There is no JSON support on your server. Please contact your administrator.') 121 } else { 122 echo _e('There is no JSON support on your server. Please contact your administrator.'); 123 123 } 124 124 // ==============================
Note: See TracChangeset
for help on using the changeset viewer.