File Details
HazeAltVault-1.13.0.zip
- R
- May 27, 2026
- 229.48 KB
- 8
- 2.5.5+1
- Classic + 1
File Name
HazeAltVault-1.13.0.zip
Supported Versions
- 2.5.5
- 1.15.8
[1.13.0] - 2026-05-27
Changed
- Title bar matches the HazeSuite pattern — small gold
HazeAltVault vX.Y.Zcentered at the top of the frame (was a left-aligned large title with an inline "Options" button). The version comes fromADDON_INFO.versionso it tracks the TOC automatically. Right-click the title to open the options panel, drag to move; the inline Options button is gone (use right-click instead).
Fixed
- Window size and position not persisting across
/reload— the resize grip relied solely onOnMouseUpto save, which silently dropped saves when the cursor wandered outside the grip during resizing. Save handlers now also persist position on everyOnSizeChanged(debounced 0.5s) and onOnHide, so resizes are captured even if the mouse-up never reaches the grip. Position storage migrated toHazeLib-DB:SavePosition/LoadPositionwith a local fallback, keyed underdb.ui.framePosto follow the pattern used by other Haze addons.
[1.12.0] - 2026-05-27
Changed
- Two-pane Quests tab — quests tab redesigned to match Professions. Left pane: scrollable, clickable quest list sorted with incomplete quests first; each row shows level (color-coded by difficulty), title (gold for active, green for complete),
Donetag for completed quests, and a small meta line with category · Daily/Weekly · group size. Right pane: full detail of the selected quest — title, level/category/tag/complete meta row, description, objective text block, and an itemized progress list with[X]/[ ]per leader-board entry. First quest auto-selects on tab load.
[1.11.0] - 2026-05-27
Added
- Three-column Talents tab — talents view split into one column per spec. Each column shows the spec icon, name, and total points spent at the top, then a scrollable list of every talent in the tree sorted by tier and column. Talents with points are full-color (gold rank for partial, green for maxed); unlearned talents are desaturated and dimmed.
- Per-talent collection —
CollectTalentsnow also captures every talent within each tab (name, icon, tier, column, rank, max rank) viaGetNumTalents/GetTalentInfo, so the new view can render the full tree.
[1.10.0] - 2026-05-27
Added
- Two-pane Professions tab — left pane lists primary then secondary professions with name, icon, and skill level as a clickable list. Right pane shows the recipe list for the selected profession with icons, names colored by recipe difficulty (orange/yellow/green/grey), and item-link tooltip on hover. First profession is auto-selected.
- Richer recipe storage —
CollectRecipesnow saves name, icon, recipe link, item link, and difficulty per recipe (was just spell IDs). Legacy spell-ID-only data still renders viaGetSpellInfo.
Fixed
- Talent tab names showing as integers (e.g. "283") —
GetTalentTabInfoon TBC Classic returns(id, name, description, iconTexture, pointsSpent, ...)rather than the WotLK+ shape(name, iconTexture, pointsSpent, ...). CollectTalents now detects the leading numericidand unpacks accordingly so the spec name and points come through correctly. Existing stored talents will fix themselves on next/reload.