Added support to Profiles, now you can share the same config between two or more characters
Added support for BattleTag friends over report window. Added pet threat to Tiny Threat plugin when out of a party or raid group. Fixed a issue with close button where it disappear without close the window when toolbar is in bottom side. Also fixed a issue where swapping toolbar positioning was sometimes making close button disappear. Fixed a problem opening options panel through minimap when there is no window opened.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
_ = nil
|
||||
_detalhes = LibStub("AceAddon-3.0"):NewAddon("_detalhes", "AceTimer-3.0", "AceComm-3.0", "AceSerializer-3.0", "NickTag-1.0")
|
||||
_detalhes.userversion = "v1.11.10"
|
||||
_detalhes.userversion = "v1.12.00"
|
||||
_detalhes.version = "Alpha 016"
|
||||
_detalhes.realversion = 16
|
||||
|
||||
@@ -25,6 +25,7 @@ do
|
||||
_detalhes.__index = _detalhes
|
||||
_detalhes._tempo = time()
|
||||
_detalhes.debug = false
|
||||
_detalhes.opened_windows = 0
|
||||
|
||||
--> containers
|
||||
--> armazenas as funções do parser - All parse functions
|
||||
@@ -76,7 +77,7 @@ do
|
||||
_detalhes.RaidTables.Plugins = {}
|
||||
--> name to plugin object
|
||||
_detalhes.RaidTables.NameTable = {}
|
||||
|
||||
|
||||
--> solo -------------------------------------------------------------------
|
||||
--> general functions for solo mode plugins
|
||||
_detalhes.SoloTables = {}
|
||||
@@ -245,8 +246,12 @@ do
|
||||
|
||||
--> print messages
|
||||
function _detalhes:Msg (_string, arg1, arg2, arg3, arg4)
|
||||
|
||||
print (Loc ["STRING_DETAILS1"] .. _string, arg1 or "", arg2 or "", arg3 or "", arg4 or "")
|
||||
if (self.__name) then
|
||||
--> yes, we have a name!
|
||||
print ("|cffffaeae" .. self.__name .. "|r |cffcc7c7c(plugin)|r: " .. _string, arg1 or "", arg2 or "", arg3 or "", arg4 or "")
|
||||
else
|
||||
print (Loc ["STRING_DETAILS1"] .. _string, arg1 or "", arg2 or "", arg3 or "", arg4 or "")
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user