WoWInterface SVN FuBaruClock

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 1 to Rev 2
    Reverse comparison

Rev 1 → Rev 2

trunk/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
trunk/FuBar_uClock.toc New file
0,0 → 1,13
## Interface: 20400
## Title: FuBar - u|cffffffffClock|r
## Notes: Minimalistic time/date display.
## Author: Ethan Centaurai
## Version: 1.0
## 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
trunk/Lib Property changes : Added: svn:externals + FuBarPlugin-2.0 http://svn.wowace.com/wowace/trunk/FuBarPlugin-2.0/FuBarPlugin-2.0/ AceLibrary http://svn.wowace.com/wowace/trunk/Ace2/AceLibrary/ AceOO-2.0 http://svn.wowace.com/wowace/trunk/Ace2/AceOO-2.0/ AceAddon-2.0 http://svn.wowace.com/wowace/trunk/Ace2/AceAddon-2.0/ AceDB-2.0 http://svn.wowace.com/wowace/trunk/Ace2/AceDB-2.0/ AceEvent-2.0 http://svn.wowace.com/wowace/trunk/Ace2/AceEvent-2.0/ Dewdrop-2.0 http://svn.wowace.com/wowace/trunk/DewdropLib/Dewdrop-2.0/
trunk/Core.lua New file
0,0 → 1,19
uClock = AceLibrary("AceAddon-2.0"):new("AceDB-2.0", "AceEvent-2.0", "FuBarPlugin-2.0")
uClock.date = ("$Date$"):match("%d%d%d%d%-%d%d%-%d%d")
uClock.revision = ("$Revision: 57912 $"):match("%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
Property changes : Added: svn:keywords + Id Date Added: svn:eol-style + native
trunk Property changes : Added: wowi:dirname + FuBaruClock