General fixes and implementations

- Fixed a bug for healing done from unit to unit (by rubenvrolijk@github).
- Added Vanish to the list of defensive cooldowns for Rogues (by DylanMeador@github).
- Added Ny'alotha raid information (by jjholleman@github).
- Fixed Eye of Corruption and Grand Delusions.
- Fixed an error while retriving data from the guild (statistics sync).
- Updated the ToC files for bundled plugins.
- Segments Locked featured won't work for Overall Data.
- Fixed an issue on Player Details Window where sometimes Death Strike healing done would blink the Rune Weapon healing done.
- Regular Details Framework updates.
This commit is contained in:
Tercio Jose
2020-03-01 23:32:31 -03:00
parent 6c3e6ff7a4
commit 3d7f299207
16 changed files with 72 additions and 53 deletions
+3 -2
View File
@@ -1243,7 +1243,7 @@
end
--wallpaper
local background = f:CreateTexture (nil, "border")
local background = f:CreateTexture ("$parentBackgroundImage", "border")
background:SetAlpha (0.3)
background:SetPoint ("topleft", f, "topleft", 6, -65)
background:SetPoint ("bottomright", f, "bottomright", -10, 28)
@@ -1386,7 +1386,7 @@
--received one encounter table
elseif (guildSyncID == "A") then
f.DownloadedAmount = f.DownloadedAmount + 1
f.DownloadedAmount = (f.DownloadedAmount or 0) + 1
--size = 1 byte per characters in the string
f.EstimateSize = length * f.RequestedAmount > f.EstimateSize and length * f.RequestedAmount or f.RequestedAmount
@@ -1454,6 +1454,7 @@
local instanceId = _detalhes:GetInstanceIdFromEncounterId (encounterId)
if (instanceId) then
local file, L, R, T, B = _detalhes:GetRaidBackground (instanceId)
background:SetTexture (file)
background:SetTexCoord (L, R, T, B)
end