WoWInterface SVN GuildTracker

Compare Revisions

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

Rev 3 → Rev 2

GuildTracker.toc
1,9 → 1,13
## Interface: 50001
## Interface: 40300
## Title: Guild Tracker
## Notes: Keeps track of changes in the guild roster between logins, and also shows who disabled their account
## Author: Dracula
## Version: 5.0.0-1
## Version: 4.3.4-1
## SavedVariables: GuildTrackerDB
## X-Curse-Packaged-Version: r3
## X-Curse-Project-Name: Guild Tracker
## X-Curse-Project-ID: guild-tracker
## X-Curse-Repository-ID: wow/guild-tracker/mainline
 
embeds.xml
GuildTracker.lua
GuildTracker.lua
23,6 → 23,9
local u = { }
if type(t) == 'table' then
for k, v in pairs(t) do
if type(v) == 'table' then
v = tcopy(v)
end
u[k] = v
end
end
452,7 → 455,7
end
 
--------------------------------------------------------------------------------
function GuildTracker:PLAYER_GUILD_UPDATE(event, unit)
function GuildTracker:PLAYER_GUILD_UPDATE(unit)
--------------------------------------------------------------------------------
self:Debug("PLAYER_GUILD_UPDATE " .. (unit or "(nil)"))
if unit and unit ~= "player" then return end
486,7 → 489,7
end
 
--------------------------------------------------------------------------------
function GuildTracker:GUILD_ROSTER_UPDATE()
function GuildTracker:GUILD_ROSTER_UPDATE(event, ...)
--------------------------------------------------------------------------------
self:Debug("GUILD_ROSTER_UPDATE")
self.LastRosterUpdate = time()
1060,12 → 1063,8
if idx ~= nil then
GuildTracker:RemoveChange(idx)
else
--GuildTracker:RemoveAllChanges()
if LibQTip:IsAcquired("GuildTrackerTip") then
local tooltip = LibQTip:Acquire("GuildTrackerTip")
tooltip:Hide()
end
StaticPopup_Show("GUILDTRACKER_REMOVEALL")
--GuildTracker:RemoveAllChanges()
end
end