Skip to content

Commit

Permalink
TOC bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Mar 20, 2024
1 parent af98abc commit aaa7d66
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
All Rights Reserved unless otherwise explicitly stated.
Copyright (c) 2013-2022 Paweł Jastrzębski <pawelj@iosphe.re>
Copyright (c) 2013-2024 Paweł Jastrzębski <pawelj@iosphe.re>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

All Rights Reserved unless otherwise explicitly stated.

Copyright (c) 2013-2022 Paweł Jastrzębski <pawelj@iosphe.re>
Copyright (c) 2013-2024 Paweł Jastrzębski <pawelj@iosphe.re>
2 changes: 1 addition & 1 deletion REFlex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ local SendAddonMessage = _G.C_ChatInfo.SendAddonMessage
local PlaySound = _G.PlaySound
local ElvUI = _G.ElvUI

RE.Version = 3312
RE.Version = 3313
RE.LastSquash = 1602662400
RE.FoundNewVersion = false

Expand Down
4 changes: 2 additions & 2 deletions REFlex.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 100205
## Interface: 100206
## Title: |cFF74D06CRE|rFlex
## Notes: Collect statistics of played arena matches and battlegrounds.
## Version: 3.3.12
## Version: 3.3.13
## Author: AcidWeb
## SavedVariablesPerCharacter: REFlexSettings, REFlexDatabase, REFlexHonorDatabase
## AddonCompartmentFunc: REFlex_CompartmentOnClick
Expand Down
26 changes: 19 additions & 7 deletions TaintLess.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Ui><Script><![CDATA[--[[
TaintLess [23-09-09]
TaintLess [24-02-20]
https://www.townlong-yak.com/addons/taintless
All rights reserved.
Expand All @@ -11,17 +11,17 @@ Permission is hereby granted to distribute unmodified copies of this file.
local purgeKey do
local e = {}
function purgeKey(t, k)
e.textures = t
e.textures, t[k] = t, 0
TextureLoadingGroupMixin.RemoveTexture(e, k)
end
end
local patch do
local patch, cbuild do
local skips = securecall(function()
local cb, r, _, an = select(4,GetBuildInfo()), {moon="haunted"}
r.moon, _, an = nil, issecurevariable(r, "moon")
local r, _, an = {moon="haunted"}
cbuild, r.moon, _, an = select(4,GetBuildInfo()), nil, issecurevariable(r, "moon")
for m, v, clo, chi in (C_AddOns.GetAddOnMetadata(an, "X-TaintLess-DisableMitigations") or ""):gmatch("([%a_]+)=(%d+):?(%d*):?(%d*)") do
if (clo == "" or cb >= clo+0) and (chi == "" or chi+0 >= cb) then
if (clo == "" or cbuild >= clo+0) and (chi == "" or chi+0 >= cbuild) then
r[m] = v + 0
end
end
Expand Down Expand Up @@ -133,7 +133,7 @@ patch("CUF_PROFILE_ACTIVATE_PATCH_VERSION", 1, function(V)
getmetatable(sv[3]).__len = function()
return "UIDROPDOWNMENU_MENU_LEVEL"
end
setmetatable(o, {__index=function(t,k)
setmetatable(o, {__index=function(_,k)
s, sv[2][1] = k == sk[s] and s+1 or 1
return sv[s-1]
end})
Expand All @@ -152,4 +152,16 @@ patch("CUF_PROFILE_ACTIVATE_PATCH_VERSION", 1, function(V)
end)
end)
-- https://www.townlong-yak.com/addons/taintless/fixes/EncounterJournalLoad
patch("EJ_LOOTFILTER_PATCH_VERSION", 1, function(V)
if 10e4 > cbuild then return end
hooksecurefunc("UIDropDownMenu_SetInitializeFunction", function(_frame, initFunction)
if EJ_LOOTFILTER_PATCH_VERSION == V and initFunction
and initFunction == EncounterJournal_InitLootFilter
and (UIDROPDOWNMENU_MENU_VALUE == nil or not DropDownList1:IsShown())
and not issecurevariable("UIDROPDOWNMENU_MENU_VALUE") then
purgeKey(_G, "UIDROPDOWNMENU_MENU_VALUE")
end
end)
end)
]]></Script></Ui>

0 comments on commit aaa7d66

Please sign in to comment.