feat: Questie-X v1.1.4 - plugin architecture, monorepo, rebranding
- Repoint remote to Xurkon/Questie-X - Add QuestiePluginAPI, QuestieServer, QuestieLearnerComms modules - Add Questie-X.toc, Questie-X-Classic.toc, Questie-X-TBC.toc, Questie-X-Turtle.toc - Remove embedded Database/Ascension and Database/Ebonhold (migrated to plugins) - Add Plugins/ directory with NTFS junctions for Questie-X-AscensionDB and Questie-X-EbonholdDB - Add LibDeflate, XXH_Lua_Lib, LibDBIcon-1.0, LibDataBroker-1.1 - Update README: Questie-X branding, logo, plugin install guide, plugin API docs - Update CHANGELOG: v1.1.4 entry documenting all architectural changes - Update .gitignore: exclude plugin junctions, __pycache__, .agents, debug files - Various module updates: corrections, map, tracker, tooltips, quest, options
This commit is contained in:
@@ -1,70 +1,116 @@
|
||||
<div align="center">
|
||||
|
||||
# Questie (3.3.5a)
|
||||
<img src="docs/QuestieXlogo.png" alt="Questie-X Logo" width="320" />
|
||||
|
||||

|
||||

|
||||
[](https://xurkon.github.io/PE-Questie/)
|
||||
# Questie-X
|
||||
|
||||

|
||||

|
||||
[](https://xurkon.github.io/Questie-X/)
|
||||
[](https://www.patreon.com/Xurkon)
|
||||
[](https://www.paypal.me/Xurkon)
|
||||

|
||||

|
||||

|
||||
|
||||
<br/>
|
||||
**A fork of the WoW Classic Questie addon aiming to provide compatibility with ANY private server.**
|
||||
|
||||
[⬇ **Download Latest**](https://github.com/Xurkon/PE-Questie/releases/latest) • [📂 **View Source**](https://github.com/Xurkon/PE-Questie) • [📖 **Read Documentation**](https://xurkon.github.io/PE-Questie/)
|
||||
**A universal WoW quest-helper addon with a plugin architecture for custom private servers.**
|
||||
|
||||
[Download Latest](https://github.com/Xurkon/Questie-X/releases/latest) • [View Source](https://github.com/Xurkon/Questie-X) • [Read Documentation](https://xurkon.github.io/Questie-X/)
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 📥 Installation
|
||||
## Installation
|
||||
|
||||
1. [Download](https://github.com/Xurkon/PE-Questie/releases) the archive.
|
||||
2. Extract it into the `Interface/AddOns/` directory. The folder name should be `Questie-335`.
|
||||
3. **Custom Server Support**: If you are playing on a server emulating a previous expansion (Classic or TBC) using the 3.3.5 client, you can add `-Classic` or `-TBC` to the folder name to load specific datasets.
|
||||
4. **Map Compatibility**: If your server lacks a world map patch, enable `Options → Advanced → Use WotLK map data`.
|
||||
1. [Download](https://github.com/Xurkon/Questie-X/releases) the archive.
|
||||
2. Extract it into your `Interface/AddOns/` directory.
|
||||
3. The folder name determines which dataset loads:
|
||||
- `Questie-X` — WotLK (3.3.5a default)
|
||||
- `Questie-X-Classic` — Classic era dataset
|
||||
- `Questie-X-TBC` — The Burning Crusade dataset
|
||||
- `Questie-X-Turtle` — Turtle WoW dataset
|
||||
4. If your server lacks a world map patch, enable `Options -> Advanced -> Use WotLK map data`.
|
||||
|
||||
---
|
||||
|
||||
## 🔧 Fixes & Compatibility
|
||||
## Plugin System
|
||||
|
||||
### 🛡️ Nameplates
|
||||
Questie-X ships with a **Plugin API** that lets separate addons inject custom server databases (quests, NPCs, objects, items, zones) without modifying core files. This is a new architecture replacing the old embedded `Database/Ascension` and `Database/Ebonhold` folders.
|
||||
|
||||
- Explicitly skips **Ascension Nameplates** to avoid conflicts, while maintaining compatibility with generic nameplate addons.
|
||||
### Available Plugins
|
||||
|
||||
### 📊 Quest Tracker
|
||||
| Plugin | Server | Repository |
|
||||
|--------|--------|------------|
|
||||
| Questie-Ascension | Project Ascension | [Questie-X-AscensionDB](https://github.com/Xurkon/Questie-X-AscensionDB) |
|
||||
| Questie-Ebonhold | Ebonhold | [Questie-X-EbonholdDB](https://github.com/Xurkon/Questie-X-EbonholdDB) |
|
||||
|
||||
### Installing a Plugin
|
||||
|
||||
Each plugin is a standalone addon. Install it the same way as the core addon:
|
||||
|
||||
1. Download the plugin archive from its repository's Releases page.
|
||||
2. **Extract it into your `Interface/AddOns/` directory** alongside `Questie-X`.
|
||||
3. The extracted folder name must match the plugin's `.toc` title (e.g., `Questie-Ascension`, `Questie-Ebonhold`).
|
||||
4. Reload your UI or restart the game client — Questie-X will detect and load the plugin automatically.
|
||||
|
||||
> Plugins declare `Questie-X` as a dependency in their `.toc` file, so they only load when the core addon is present.
|
||||
|
||||
### Writing Your Own Plugin
|
||||
|
||||
Questie-X exposes a public API via `QuestiePluginAPI`. A minimal plugin registers itself and provides override tables:
|
||||
|
||||
```lua
|
||||
local plugin = QuestiePluginAPI:RegisterPlugin("MyServer")
|
||||
plugin:RegisterQuestDB(MyServerQuestDB)
|
||||
plugin:RegisterNpcDB(MyServerNpcDB)
|
||||
plugin:RegisterObjectDB(MyServerObjectDB)
|
||||
plugin:RegisterItemDB(MyServerItemDB)
|
||||
plugin:RegisterZoneData(MyServerUiMapData, MyServerZoneTables)
|
||||
```
|
||||
|
||||
See `Modules/Libs/QuestiePluginAPI.lua` for the full API surface.
|
||||
|
||||
---
|
||||
|
||||
## Fixes & Compatibility
|
||||
|
||||
### Nameplates
|
||||
|
||||
- Explicitly skips Ascension Nameplates to avoid conflicts while maintaining compatibility with generic nameplate addons.
|
||||
|
||||
### Quest Tracker
|
||||
|
||||
- **Ascension API**: Fully compatible with custom quest APIs; no crashes on auto-turn-in quests.
|
||||
- **Header Persistence**: Resolved issues where quest headers would disappear from the tracker.
|
||||
- **Dynamic Updates**: Instant refresh when accepting, completing, or abandoning quests.
|
||||
- **Combat Safety**: Protected with `pcall` to prevent UI lockups during intense combat updates.
|
||||
|
||||
### 💬 Tooltips
|
||||
### Tooltips
|
||||
|
||||
- Fixed all legacy Lua errors.
|
||||
- **New Feature**: Displays if an NPC drops an item that starts a quest directly in the tooltip.
|
||||
- Displays if an NPC drops an item that starts a quest directly in the tooltip.
|
||||
|
||||
### 🗺️ Maps (Minimap & World Map)
|
||||
### Maps (Minimap & World Map)
|
||||
|
||||
- **Minimap**: Fixed zoom-related Lua errors.
|
||||
- **World Map**: Full support for Ascension's `WorldMapFrame` (minimized mode), **Mapster**, and **Magnify-WotLK**.
|
||||
- **World Map**: Full support for Ascension's `WorldMapFrame` (minimized mode), Mapster, and Magnify-WotLK.
|
||||
- **Icon Cleanup**: Resolved "ghost icon" bug where completed quests remained visible on the map.
|
||||
|
||||
### 📦 Custom IDs
|
||||
### Custom IDs
|
||||
|
||||
- Native support for large integer IDs common on custom private servers.
|
||||
|
||||
---
|
||||
|
||||
## ✨ Features
|
||||
## Features
|
||||
|
||||
### ⚔️ Ascension Scaling
|
||||
### Ascension Scaling
|
||||
|
||||
- Quests automatically scale to character level, perfectly matching the Ascension Scaling system.
|
||||
Quests automatically scale to character level, perfectly matching the Ascension Scaling system.
|
||||
|
||||
### 📍 Visual Map Objectives
|
||||
### Visual Map Objectives
|
||||
|
||||
Notes for quest starters, turn-ins, and complex objectives are drawn directly on your maps.
|
||||
|
||||
@@ -74,7 +120,7 @@ Notes for quest starters, turn-ins, and complex objectives are drawn directly on
|
||||
<img src="https://i.imgur.com/uPykHKC.png" height="200" alt="Quest Tooltip" />
|
||||
</div>
|
||||
|
||||
### 📜 Advanced Quest Tracker
|
||||
### Advanced Quest Tracker
|
||||
|
||||
- **Smart Tracking**: Automatically tracks quests upon acceptance.
|
||||
- **Expanded Capacity**: Displays up to 20 quests (original limit: 5).
|
||||
@@ -84,7 +130,7 @@ Notes for quest starters, turn-ins, and complex objectives are drawn directly on
|
||||
<img src="https://user-images.githubusercontent.com/8838573/67285596-24dbab00-f4d8-11e9-9ae1-7dd6206b5e48.png" width="400" alt="Tracker" />
|
||||
</div>
|
||||
|
||||
### 🗺️ My Journey & Quests by Zone
|
||||
### My Journey & Quests by Zone
|
||||
|
||||
- **Journey Log**: Record every major step of your adventure.
|
||||
- **Completionist View**: Lists all available and completed quests per zone to ensure nothing is missed.
|
||||
@@ -94,7 +140,7 @@ Notes for quest starters, turn-ins, and complex objectives are drawn directly on
|
||||
<img src="https://user-images.githubusercontent.com/8838573/67285665-450b6a00-f4d8-11e9-9283-325d26c7c70d.png" height="200" alt="Zone Quests" />
|
||||
</div>
|
||||
|
||||
### 🔍 Database Search & Config
|
||||
### Database Search & Config
|
||||
|
||||
- **Global Search**: Find any NPC, Object, or Quest in the massive Questie database.
|
||||
- **Deep Customization**: Adjust everything from icon scale to tracking logic.
|
||||
@@ -106,12 +152,12 @@ Notes for quest starters, turn-ins, and complex objectives are drawn directly on
|
||||
|
||||
---
|
||||
|
||||
## 👥 Credits
|
||||
## Credits
|
||||
|
||||
- **Questie Team** - Original addon developers.
|
||||
- **Xurkon** - Private Expansion fork and maintenance.
|
||||
- **Xurkon** - Questie-X fork and maintenance.
|
||||
- **Project Ascension & Ebonhold Communities** - Testing and data feedback.
|
||||
|
||||
## 📄 License
|
||||
## License
|
||||
|
||||
MIT License - See [LICENSE](LICENSE) for details.
|
||||
|
||||
Reference in New Issue
Block a user