WoWInterface SVN AKA

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 16 to Rev 17
    Reverse comparison

Rev 16 → Rev 17

trunk/calendar.lua File deleted \ No newline at end of file
trunk/aka.toc
1,11 → 1,10
## Interface: 30200
## Interface: 30300
## Title: AKA
## Notes: Publishes player alts to guild members
## Version: 2.8
## Version: 2.9
## Author: Schnoggo
## OptionalDeps: CleanChat,Gatherer,GuildEventManager2
## SavedVariables: AKA_SavedVars, AKA_USERID, AKA_DEBUG, AKA_TRAFFICMONITOR
localization.lua
calendar.lua
AKA.lua
aka.xml
trunk/devnotes.txt
1,4 → 1,5
To Do:
Rework calendar integration
Test integration with WotLK versions of other addons
Show nicknames in Guild tab of Social panel
support guild info panels
trunk/localization.lua
1,4 → 1,4
AKA_TITLE="A.K.A. Version 2.8";
AKA_TITLE="A.K.A. Version 2.9";
 
 
AKA_TEXT = {};
9,7 → 9,7
AKA_TEXT["CHANNEL_BLOCK"]="Channel ";
AKA_TEXT["VERSION_UPDATE"]="A new version of AKA is available. http://www.wowinterface.com/downloads/info7813-AKA.html";
-- AKA_TEXT["VERSION_UPDATE"]="A new version of AKA is available. http://wowgnome.com/downloads/aka_2_8.zip";
AKA_TEXT["VERSION_NOTES"]="This is a required upgrade for WoW client 3.2.";
AKA_TEXT["VERSION_NOTES"]="This is a recommended upgrade for WoW client 3.3.";
 
AKA_ProfessionList={};
AKA_ProfessionList["1"]="Alchemy";
trunk/Readme.txt
64,6 → 64,11
 
Version History
===============
Dec 8, 2009 (2.9)
* Updated TOC version for WoW client 3.2
* Removed in-game Calendar integration. This broke with the last version and needs a more maintainable approach.
* New (untested) code to identify player realms in cross-realm PUGs and BGs.
 
Aug 5, 2009 (2.8)
* Updated TOC version for WoW client 3.2
 
trunk/aka.lua
10,9 → 10,9
AKA_HighestSeenVersion=0;
AKA_FormatVersion=1.2;
AKA_variablesLoaded = false;
AKA_RaidInfoByName = {};
 
 
 
local VISIBLE_MAX=17; -- for scrolling menu
AKA_DEBUG=false;
AKA_ShowEvent=false;
417,8 → 417,12
AKA_ErrorMsg("ParseMessage("..msg..","..whoSent..", "..whichChannel..")");
local pString =msg; -- make a copy to take apart
-- pString="hoser`dude`hooman`flying monkeys`2`sproting`1`dancing`300`the coolist dud in the wowerzerverserse.";
local commaIndex;
local senderID=whoSent.."**"..myPlayerRealm
local dashOffset=string.find(whoSent, "-");
local senderID=whoSent.."**"..myPlayerRealm;
if (dashOffset ~= nil) then
-- battlegroup format with dash:
senderID=string.gsub(whoSent,"\-","**");
end
AKA_ParsedMsg={};
 
for count = 1, table.getn(messageFields) do
1283,6 → 1287,7
end
 
 
--[[
-- test to see if we have hooked the calendar yet.
 
 
1298,8 → 1303,8
end
 
end
]]--
 
 
-- check if we need to whisper anyone
-- AKA_SessionList[arg2]['status']='unknown';
local now = GetTime();
1425,17 → 1430,10
 
 
 
 
 
 
 
 
function AKA_RequestSync()
 
AKA_SendMsg(REQ_TOKEN);
 
-- DEFAULT_CHAT_FRAME:AddMessage("AKA-REQUESTING SYNC:", 0.5, 1.0, 0.5, 3);
 
-- DEFAULT_CHAT_FRAME:AddMessage("AKA-REQUESTING SYNC:", 0.5, 1.0, 0.5, 3);
needHello=false; -- we wil be responding to a sync request anyway
 
end