Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Simon Van Casteren
VuhDo
Commits
ae012471
Commit
ae012471
authored
2 years ago
by
Ivaria
Browse files
Options
Download
Plain Diff
Merge branch 'master' into wotlkc
parents
79fea5e5
29a7b320
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1409 additions
and
993 deletions
+1409
-993
.release/release.sh
.release/release.sh
+1341
-989
Libs/Libs.xml
Libs/Libs.xml
+5
-4
Libs/Taintless/Taintless.xml
Libs/Taintless/Taintless.xml
+63
-0
No files found.
.release/release.sh
View file @
ae012471
This diff is collapsed.
Click to expand it.
Libs/Libs.xml
View file @
ae012471
...
...
@@ -2,9 +2,10 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd"
>
<Script
file=
"LibStub\LibStub.lua"
/>
<Script
file=
"LibStub\LibStub.lua"
/>
<Include
file=
"CallbackHandler-1.0\CallbackHandler-1.0.xml"
/>
<Include
file=
"Taintless\Taintless.xml"
/>
<Include
file=
"CallbackHandler-1.0\CallbackHandler-1.0.xml"
/>
<Include
file=
"AceAddon-3.0\AceAddon-3.0.xml"
/>
<Include
file=
"AceGUI-3.0\AceGUI-3.0.xml"
/>
<Include
file=
"AceConfig-3.0\AceConfig-3.0.xml"
/>
...
...
@@ -12,12 +13,12 @@
<Include
file=
"AceLocale-3.0\AceLocale-3.0.xml"
/>
<Include
file=
"AceSerializer-3.0\AceSerializer-3.0.xml"
/>
<Include
file=
"AceTimer-3.0\AceTimer-3.0.xml"
/>
<Script
file=
"LibDataBroker-1.1\LibDataBroker-1.1.lua"
/>
<Script
file=
"LibDataBroker-1.1\LibDataBroker-1.1.lua"
/>
<Include
file=
"LibSharedMedia-3.0\lib.xml"
/>
<Script
file=
"LibDBIcon-1.0\LibDBIcon-1.0.lua"
/>
<Script
file=
"UTF8\utf8.lua"
/>
<Script
file=
"UTF8\utf8data.lua"
/>
<Include
file=
"LibCompress\lib.xml"
/>
<Include
file=
"LibCompress\lib.xml"
/>
<Script
file=
"LibBase64-1.0\LibBase64-1.0.lua"
/>
<Include
file=
"LibCustomGlow-1.0\LibCustomGlow-1.0.xml"
/>
<Include
file=
"NickTag-1.0\NickTag-1.0.xml"
/>
...
...
This diff is collapsed.
Click to expand it.
Libs/Taintless/Taintless.xml
0 → 100644
View file @
ae012471
<Ui><Script>
<![CDATA[--[[
TaintLess [20-10-19]
https://www.townlong-yak.com/addons/taintless
All rights reserved.
Permission is hereby granted to distribute unmodified copies of this file.
]]
local function purgeKey(t, k)
t[k] = nil
local c = 42
repeat
if t[c] == nil then
t[c] = nil
end
c = c + 1
until issecurevariable(t, k)
end
-- https://www.townlong-yak.com/bugs/Mx7CWN-RefreshOverread
if (tonumber(UIDD_REFRESH_OVERREAD_PATCH_VERSION) or 0) < 3 then
UIDD_REFRESH_OVERREAD_PATCH_VERSION = 3
hooksecurefunc("UIDropDownMenu_InitializeHelper", function()
if UIDD_REFRESH_OVERREAD_PATCH_VERSION ~= 3 then
return
end
for i=1, UIDROPDOWNMENU_MAXLEVELS do
for j=1+_G["DropDownList" .. i].numButtons, UIDROPDOWNMENU_MAXBUTTONS do
local b, _ = _G["DropDownList" .. i .. "Button" .. j]
_ = issecurevariable(b, "checked") or purgeKey(b, "checked")
_ = issecurevariable(b, "notCheckable") or purgeKey(b, "notCheckable")
end
end
end)
end
-- https://www.townlong-yak.com/bugs/Kjq4hm-DisplayModeTaint
if (tonumber(UIDROPDOWNMENU_OPEN_PATCH_VERSION) or 0) < 1 then
UIDROPDOWNMENU_OPEN_PATCH_VERSION = 1
hooksecurefunc("UIDropDownMenu_InitializeHelper", function(frame)
if UIDROPDOWNMENU_OPEN_PATCH_VERSION ~= 1 then
return
end
if UIDROPDOWNMENU_OPEN_MENU and UIDROPDOWNMENU_OPEN_MENU ~= frame
and not issecurevariable(UIDROPDOWNMENU_OPEN_MENU, "displayMode") then
purgeKey(_G, "UIDROPDOWNMENU_OPEN_MENU")
end
end)
end
-- https://www.townlong-yak.com/bugs/gXwH4P-IOFrameSelection
if (tonumber(IOFRAME_SELECTION_PATCH_VERSION) or 0) < 1 then
IOFRAME_SELECTION_PATCH_VERSION = 1
InterfaceOptionsFrame:HookScript("OnHide", function()
if IOFRAME_SELECTION_PATCH_VERSION == 1 then
InterfaceOptionsFrameCategories.selection = nil
end
end)
end
]]>
</Script></Ui>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment