Skip to content

Commit

Permalink
Merge branch 'main' into ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Mar 30, 2024
2 parents 0f96da3 + 1d48662 commit 43a46b7
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1_bug_report_retail.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body:
label: Verification Steps
description: This is important in order to rule out any other addons causing the issue.
options:
- label: I have read the [Changelog](https://github.com/tukui-org/ElvUI/blob/development/CHANGELOG.md) and verified [ElvUI](https://tukui.org/elvui) is up to date by checking **/estatus**
- label: I have read the [Changelog](https://github.com/tukui-org/ElvUI/blob/main/CHANGELOG.md) and verified [ElvUI](https://tukui.org/elvui) is up to date by checking **/estatus**
required: true
- label: I have verified my issue doesn't exist in the Default UI or the [Issue Tracker](https://github.com/tukui-org/ElvUI/issues).
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2_bug_report_wrath.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body:
label: Verification Steps
description: This is important in order to rule out any other addons causing the issue.
options:
- label: I have read the [Changelog](https://github.com/tukui-org/ElvUI/blob/development/CHANGELOG.md) and verified [ElvUI](https://tukui.org/elvui) is up to date by checking **/estatus**
- label: I have read the [Changelog](https://github.com/tukui-org/ElvUI/blob/main/CHANGELOG.md) and verified [ElvUI](https://tukui.org/elvui) is up to date by checking **/estatus**
required: true
- label: I have verified my issue doesn't exist in the Default UI or the [Issue Tracker](https://github.com/tukui-org/ElvUI/issues).
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/3_bug_report_classic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body:
label: Verification Steps
description: This is important in order to rule out any other addons causing the issue.
options:
- label: I have read the [Changelog](https://github.com/tukui-org/ElvUI/blob/development/CHANGELOG.md) and verified [ElvUI](https://tukui.org/elvui) is up to date by checking **/estatus**
- label: I have read the [Changelog](https://github.com/tukui-org/ElvUI/blob/main/CHANGELOG.md) and verified [ElvUI](https://tukui.org/elvui) is up to date by checking **/estatus**
required: true
- label: I have verified my issue doesn't exist in the Default UI or the [Issue Tracker](https://github.com/tukui-org/ElvUI/issues).
required: true
Expand Down
2 changes: 1 addition & 1 deletion ElvUI/Core/General/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2030,7 +2030,7 @@ function E:Initialize()
end

if E.wowtoc > E.toc then
local msg = format(L["LOGIN_PTR"], 'https://github.com/tukui-org/ElvUI/archive/refs/heads/ptr.zip')
local msg = format(L["LOGIN_PTR"], 'https://api.tukui.org/v1/download/dev/elvui/ptr')
if Chat.Initialized then msg = select(2, Chat:FindURL('CHAT_MSG_DUMMY', msg)) end
print(msg)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Constructor
-------------------------------------------------------------------------------]]
local S -- ref for Skins module in ElvUI
local function Constructor()
local name = "AceGUI30Button" .. AceGUI:GetNextWidgetNum(Type)
local name = "ElvUIAceGUI30Button" .. AceGUI:GetNextWidgetNum(Type)
local frame = CreateFrame("Button", name, UIParent, "UIPanelButtonTemplate")
frame:Hide()
frame:EnableMouse(true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ do
local function Constructor()
local count = AceGUI:GetNextWidgetNum(widgetType)
local frame = CreateFrame("Frame", nil, UIParent)
local dropdown = CreateFrame("Frame", "AceGUI30DropDown"..count, frame, "UIDropDownMenuTemplate")
local dropdown = CreateFrame("Frame", "ElvUIAceGUI30DropDown"..count, frame, "UIDropDownMenuTemplate")

local self = {}
self.type = widgetType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ end

function _G.AceGUIEditBoxInsertLink(text)
for i = 1, AceGUI:GetWidgetCount(Type) do
local editbox = _G["AceGUI-3.0EditBox"..i]
local editbox = _G["ElvUIAceGUI-3.0EditBox"..i]
if editbox and editbox:IsVisible() and editbox:HasFocus() then
editbox:Insert(text)
return true
Expand Down Expand Up @@ -220,7 +220,7 @@ local function Constructor()
local frame = CreateFrame("Frame", nil, UIParent)
frame:Hide()

local editbox = CreateFrame("EditBox", "AceGUI-3.0EditBox"..num, frame, "InputBoxTemplate")
local editbox = CreateFrame("EditBox", "ElvUIAceGUI-3.0EditBox"..num, frame, "InputBoxTemplate")
editbox:SetAutoFocus(false)
editbox:SetFontObject(_G.ChatFontNormal)
editbox:SetScript("OnEnter", Control_OnEnter)
Expand Down
6 changes: 3 additions & 3 deletions ElvUI_Options/Core/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ for index, data in next, {
{ key = 'discord', name = L["Discord"], url = 'https://discord.tukui.org' },
{ key = 'issues', name = L["Ticket Tracker"], url = 'https://github.com/tukui-org/ElvUI/issues' },
{ key = 'wiki', name = L["Wiki"], url = 'https://github.com/tukui-org/ElvUI/wiki' },
{ key = 'dev', name = L["Development Version"], url = 'https://github.com/tukui-org/ElvUI/archive/refs/heads/development.zip' },
{ key = 'ptr', name = L["PTR Version"], url = 'https://github.com/tukui-org/ElvUI/archive/refs/heads/ptr.zip' },
{ key = 'changelog', name = L["Changelog"], url = 'https://github.com/tukui-org/ElvUI/blob/development/CHANGELOG.md' },
{ key = 'dev', name = L["Development Version"], url = 'https://api.tukui.org/v1/download/dev/elvui/main' },
{ key = 'ptr', name = L["PTR Version"], url = 'https://api.tukui.org/v1/download/dev/elvui/ptr' },
{ key = 'changelog', name = L["Changelog"], url = 'https://github.com/tukui-org/ElvUI/blob/main/CHANGELOG.md' },
{ key = 'customTexts', name = L["Custom Texts"], url = 'https://github.com/tukui-org/ElvUI/wiki/custom-texts' },
{ key = 'paging', name = L["Action Paging"], url = 'https://github.com/tukui-org/ElvUI/wiki/paging' },
{ key = 'performance', name = L["Performance"], url = 'https://github.com/tukui-org/ElvUI/wiki/performance-optimization' },
Expand Down
12 changes: 6 additions & 6 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
## ElvUI

**Source**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI](https://github.com/tukui-org/ElvUI/tree/development/ElvUI)
**Source**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI](https://github.com/tukui-org/ElvUI/tree/main/ElvUI)

```
Copyright © 2009-2024 The contents of this addon, excluding third-party resources, are
copyrighted to their authors with all rights reserved.
Reference: github.com/tukui-org/ElvUI/blob/development/ElvUI/LICENSE.txt
Reference: github.com/tukui-org/ElvUI/blob/main/ElvUI/LICENSE.txt
```

## ElvUI_Options

**Source**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Options](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Options)
**Source**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Options](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Options)

```
Copyright © 2009-2024 The contents of this addon, excluding third-party resources, are
copyrighted to their authors with all rights reserved.
Reference: github.com/tukui-org/ElvUI/blob/development/ElvUI_Options/LICENSE.txt
Reference: github.com/tukui-org/ElvUI/blob/main/ElvUI_Options/LICENSE.txt
```

## ElvUI_Libraries

**Source**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries)
**Source**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries)

```
The third-party resources in this folder are licensed under their own license,
which is stated in the ThirdPartyNotices.md file.
Reference: github.com/tukui-org/ElvUI/blob/development/ThirdPartyNotices.md
Reference: github.com/tukui-org/ElvUI/blob/main/ThirdPartyNotices.md
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

[![Support](https://img.shields.io/badge/Support-❤️-FF96D7?style=flat-square)](https://tukui.org/support)
[![Download](https://img.shields.io/badge/Download-📁-1784d1?style=flat-square)](https://tukui.org/elvui)
[![Changelog](https://img.shields.io/badge/Changelog-📃-1784d1?style=flat-square)](https://github.com/tukui-org/ElvUI/blob/development/CHANGELOG.md)
[![Changelog](https://img.shields.io/badge/Changelog-📃-1784d1?style=flat-square)](https://github.com/tukui-org/ElvUI/blob/main/CHANGELOG.md)
[![Discord](https://img.shields.io/discord/209244641537556480?style=flat-square&color=5865F2&label=Discord)](https://discord.tukui.org)
48 changes: 24 additions & 24 deletions ThirdPartyNotices.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This repository incorporates material as listed below or described in the code.

## Ace3

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/Ace3](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/Ace3)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/Ace3](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/Ace3)

### License

Expand Down Expand Up @@ -43,7 +43,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## Ace3-ElvUI

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/Ace3-ElvUI](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/Ace3-ElvUI)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/Ace3-ElvUI](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/Ace3-ElvUI)

### License

Expand Down Expand Up @@ -81,7 +81,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## AceGUI-3.0-SharedMediaWidgets

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/AceGUI-3.0-SharedMediaWidgets](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/AceGUI-3.0-SharedMediaWidgets)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/AceGUI-3.0-SharedMediaWidgets](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/AceGUI-3.0-SharedMediaWidgets)

### License

Expand All @@ -91,7 +91,7 @@ All rights reserved to the owner.

## CallbackHandler-1.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/CallbackHandler-1.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/CallbackHandler-1.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/CallbackHandler-1.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/CallbackHandler-1.0)

### License

Expand Down Expand Up @@ -123,7 +123,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## LibAceConfigHelper

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibAceConfigHelper](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibAceConfigHelper)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibAceConfigHelper](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibAceConfigHelper)

### License

Expand All @@ -133,7 +133,7 @@ All rights reserved to the owner.

## LibActionButton-1.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibActionButton-1.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibActionButton-1.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibActionButton-1.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibActionButton-1.0)

### License

Expand Down Expand Up @@ -169,7 +169,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## LibAnim

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibAnim](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibAnim)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibAnim](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibAnim)

### License

Expand All @@ -179,7 +179,7 @@ All rights reserved to the owner.

## LibCustomGlow-1.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibCustomGlow-1.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibCustomGlow-1.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibCustomGlow-1.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibCustomGlow-1.0)

### License

Expand Down Expand Up @@ -209,7 +209,7 @@ SOFTWARE.

## LibDataBroker

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDataBroker](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDataBroker)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDataBroker](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDataBroker)

### License

Expand All @@ -219,7 +219,7 @@ All rights reserved to the owner.

## LibDeflate

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDeflate](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDeflate)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDeflate](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDeflate)

### License

Expand Down Expand Up @@ -247,7 +247,7 @@ freely, subject to the following restrictions:

## LibDispel

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDispel](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDispel)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDispel](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDispel)

### License

Expand All @@ -257,7 +257,7 @@ All rights reserved to the owner.

## LibDualSpec-1.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDualSpec-1.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibDualSpec-1.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDualSpec-1.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibDualSpec-1.0)

### License

Expand Down Expand Up @@ -295,7 +295,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## LibElvUIPlugin-1.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibElvUIPlugin-1.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibElvUIPlugin-1.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibElvUIPlugin-1.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibElvUIPlugin-1.0)

### License

Expand All @@ -305,7 +305,7 @@ All rights reserved to the owner.

## LibRangeCheck-3.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibRangeCheck-3.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibRangeCheck-3.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibRangeCheck-3.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibRangeCheck-3.0)

### License

Expand Down Expand Up @@ -335,7 +335,7 @@ SOFTWARE.

## LibSharedMedia-3.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibSharedMedia-3.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibSharedMedia-3.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibSharedMedia-3.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibSharedMedia-3.0)

### License

Expand Down Expand Up @@ -802,7 +802,7 @@ DAMAGES.

## LibSimpleSticky

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibSimpleSticky](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibSimpleSticky)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibSimpleSticky](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibSimpleSticky)

### License

Expand All @@ -812,7 +812,7 @@ All rights reserved to the owner.

## LibStub

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibStub](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibStub)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibStub](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibStub)

### License

Expand All @@ -822,7 +822,7 @@ This work is dedicated to the public domain.

## LibTranslit-1.0

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibTranslit-1.0](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/LibTranslit-1.0)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibTranslit-1.0](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/LibTranslit-1.0)

### License

Expand Down Expand Up @@ -996,7 +996,7 @@ Library.

## oUF

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/oUF](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/oUF)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/oUF](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/oUF)

### License

Expand Down Expand Up @@ -1030,7 +1030,7 @@ OTHER DEALINGS IN THE SOFTWARE.

## oUF_Plugins

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/oUF_Plugins](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/oUF_Plugins)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/oUF_Plugins](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/oUF_Plugins)

### License

Expand All @@ -1040,7 +1040,7 @@ All rights reserved to the owner.

## TaintLess

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/TaintLess](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/TaintLess)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/TaintLess](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/TaintLess)

### License

Expand All @@ -1050,7 +1050,7 @@ All rights reserved to the owner.

## UTF8

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/UTF8](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Core/UTF8)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/UTF8](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Core/UTF8)

### License

Expand Down Expand Up @@ -1084,7 +1084,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## LibClassicSpecs

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Classic/LibClassicSpecs](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Classic/LibClassicSpecs)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Classic/LibClassicSpecs](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Classic/LibClassicSpecs)

### License

Expand All @@ -1094,7 +1094,7 @@ All rights reserved to the owner.

## LibQuestXP

**Path**: [https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Classic/LibQuestXP](https://github.com/tukui-org/ElvUI/tree/development/ElvUI_Libraries/Classic/LibQuestXP)
**Path**: [https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Classic/LibQuestXP](https://github.com/tukui-org/ElvUI/tree/main/ElvUI_Libraries/Classic/LibQuestXP)

### License

Expand Down

0 comments on commit 43a46b7

Please sign in to comment.