• World of Warcraft Addons
Advertisement
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

FuBar_AlarmClockFu

  Download the Curse Client

Project Updated:
Files Updated: Wed, May 7 2008
Category: Miscellaneous
Tags:

, , and [Edit Tags]

Project Manager: wanthony
Current Version: 1.2.1
Downloads Today: 71
Downloads Total: 13,078
Favorites: 97
Comments: 38
  • About FuBar_AlarmClockFu
  •  

What is it?

FuBar_AlarmClockFu is a simple alarm clock for FuBar users. The addon currently includes a 12 / 24 hour clock and three alarms (which trigger a basic message box when it is activated).

Please, if you have any feature requests, use the ticket system. If the feature is within the scope of the project, I'll gladly try my best to implement it.

AlarmClockFu is now hosted at wowace.com. The most recent version of the addon may be obtained through WowAceUpdater, although be aware that even though I try to only commit working code, some bugs may show up.

Options

Options include 12 / 24 hour display, local / server time display (or both), and configuration of three alarms. All three alarms are set via the drop-down menu.

Each of the three alarms can have a custom message displayed when they go off.

Roadmap

Feature requests will be a top priority over the features described below.

Version 1.1.0

  • Looking for user feedback
  • Fix bugs created in implementation of the alarm tooltips
  • Fix countdown bug
  • Implement a snooze feature
  • Downloads (20)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  FuBar_AlarmClockFu-r68634.11 Beta 2.4.3 2,579 8/6/2008
  FuBar_AlarmClockFu-r68634.10 Beta 2.4.3 6 8/2/2008
  FuBar_AlarmClockFu-r68634.9 Beta 2.4.3 6 7/31/2008
  FuBar_AlarmClockFu-r68634.8 Beta 2.4.3 5 7/21/2008
  FuBar_AlarmClockFu-r68634.7 Beta 2.4.3 4 7/18/2008
Advertisement
  • Screenshots (1)
  •  
  • Comments

Add Comment

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • As a college student it'd be nice to set multiple alarms so I never miss class 'cause i'm not watching the clock.

  • Hi wanthony,

    how about adding the option to set a countdown. Sometimes I want an alarm in 45 minutes for example but I am too lazy to look at the current time and then calculate the time of the alarm :)

    That would be a great feature!

  • Any thought on hosting this over at wowace.com? It would be super if updates were accessible through WAU. :)

  • I installed version 0.5.1 and it display well in the fubar bar. I configured an alarm and waited the good time and nothing happend. So I check the source code and I found that you use:

    function AlarmClockFu:AlarmClockTrigger() _ERRORMESSAGE(AlarmClockFu.db.profile.alarmmsg) end

    But since the patch 2.1, the function _ERRORMESSAGE will not display anything except for the developer who enable the debug mode ....

    More info on the patch release here: http://forums.worldofwarcraft.com/thread.html?topicId=94299464&sid=1 And here: http://www.wowwiki.com/API_ERRORMESSAGE

    So I replaced the function by: function AlarmClockFu:AlarmClockTrigger() PlaySound("ReadyCheck"); SendChatMessage(AlarmClockFu.db.profile.alarmmsg); end

    And it works fine. This is a small workaround, the good solution is to create a frame with a OK button.