WoWInterface SVN UnitFrameTweaks

Compare Revisions

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

Rev 5 → Rev 6

UnitFrameTweaks/UnitFrameTweaks.xml File deleted
UnitFrameTweaks/Loader.xml New file
0,0 → 1,17
<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">
 
<!-- Libs -->
<Include file="Libs\Portfolio\Portfolio.xml"/>
<Script file="Libs\LibEvent\LibEvent.lua"/>
 
<Script file="HealthColor.lua"/>
<Script file="ClassPortraits.lua"/>
<Script file="ClassIcons.lua"/>
<Include file="ClassIcons.xml"/>
<Script file="HitIndicatorStatus.lua"/>
 
<Script file="PortfolioRegistration.lua"/>
 
</Ui>
 
UnitFrameTweaks/Libs Property changes : Added: svn:externals + LibEvent svn://svn.wowinterface.com/LibEvent-376/trunk/LibEvent
UnitFrameTweaks/UnitFrameTweaks.toc
2,10 → 2,10
## Title: Unit Frame Tweaks
## Notes: Class Icons/Portraits, Health Color, and Hit Indicators.
## Author: AnduinLothar
## OptionalDeps: Portfolio
## OptionalDeps: Portfolio, LibEvent
## RequiredDeps: Portfolio
## SavedVariables: UnitFrameTweaks_SavedVars
## Version: 1.1
## Version: 1.2
## X-Embeds: Portfolio
## X-Revision: $Rev: 5127 $
## X-Date: $Date: 2007-11-13 18:34:54 -0600 (Tue, 13 Nov 2007) $
15,4 → 15,4
## X-Feedback: http://www.cosmosui.org/forums/
## X-Localizations: enUS
## X-CompatibleLocales: enUS, enGB
UnitFrameTweaks.xml
Loader.xml
UnitFrameTweaks/ClassIcons.lua
75,9 → 75,7
 
 
-- Events
if (not UnitFrameTweaks.events) then
UnitFrameTweaks.events = {}
end
UnitFrameTweaks.events = {}
 
function UnitFrameTweaks.events.PARTY_MEMBERS_CHANGED()
UnitFrameTweaks.UpdatePartyClassIcons()
86,3 → 84,5
function UnitFrameTweaks.events.PLAYER_TARGET_CHANGED()
UnitFrameTweaks.UpdateTargetClassIcon()
end
 
LibStub("LibEvent"):RegisterEvents(UnitFrameTweaks.events)