From 7d927221c3c53783a1d245fa85d89e3a7719ecf0 Mon Sep 17 00:00:00 2001 From: RDW Date: Wed, 2 Aug 2023 20:16:37 +0200 Subject: [PATCH] Repo: Updated the changelog for r719 --- CHANGES.MD | 64 +++++++---------------------------------------------- Changes.lua | 12 ++++++++++ 2 files changed, 20 insertions(+), 56 deletions(-) diff --git a/CHANGES.MD b/CHANGES.MD index b1a13bdb..9a597409 100644 --- a/CHANGES.MD +++ b/CHANGES.MD @@ -1,64 +1,16 @@ -**r718:** - -Fixes: -> Fixed script errors caused by API changes in patch 10.0.2 - ------ - -**r717:** - -Changes: -> Tooltip additions should now also work for items in the quest log - -Fixes: -> Fixed script errors caused by API changes in patch 10.0 - -Contributors (in alphabetical order): -> Patrick Borgogno -
Tommy Godejord -
teelolws - ------ - -**r716:** +**r719:** Additions: -> Added defeat detection data for Mythic-difficulty Legion raids +> Created a slash command for toggling the progress bar (for use in macros) +
Added tracking for many Dragonflight collectibles (the list is still incomplete, however) Fixes: -> Added several missing Torghast bosses to the list of NPCs counting for Sturdy Silver Mawrat Harness - ------ - -**r715:** +> Fixed script errors caused by various WOW API changes -Additions: -> Added tracking for various collectibles obtained in Zereth Mortis - -Changes: -> Adjusted the difficulty settings for certain legacy collectibles - -Fixes: -> Fixed the attempts detection for Skull of Corruption - -Contributors (in alphabetical order): -> Tommy Godejord - ------ - -**r714:** - -Additions: -> Added tracking for Shaded Judgement Stone (Korthia/The Maw) -
Added tracking for the various 'dice' toys obtainable only via pickpocketing - -Changes: -> Adjusted the drop rate of several Shadowlands collectibles to more accurately reflect wowhead's data - -Fixes: -> Attempts for the Infinite Timereaver mount should now correctly be detected in the recently-added Timewalking dungeons -
Collectibles that require being affiliated with a different covenant should now correctly be marked as 'unavailable' in the addon's main window +Developer Notes: +> Many Dragonflight collectibles, especially pets and toys, are still missing. Please report any that you think should be tracked, but currently aren't. Contributors (in alphabetical order): -> ithappenedagain +> cyriun +
Elke Freed
Tommy Godejord diff --git a/Changes.lua b/Changes.lua index 0e0b4ec5..138a779b 100644 --- a/Changes.lua +++ b/Changes.lua @@ -1,4 +1,16 @@ local changes = { + ["r719"] = { + additions = { + "Created a slash command for toggling the progress bar (for use in macros)", + "Added tracking for many Dragonflight collectibles (the list is still incomplete, however)", + }, + fixes = { "Fixed script errors caused by various WOW API changes" }, + notes = { + "Many Dragonflight collectibles, especially pets and toys, are still missing." + .. " Please report any that you think should be tracked, but currently aren't.", + }, + contributors = { "cyriun", "Elke Freed", "Tommy Godejord" }, + }, ["r718"] = { fixes = { "Fixed script errors caused by API changes in patch 10.0.2" }, },