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 c3d8129 commit 09e83fa
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 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) 2020-2022 Paweł Jastrzębski <[email protected]>
Copyright (c) 2020-2024 Paweł Jastrzębski <[email protected]>
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) 2020-2022 Paweł Jastrzębski <[email protected]>
Copyright (c) 2020-2024 Paweł Jastrzębski <[email protected]>
4 changes: 2 additions & 2 deletions RECrystallize.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 100205
## Interface: 100206
## Title: |cFF74D06CRE|rCrystallize
## Notes: Provide Auction House scanner and add item prices to tooltips.
## Version: 2.0.6
## Version: 2.0.7
## Author: AcidWeb
## SavedVariables: RECrystallizeSettings, RECrystallizeDatabase
## IconTexture: Interface\AddOns\RECrystallize\RELogo
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 09e83fa

Please sign in to comment.