- Fixed an issue with overall data where max/min amount for spell was being calculated wrong.

- Fixed a problem while reporting enemy damage taken.
- Fixed an issue with damage taken by spell where some spells wasn't shown.
- Fixed window positioning when changing from Solo mode to Group mode.
- Fixed a accuracy problem with shaman's spirit link toten where its life exchange was considered healing done.
- Few improvements on tooltips.
- Boss segments now need to have at least 30 seconds to be added on the overall data.
- When the segment limit is reach, segments with less combat time will be erased instead of the olders.
- Added item level tracker.
- Added an option for change the amount of lines on death log.
- Added custom display for CC done.
This commit is contained in:
Tercio
2015-03-18 18:34:44 -03:00
parent 60fbd99e82
commit 0c126196d2
11 changed files with 179 additions and 153 deletions
+9
View File
@@ -115,6 +115,7 @@ do
window_color_texture:SetAlpha (1)
GameCooltip:Reset()
_detalhes:CooltipPreset (1)
GameCooltip:SetBackdrop (1, _detalhes.tooltip_backdrop, backgroundColor, _detalhes.tooltip_border_color)
GameCooltip:AddLine (Loc ["STRING_OPTIONS_INSTANCE_COLOR"])
GameCooltip:SetOwner (window_color.widget)
GameCooltip:SetType ("tooltip")
@@ -142,6 +143,7 @@ do
options_button_texture:SetAlpha (1)
GameCooltip:Reset()
_detalhes:CooltipPreset (1)
GameCooltip:SetBackdrop (1, _detalhes.tooltip_backdrop, backgroundColor, _detalhes.tooltip_border_color)
GameCooltip:AddLine (Loc ["STRING_INTERFACE_OPENOPTIONS"])
GameCooltip:SetOwner (window_color.widget)
GameCooltip:SetType ("tooltip")
@@ -591,6 +593,8 @@ function _detalhes:FastSwitch (_this)
GameCooltip:SetColor (1, {.1, .1, .1, .3})
GameCooltip:SetColor (2, {.1, .1, .1, .3})
GameCooltip:SetOption ("HeightAnchorMod", -7)
GameCooltip:SetBackdrop (1, _detalhes.tooltip_backdrop, backgroundColor, _detalhes.tooltip_border_color)
GameCooltip:SetBackdrop (2, _detalhes.tooltip_backdrop, backgroundColor, _detalhes.tooltip_border_color)
GameCooltip:ShowCooltip()
else --> botão esquerdo
@@ -885,6 +889,9 @@ local onenter = function (self)
GameCooltip:SetOption ("YSpacingMod", 0)
GameCooltip:SetOption ("IgnoreButtonAutoHeight", false)
GameCooltip:SetBackdrop (1, _detalhes.tooltip_backdrop, backgroundColor, _detalhes.tooltip_border_color)
GameCooltip:SetBackdrop (2, _detalhes.tooltip_backdrop, backgroundColor, _detalhes.tooltip_border_color)
GameCooltip:Show()
else
GameCooltip:Hide()
@@ -921,6 +928,8 @@ local oniconenter = function (self)
GameCooltip:SetOption ("YSpacingMod", 0)
GameCooltip:SetOption ("IgnoreButtonAutoHeight", false)
GameCooltip:SetBackdrop (1, _detalhes.tooltip_backdrop, backgroundColor, _detalhes.tooltip_border_color)
GameCooltip:Show()
end