WoWInterface SVN FuBaruClock

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 5 to Rev 6
    Reverse comparison

Rev 5 → Rev 6

Core.lua File deleted
embeds.xml File deleted \ No newline at end of file
FuBar_uClock.toc File deleted
FuBar_uClock/embeds.xml New file
0,0 → 1,10
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">
 
<Script file="Lib\AceLibrary\AceLibrary.lua"/>
<Script file="Lib\AceOO-2.0\AceOO-2.0.lua"/>
<Script file="Lib\AceEvent-2.0\AceEvent-2.0.lua"/>
<Script file="Lib\AceDB-2.0\AceDB-2.0.lua"/>
<Script file="Lib\AceAddon-2.0\AceAddon-2.0.lua"/>
<Script file="Lib\FuBarPlugin-2.0\FuBarPlugin-2.0.lua"/>
 
</Ui>
\ No newline at end of file Property changes : Added: svn:eol-style + native
FuBar_uClock/FuBar_uClock.toc New file
0,0 → 1,13
## Interface: 20400
## Title: FuBar - |cff00ff00u|cffffffffClock|r
## Notes: Minimalistic time/date display.
## Author: Ethan Centaurai
## Version: 1.0.wowi:revision
## X-Category: Miscellaneous
## X-eMail: ethan.centaurai@live.co.uk
## X-Donate: PayPal:ethan.centaurai@live.co.uk
## X-Embeds: Ace2, FuBarPlugin-2.0
## OptionalDeps: Ace2, FuBar
## SavedVariables: uClockDB
embeds.xml
Core.lua
Property changes : Added: svn:eol-style + native
FuBar_uClock/Core.lua New file
0,0 → 1,24
--[[ $Id: Core.lua 4 2008-08-23 16:03:27Z DarkImakuni-16655 $ ]]--
 
uClock = AceLibrary("AceAddon-2.0"):new("AceDB-2.0", "AceEvent-2.0", "FuBarPlugin-2.0")
uClock.date = ("$Date: 2008-08-23 17:03:27 +0100 (Sat, 23 Aug 2008) $"):match("%d%d%d%d%-%d%d%-%d%d")
uClock.blizzardTooltip = true
uClock.cannotHideText = true
 
uClock:RegisterDB("uClockDB")
 
function uClock:OnEnable()
self:ScheduleRepeatingEvent(self.UpdateDisplay, 1, self)
end
 
function uClock:OnTextUpdate()
self:SetText(date("%H:%M:%S"))
end
 
function uClock:OnTooltipUpdate()
GameTooltip:SetText(date("%A, %B %d, %Y"))
end
 
function uClock:OnClick()
ToggleTimeManager()
end
Property changes : Added: svn:eol-style + native
. Property changes : Deleted: wowi:dirname - FuBar_uClock