Plugin Directory

Changeset 401799


Ignore:
Timestamp:
06/27/2011 06:52:09 PM (15 years ago)
Author:
katz515
Message:

Adding 1.0.1 to fix the bug

Location:
twitcasting-status
Files:
5 added
3 edited

Legend:

Unmodified
Added
Removed
  • twitcasting-status/tags/1.0.0/readme.txt

    r401762 r401799  
    1212Stable tag: 1.0.0
    1313
    14 Display the online/offline status of your Twitcasting.
     14Display the online/offline status of a Twitcasting channel.
    1515
    1616== Description ==
    1717
    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.
    1919
    20 Enter your desired Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status image of your choice.
     20Enter a Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status images of your choice.
    2121
    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 casting right away.
     22Twitcasting 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.
    2323
    2424Check out the demo at (although you only see it when I'm live.)
     
    3030Plug-in Support Page
    3131http://katzueno.com/wordpress/twitcasting-status/
     32
     33Also check out my other WordPress plugins
     34http://katzueno.com/wordpress/
    3235
    3336
     
    7982- You mistyped the wrong URL of images
    8083- Twitcasting Server may be having some problem.
    81 - Your WordPress server may be blocked from Twitcasting Server
     84- Your WordPress server may be blocked by Twitcasting Server
    8285
    8386
  • twitcasting-status/trunk/readme.txt

    r401762 r401799  
    1010Requires at least: 2.8.0
    1111Tested up to: 3.1.3
    12 Stable tag: 1.0.0
     12Stable tag: 1.0.1
    1313
    14 Display the online/offline status of your Twitcasting.
     14Display the online/offline status of a Twitcasting channel.
    1515
    1616== Description ==
    1717
    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.
    1919
    20 Enter your desired Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status image of your choice.
     20Enter a Twitcasting (Twitter) ID, and it will fetch the online/offline status. Then it will display the online/offline status images of your choice.
    2121
    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 casting right away.
     22Twitcasting 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.
    2323
    2424Check out the demo at (although you only see it when I'm live.)
     
    3030Plug-in Support Page
    3131http://katzueno.com/wordpress/twitcasting-status/
     32
     33Also check out my other WordPress plugins
     34http://katzueno.com/wordpress/
    3235
    3336
     
    7982- You mistyped the wrong URL of images
    8083- Twitcasting Server may be having some problem.
    81 - Your WordPress server may be blocked from Twitcasting Server
     84- Your WordPress server may be blocked by Twitcasting Server
    8285
    8386
     
    9093
    9194== Changelog ==
     95
     96= 1.0.1 =
     97
     98* fixed the bug that not showing the Twitcasting title
    9299
    93100= 1.0.0 =
     
    103110== Upgrade Notice ==
    104111
     112= 1.0.1 =
     113
     114Fixed 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
    105116= 1.0.0 =
    106117
  • twitcasting-status/trunk/twitcastingstatus.php

    r401754 r401799  
    55Plugin URI: http://katzueno.com/wordpress/twitcasting-status/
    66Donate 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.
     7Description: Display the online/offline status of a Twitcasting channel.
    88Version: 1.0.0
    99Author: Katz Ueno
     
    3636    function wp_twitcasting_status () {
    3737        $widget_ops = array(
    38         'description' => _e('Display Twitcasting online status')
     38        'description' => 'Display Twitcasting online status'
    3939    );
    40     parent::WP_Widget(false, $name = _e('Twitcasting Status'),$widget_ops);
    41 }
     40    parent::WP_Widget(false, $name = 'Twitcasting Status' ,$widget_ops);
     41    }
    4242 
    4343    // ============================================================
     
    105105            // echo '<!--' . $TwitcastingStatusJson . '-->';
    106106            // Decode JSON
    107         if (function_exists(json_decode))
     107        if (function_exists(json_decode)) {
    108108            if ($TwitcastingStatusSerial->{'islive'}) {
    109109                // If live
     
    119119                </a></div>
    120120                <?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.');
    123123        }
    124124        // ==============================
Note: See TracChangeset for help on using the changeset viewer.