-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e07350c
commit 626a85a
Showing
1 changed file
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# Update | ||
|
||
* Update Interface Version 11505(1.15.5) | ||
* Adding support for Season of Discovery runes. GearMenu will now display runes in its UI elements. This can be configured in the General Configuration. | ||
|
||
**Note:** This is a breaking change for existing Macros that equip items. | ||
|
||
The function changed to support the runeAbilityId | ||
|
||
`/run GM_AddToCombatQueue(itemId, enchantId, runeAbilityId, slotId)` | ||
|
||
If you had a previous macro that you want to adapt, and you don't care about a specific rune you can just pass '0' as a value | ||
|
||
``` | ||
# old | ||
/run GM_AddToCombatQueue(itemId, enchantId, slotId) | ||
/run GM_AddToCombatQueue(179350, 0, 13) | ||
# new | ||
/run GM_AddToCombatQueue(itemId, enchantId, runeAbilityId, slotId) | ||
/run GM_AddToCombatQueue(179350, 0, 0, 13) | ||
``` | ||
|
||
# Fixes | ||
|
||
* Fixed an issue where the TrinketMenu UI was being accessed before it was initialized. Fixes #102 | ||
* Add better safety checks when retrieving the cooldown of an item. Fixes #103 | ||
* Prevent GearMenu from forgetting its Keybinds visually. |