Rebrand to Questie-X and add Credits tab
This commit is contained in:
@@ -16,7 +16,6 @@
|
|||||||
### UI Enhancements
|
### UI Enhancements
|
||||||
|
|
||||||
- **[Options]** Resizable Options window! The Questie options UI can now be resized with corner drag functionality. Size and position persist between sessions.
|
- **[Options]** Resizable Options window! The Questie options UI can now be resized with corner drag functionality. Size and position persist between sessions.
|
||||||
- **[LuaBrowser]** Increased window width and fixed anchoring/font sizes to prevent UI overlap and improve readability.
|
|
||||||
- **[Tutorial]** Improved tutorial flows for objective type selection.
|
- **[Tutorial]** Improved tutorial flows for objective type selection.
|
||||||
|
|
||||||
### Core & Compatibility
|
### Core & Compatibility
|
||||||
|
|||||||
@@ -277,7 +277,7 @@ function QuestieOptions.tabs.advanced:Initialize()
|
|||||||
github_text = {
|
github_text = {
|
||||||
type = "description",
|
type = "description",
|
||||||
order = 4.8,
|
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",
|
fontSize = "medium",
|
||||||
},
|
},
|
||||||
HeaderDev = {
|
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()
|
coroutine.yield()
|
||||||
local advanced_tab = QuestieOptions.tabs.advanced:Initialize()
|
local advanced_tab = QuestieOptions.tabs.advanced:Initialize()
|
||||||
coroutine.yield()
|
coroutine.yield()
|
||||||
|
local credits_tab = QuestieOptions.tabs.credits:Initialize()
|
||||||
|
coroutine.yield()
|
||||||
return {
|
return {
|
||||||
name = "Questie",
|
name = "Questie",
|
||||||
handler = Questie,
|
handler = Questie,
|
||||||
@@ -155,6 +157,7 @@ _CreateOptionsTable = function()
|
|||||||
nameplate_tab = nameplate_tab,
|
nameplate_tab = nameplate_tab,
|
||||||
dbm_hud_tab = dbm_hud_tab,
|
dbm_hud_tab = dbm_hud_tab,
|
||||||
advanced_tab = advanced_tab,
|
advanced_tab = advanced_tab,
|
||||||
|
credits_tab = credits_tab,
|
||||||
profiles_tab = LibStub("AceDBOptions-3.0"):GetOptionsTable(Questie.db)
|
profiles_tab = LibStub("AceDBOptions-3.0"):GetOptionsTable(Questie.db)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
## Interface: 30300
|
## Interface: 30300
|
||||||
## Title: Questie-X-Classic|cFF00FF00 v1.1.4|r
|
## Title: |cFF5EBAF3Questie|r|cFFDAFAFD-X|r-Classic|cFF00FF00 v1.1.4|r
|
||||||
## Notes: A standalone Classic QuestHelper
|
## Notes: A standalone Classic QuestHelper
|
||||||
## Notes-esMX: Ayundante de misión
|
## Notes-esMX: Ayundante de misión
|
||||||
## Notes-esES: Ayundante de misión
|
## Notes-esES: Ayundante de misión
|
||||||
@@ -212,6 +212,7 @@ Modules\Options\QuestieOptions.lua
|
|||||||
Modules\Options\QuestieOptionsDefaults.lua
|
Modules\Options\QuestieOptionsDefaults.lua
|
||||||
Modules\Options\QuestieOptionsUtils.lua
|
Modules\Options\QuestieOptionsUtils.lua
|
||||||
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
||||||
|
Modules\Options\CreditsTab\QuestieOptionsCredits.lua
|
||||||
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
||||||
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
||||||
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
||||||
|
|||||||
+2
-1
@@ -1,5 +1,5 @@
|
|||||||
## Interface: 30300
|
## Interface: 30300
|
||||||
## Title: Questie-X-TBC|cFF00FF00 v1.1.4|r
|
## Title: |cFF5EBAF3Questie|r|cFFDAFAFD-X|r-TBC|cFF00FF00 v1.1.4|r
|
||||||
## Notes: A standalone Classic QuestHelper
|
## Notes: A standalone Classic QuestHelper
|
||||||
## Notes-esMX: Ayundante de misión
|
## Notes-esMX: Ayundante de misión
|
||||||
## Notes-esES: Ayundante de misión
|
## Notes-esES: Ayundante de misión
|
||||||
@@ -203,6 +203,7 @@ Modules\Options\QuestieOptions.lua
|
|||||||
Modules\Options\QuestieOptionsDefaults.lua
|
Modules\Options\QuestieOptionsDefaults.lua
|
||||||
Modules\Options\QuestieOptionsUtils.lua
|
Modules\Options\QuestieOptionsUtils.lua
|
||||||
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
||||||
|
Modules\Options\CreditsTab\QuestieOptionsCredits.lua
|
||||||
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
||||||
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
||||||
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
## Interface: 11200
|
## Interface: 11200
|
||||||
## Title: Questie-X-Turtle|cFF00FF00 v1.1.4|r
|
## Title: |cFF5EBAF3Questie|r|cFFDAFAFD-X|r-Turtle|cFF00FF00 v1.1.4|r
|
||||||
## Notes: A standalone Classic QuestHelper
|
## Notes: A standalone Classic QuestHelper
|
||||||
## Notes-esMX: Ayundante de misión
|
## Notes-esMX: Ayundante de misión
|
||||||
## Notes-esES: Ayundante de misión
|
## Notes-esES: Ayundante de misión
|
||||||
@@ -210,6 +210,7 @@ Modules\Options\QuestieOptions.lua
|
|||||||
Modules\Options\QuestieOptionsDefaults.lua
|
Modules\Options\QuestieOptionsDefaults.lua
|
||||||
Modules\Options\QuestieOptionsUtils.lua
|
Modules\Options\QuestieOptionsUtils.lua
|
||||||
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
||||||
|
Modules\Options\CreditsTab\QuestieOptionsCredits.lua
|
||||||
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
||||||
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
||||||
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
||||||
|
|||||||
@@ -227,6 +227,7 @@ Modules\Options\QuestieOptions.lua
|
|||||||
Modules\Options\QuestieOptionsDefaults.lua
|
Modules\Options\QuestieOptionsDefaults.lua
|
||||||
Modules\Options\QuestieOptionsUtils.lua
|
Modules\Options\QuestieOptionsUtils.lua
|
||||||
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
Modules\Options\AdvancedTab\QuestieOptionsAdvanced.lua
|
||||||
|
Modules\Options\CreditsTab\QuestieOptionsCredits.lua
|
||||||
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
Modules\Options\AutoTab\QuestieOptionsAuto.lua
|
||||||
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
Modules\Options\DBMTab\QuestieOptionsDBM.lua
|
||||||
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
Modules\Options\GeneralTab\QuestieOptionsGeneral.lua
|
||||||
|
|||||||
+10
-3
@@ -4,7 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Questie (3.3.5a) - Developer Documentation</title>
|
<title>Questie-X - Developer Documentation</title>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
@@ -180,7 +180,6 @@
|
|||||||
<h3>UI Enhancements</h3>
|
<h3>UI Enhancements</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>Resizable Options</strong>: The Questie options window is now resizable with corner drag functionality. Size and position persist between sessions.</li>
|
<li><strong>Resizable Options</strong>: The Questie options window is now resizable with corner drag functionality. Size and position persist between sessions.</li>
|
||||||
<li><strong>LuaBrowser Fixes</strong>: Increased window width for LuaBrowser UI. Fixed list entry anchoring, font sizes, and button spacing for improved readability.</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<h3>Core & Compatibility</h3>
|
<h3>Core & Compatibility</h3>
|
||||||
<ul>
|
<ul>
|
||||||
@@ -424,7 +423,15 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p>Maintained by Xurkon • Part of the Project Ebonhold Addon Suite</p>
|
<p>Maintained by Xurkon</p>
|
||||||
|
<div style="margin-top: 15px; display: flex; justify-content: center; gap: 10px;">
|
||||||
|
<a href="https://www.patreon.com/Xurkon" target="_blank">
|
||||||
|
<img src="https://img.shields.io/badge/Patreon-F96854?style=for-the-badge&logo=patreon&logoColor=white" alt="Patreon" height="28">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.paypal.me/Xurkon" target="_blank">
|
||||||
|
<img src="https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white" alt="PayPal" height="28">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
+11
-4
@@ -4,7 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Questie (3.3.5a) - Developer Documentation</title>
|
<title>Questie-X - Developer Documentation</title>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
@@ -167,8 +167,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
<img src="QuestieXlogo.png" alt="Questie-X Logo" width="400" />
|
<img src="QuestieXlogo.png" alt="Questie-X Logo" width="400" />
|
||||||
<p class="subtitle">Developer documentation for Project Ascension & Project Ebonhold compatibility layers and
|
<p class="subtitle">A universal WoW quest-helper with a plugin architecture for any private server.</p>
|
||||||
core engine refinements.</p>
|
|
||||||
<div style="display: flex; justify-content: center; gap: 10px;">
|
<div style="display: flex; justify-content: center; gap: 10px;">
|
||||||
<code>Version: v1.1.4</code>
|
<code>Version: v1.1.4</code>
|
||||||
<a href="changelog.html"
|
<a href="changelog.html"
|
||||||
@@ -270,7 +269,15 @@ end</code></pre>
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p>Maintained by Xurkon • Part of the Project Ebonhold Addon Suite</p>
|
<p>Maintained by Xurkon</p>
|
||||||
|
<div style="margin-top: 15px; display: flex; justify-content: center; gap: 10px;">
|
||||||
|
<a href="https://www.patreon.com/Xurkon" target="_blank">
|
||||||
|
<img src="https://img.shields.io/badge/Patreon-F96854?style=for-the-badge&logo=patreon&logoColor=white" alt="Patreon" height="28">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.paypal.me/Xurkon" target="_blank">
|
||||||
|
<img src="https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white" alt="PayPal" height="28">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user