WoWInterface SVN _GautrReply

Compare Revisions

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

Rev 15 → Rev 16

_GautrReply/_GautrReply.toc
2,7 → 2,7
## Interface: 40300
## Notes: Reply Stuff
## Title: _GautrReply
## Version: 1.1.0.4
## Version: 1.1.0.5
## SavedVariablesPerCharacter: Defaults
 
_GautrReply.lua
\ No newline at end of file
_GautrReply/changelog.txt
1,3 → 1,10
1.1.0.5
 
Stable again
 
Fixed the folders, for some reason the SVN didn't pack the addon in a folder,
Might be because I forgot that part.
 
1.1.0.4
 
BETA RELEASE
_GautrReply/_GautrReply.lua
33,7 → 33,7
Current = "percentcurrent",
Left = "percent",
CurrentTwo = "%current",
LeftTwo = "%",
LeftTwo = "%%",
},
Experience = {
Current = "expcurrent",
47,7 → 47,8
Text = "help",
},
Position = {
Text = "position",
Text = "position",
TextShort = "pos",
},
},
}
83,12 → 84,12
print("Message: "..msg)
else
if msg:lower():match(Defaults.Prefix .. C.Command.Percent.Current) or
msg:lower():match(Defaults.Prefix .. C.Command.Percent.CurrentTwo then
msg:lower():match(Defaults.Prefix .. C.Command.Percent.CurrentTwo) then
if sender ~= Player then wSend(Messages.Percent.Current, sender)
else print(C.Addon.Prefix .. Messages.Percent.Current) end
 
elseif msg:lower():match(Defaults.Prefix .. C.Command.Percent.Left) or
msg:lower():match(Defaults.Prefix .. C.Command.Percent.LeftTwo then
msg:lower():match(Defaults.Prefix .. C.Command.Percent.LeftTwo) then
if sender ~= Player then wSend(Messages.Percent.Left, sender)
else print(C.Addon.Prefix .. Messages.Percent.Left) end
 
112,7 → 113,8
if sender ~= Player then wSend(Messages.Help.Text, sender)
else print(C.Addon.Prefix .. Messages.Help.Text) end
 
elseif msg:lower():match(Defaults.Prefix .. C.Command.Position.Text) then
elseif msg:lower():match(Defaults.Prefix .. C.Command.Position.Text) or
msg:lower():match(Defaults.Prefix .. C.Command.Position.TextShort) then
if sender ~= Player then wSend(Messages.Position.Text, sender)
else print(C.Addon.Prefix .. Messages.Position.Text) end
end
163,8 → 165,11
C.Command.Experience.Left,
C.Command.Experience.Current,
C.Command.Position.Text,
C.Command.Position.TextShort,
C.Command.Percent.Left,
C.Command.Percent.LeftTwo,
C.Command.Percent.Current,
C.Command.Percent.CurrentTwo,
C.Command.Bars.Left,
C.Command.Bars.Current,
}