LibMythicKeystone

Library to expose Mythic Keystone

File Details

V120001-2

  • R
  • Mar 14, 2026
  • 15.96 KB
  • 369
  • 12.0.1+1
  • Retail

File Name

LibMythicKeystone-V120001-2.zip

Supported Versions

  • 12.0.1
  • 12.0.0

LibMythicKeystone

V120001-2 (2026-03-14)

Full Changelog Previous Releases

  • chore: Add deploy.ps1 to sync addon to WoW installation
  • Fix and update README and DEVELOPERS documentation
    • Fix terminology: "mythical dungeon keys" -> "Mythic+ keystones"
    • Fix typos: "dependancy", "Libaries", "rerolls"
    • Fix broken GitHub link in README
    • Add missing weeklybest and weeklycount fields to data format
    • Add lua syntax highlighting to code blocks
    • Improve overall clarity and formatting
  • Fix multiple bugs in Debug.lua
    • addFakeAlts: use CopyTable instead of direct reference to avoid
      corrupting Addon.Mykey
    • addFakeAlts/addFakeParty: declare 'class' as local to avoid global leak
    • addFakeGuild: guard against nil guild and initialize Guilds table
    • homePlayers: fix Addon.trace(UnitName(class)) -> Addon.trace(class)
    • Remove duplicate SetPoint("CENTER")
    • Remove dead commented code and useless variable resets
    • Use ipairs instead of pairs for button layout
  • Replace OnUpdate frame with C_Timer.NewTicker for performance
    Using OnUpdate was calling getKeystone() at ~60fps. Replace with a
    one-shot C_Timer.After(1) on load and a C_Timer.NewTicker(60) for
    periodic polling, matching the original 60s effective interval.