Plugin Directory

Changeset 215407


Ignore:
Timestamp:
03/09/2010 05:43:01 PM (16 years ago)
Author:
xandertan
Message:

Fixing the negative minute bug.

Location:
world-clock-widget/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • world-clock-widget/trunk/readme.txt

    r212763 r215407  
    55Requires at least: 2.6.5
    66Tested up to: 2.9.2
    7 Stable tag: 0.7.0
     7Stable tag: 0.7.1
    88
    99Sidebar widget to easy customize and display your date and time of multiple timezones. All settings are available from Sidebar Widget Admin.
     
    2424== Changelog ==
    2525
     26= 0.7.1 =
     27* Fix the negative minute.
     28
    2629= 0.7.0 =
    2730* Edit function fix.
     
    3942
    4043= Do you have any screenshot? =
    41 No, I don't. But I can show you my development space, check this out: [Wordpress 2.6.5](http://xandertan.selfip.org/dev/wp/2_6_5/ "Wordpress 2.6.5"), [Wordpress 2.7.1](http://xandertan.selfip.org/dev/wp/2_7_1/ "Wordpress 2.7.1"), and [Wordpress 2.8.0](http://xandertan.selfip.org/dev/wp/2_8_0/ "Wordpress 2.8.0")
     44No, I don't. But I can show you my development space, check this out: [Wordpress 2.6.5](http://xandertan.selfip.org/dev/wp/2_6_5/ "Wordpress 2.6.5"), [Wordpress 2.7.1](http://xandertan.selfip.org/dev/wp/2_7_1/ "Wordpress 2.7.1"), [Wordpress 2.8.0](http://xandertan.selfip.org/dev/wp/2_8_0/ "Wordpress 2.8.0"), and [Wordpress 2.9.2](http://xandertan.selfip.org/dev/wp/2_9_2/ "Wordpress 2.9.2")
    4245
    4346= What is Daylight Saving Time? =
  • world-clock-widget/trunk/worldclock.js

    r128726 r215407  
    3131 
    3232  if(dateHour["min"] >= 60) {
    33     dateHour["min"] -= 60;
    34     dateHour["hour"] += 1;
     33    dateHour["min"] -= 60;
     34    dateHour["hour"] += 1;
     35  }
     36
     37  if(dateHour["min"] < 0) {
     38    dateHour["min"] += 60;
     39    dateHour["hour"] -= 1;
    3540  }
    3641 
  • world-clock-widget/trunk/worldclock.php

    r212763 r215407  
    22/*
    33Plugin Name: World Clock
    4 Version: 0.7.0
     4Version: 0.7.1
    55Plugin URI: http://wordpress.org/extend/plugins/world-clock-widget/
    66Description: Adds a multi-timezone clock widget to the sidebar.
Note: See TracChangeset for help on using the changeset viewer.