Rebrand to Questie-X and add Credits tab
This commit is contained in:
@@ -277,7 +277,7 @@ function QuestieOptions.tabs.advanced:Initialize()
|
||||
github_text = {
|
||||
type = "description",
|
||||
order = 4.8,
|
||||
name = function() return Questie:Colorize(l10n('Questie is under active development and being maintained by Xurkon. Please check my GitHub for the latest build or to report issues. (( https://github.com/Xurkon/PE-Questie ))'), 'purple'); end,
|
||||
name = function() return Questie:Colorize(l10n('Questie-X is under active development and being maintained by Xurkon. Please check my GitHub for the latest build or to report issues. (( https://github.com/Xurkon/Questie-X ))'), '87CEEB'); end,
|
||||
fontSize = "medium",
|
||||
},
|
||||
HeaderDev = {
|
||||
|
||||
@@ -0,0 +1,94 @@
|
||||
-------------------------
|
||||
--Import modules.
|
||||
-------------------------
|
||||
---@type QuestieOptions
|
||||
local QuestieOptions = QuestieLoader:ImportModule("QuestieOptions");
|
||||
---@type l10n
|
||||
local l10n = QuestieLoader:ImportModule("l10n")
|
||||
|
||||
QuestieOptions.tabs.credits = {}
|
||||
|
||||
function QuestieOptions.tabs.credits:Initialize()
|
||||
return {
|
||||
name = function() return l10n('Credits'); end,
|
||||
type = "group",
|
||||
order = 10,
|
||||
args = {
|
||||
credits_header = {
|
||||
type = "header",
|
||||
order = 1,
|
||||
name = function() return l10n('Questie-X Credits'); end,
|
||||
},
|
||||
maintainer_group = {
|
||||
type = "group",
|
||||
order = 2,
|
||||
inline = true,
|
||||
name = function() return l10n('Project Maintainer'); end,
|
||||
args = {
|
||||
maintainer = {
|
||||
type = "description",
|
||||
order = 1,
|
||||
name = function() return Questie:Colorize('Xurkon', '87CEEB'); end,
|
||||
fontSize = "large",
|
||||
},
|
||||
},
|
||||
},
|
||||
original_dev_group = {
|
||||
type = "group",
|
||||
order = 3,
|
||||
inline = true,
|
||||
name = function() return l10n('Original Developers'); end,
|
||||
args = {
|
||||
original_devs = {
|
||||
type = "description",
|
||||
order = 1,
|
||||
name = function() return 'The Questie Team'; end,
|
||||
fontSize = "medium",
|
||||
},
|
||||
},
|
||||
},
|
||||
contributors_group = {
|
||||
type = "group",
|
||||
order = 4,
|
||||
inline = true,
|
||||
name = function() return l10n('Core Contributors'); end,
|
||||
args = {
|
||||
contributors = {
|
||||
type = "description",
|
||||
order = 1,
|
||||
name = function() return 'Aero-stier, Schaka, dy-sh (Questie 3.3.5 / PE-Questie)'; end,
|
||||
fontSize = "medium",
|
||||
},
|
||||
},
|
||||
},
|
||||
data_group = {
|
||||
type = "group",
|
||||
order = 5,
|
||||
inline = true,
|
||||
name = function() return l10n('Special Data Contributions'); end,
|
||||
args = {
|
||||
ascension_data = {
|
||||
type = "description",
|
||||
order = 1,
|
||||
name = function() return 'Majed (3majed) - Project Ascension Quest & NPC data'; end,
|
||||
fontSize = "medium",
|
||||
},
|
||||
},
|
||||
},
|
||||
thanks_group = {
|
||||
type = "group",
|
||||
order = 6,
|
||||
inline = true,
|
||||
name = function() return l10n('Special Thanks'); end,
|
||||
args = {
|
||||
thanks = {
|
||||
type = "description",
|
||||
order = 1,
|
||||
name = function() return 'The Turtle WoW, Project Ascension, and Project Ebonhold communities for their ongoing support and feedback.'; end,
|
||||
fontSize = "medium",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
end
|
||||
@@ -137,6 +137,8 @@ _CreateOptionsTable = function()
|
||||
coroutine.yield()
|
||||
local advanced_tab = QuestieOptions.tabs.advanced:Initialize()
|
||||
coroutine.yield()
|
||||
local credits_tab = QuestieOptions.tabs.credits:Initialize()
|
||||
coroutine.yield()
|
||||
return {
|
||||
name = "Questie",
|
||||
handler = Questie,
|
||||
@@ -155,6 +157,7 @@ _CreateOptionsTable = function()
|
||||
nameplate_tab = nameplate_tab,
|
||||
dbm_hud_tab = dbm_hud_tab,
|
||||
advanced_tab = advanced_tab,
|
||||
credits_tab = credits_tab,
|
||||
profiles_tab = LibStub("AceDBOptions-3.0"):GetOptionsTable(Questie.db)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user