- Added _detalhes.Sort3 and _detalhes.Sort4.

- Fixed a issue with last_events_table.
- Fixed a issue on saving statubar options.
- Added options for disable and enable the Captures Types.
- Added a option for enable and disable cloud parser.
- Added API _detalhes:CaptureIsAllEnabled() - return if all captures are active.
- Added API _detalhes:CaptureGet (name) return if a specific capture is enabled.
- API GetInternalSubAttributeName() also return for damage and heal types.
- Fixed a issue where Vanguard aren't updating tank list.
This commit is contained in:
Tercio
2013-08-16 22:09:46 -03:00
parent 3e0b1fc10e
commit 31525436d7
13 changed files with 338 additions and 35 deletions
+5 -5
View File
@@ -66,7 +66,8 @@ do
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.125, .25, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.25, .375, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.375, .5, 0, 1}}
}
},
internal = {"total", "last_dps", "damage_taken", "friendlyfire_total"}
},
{
@@ -87,7 +88,8 @@ do
{"Interface\\AddOns\\Details\\images\\atributos_icones_heal", {.125, .25, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_heal", {.25, .375, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_heal", {.375, .5, 0, 1}}
}
},
internal = {"total", "last_hps", "totalover", "healing_taken"}
},
{
@@ -149,9 +151,7 @@ do
end
function _detalhes:GetInternalSubAttributeName (attribute, subAttribute)
if (attribute == 3 or attribute == 4) then
return _detalhes.sub_atributos [attribute].internal [subAttribute]
end
return _detalhes.sub_atributos [attribute].internal [subAttribute]
end
end