diff --git a/PerfectRaid.xml b/PerfectRaid.xml index 471020a..8809be0 100644 --- a/PerfectRaid.xml +++ b/PerfectRaid.xml @@ -69,7 +69,7 @@ - diff --git a/PerfectRaid_Config.lua b/PerfectRaid_Config.lua index 74c07b8..c2e01c5 100644 --- a/PerfectRaid_Config.lua +++ b/PerfectRaid_Config.lua @@ -188,15 +188,16 @@ function Config:PartyVisibility() -- Disable the party frames self.hidingparty = true for i=1,4 do - local f = getglobal("PartyMemberFrame"..i) - f:UnregisterAllEvents() + -- The new frames don't have this... + -- local f = getglobal("PartyMemberFrame"..i) + -- f:UnregisterAllEvents() end if PartyMemberBackground and SHOW_PARTY_BACKGROUND == "1" then PartyMemberBackground:Hide() end ShowPartyFrame = function() end - HidePartyFrame() + -- HidePartyFrame() elseif self.hidingparty then self.hidingparty = false for i=1,4 do diff --git a/PerfectRaid_Options.lua b/PerfectRaid_Options.lua index c8ba010..a19af18 100644 --- a/PerfectRaid_Options.lua +++ b/PerfectRaid_Options.lua @@ -228,13 +228,13 @@ function Options:CreateListFrame(parent, num) texture:SetTexture("Interface\\ChatFrame\\ChatFrameBackground") texture:SetPoint("TOPLEFT", scrollframe, "TOPRIGHT", 14, 0) texture:SetPoint("BOTTOMRIGHT", scrollframe, "BOTTOMRIGHT", 23, 0) - texture:SetGradientAlpha("HORIZONTAL", 0.5, 0.25, 0.05, 0, 0.15,0.15, 0.15, 1) + -- texture:SetGradientAlpha("HORIZONTAL", 0.5, 0.25, 0.05, 0, 0.15, 0.15, 0.15, 1) local texture = scrollframe:CreateTexture(nil, "BACKGROUND") texture:SetTexture("Interface\\ChatFrame\\ChatFrameBackground") texture:SetPoint("TOPLEFT", scrollframe, "TOPRIGHT", 4, 0) texture:SetPoint("BOTTOMRIGHT", scrollframe, "BOTTOMRIGHT", 14, 0) - texture:SetGradientAlpha("HORIZONTAL", 0.15, 0.15, 0.15, 0.15, 1, 0.5, 0.25, 0.05, 0) + -- texture:SetGradientAlpha("HORIZONTAL", 0.15, 0.15, 0.15, 0.15, 1, 0.5, 0.25, 0.05, 0) scrollframe.entries = entries return scrollframe diff --git a/PerfectRaid_ReadyCheck.lua b/PerfectRaid_ReadyCheck.lua index fecd2c2..1ebc0d1 100644 --- a/PerfectRaid_ReadyCheck.lua +++ b/PerfectRaid_ReadyCheck.lua @@ -104,7 +104,8 @@ function ReadyCheck:UpdateReadyCheck( event, target ) frame.readycheck:SetScript("OnUpdate", function(self, elapsed) self.elapsed = self.elapsed - elapsed - self:SetAlpha( self.elapsed / ReadyCheck.fadeDuration ) + -- This currently throws an error as this cannot be converted to an actual value and becomes nil. + -- self:SetAlpha( self.elapsed / ReadyCheck.fadeDuration ) if self.elapsed <= 0 then self:Hide() diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e41b6c --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +I have not updated this to TTW yet. +I might do this at some point but I switched to Cell for now. +The rework that needs to be done like buff management and new healing communication isnt that much but I simply havent had the time to do so.