From f6b1bde35166866b6b5749ae13ad11cd9963ebb4 Mon Sep 17 00:00:00 2001 From: Arnvid Karstad Date: Sun, 26 May 2024 04:48:45 +0200 Subject: [PATCH] 10.2.7.1 --- Aurora.toc | 2 +- CHANGELOG.md | 11 ++++++++++- Skin/Interface/FrameXML/LFGList.lua | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Aurora.toc b/Aurora.toc index 199d5f7e..e7b1cbb2 100644 --- a/Aurora.toc +++ b/Aurora.toc @@ -3,7 +3,7 @@ ## IconAtlas: callings-backhighlight-full ## Notes: Minimalistic window theme. ## Author: Haleth/Lightsword, Gethe, Hanshi/arnvid -## Version: 10.2.7.0 +## Version: 10.2.7.1 ## LoadWith: Blizzard_ChatFrame ## OptionalDeps: Ace3, LibTextDump-1.0, BugSack, WagoAnalytics ## SavedVariables: AuroraConfig diff --git a/CHANGELOG.md b/CHANGELOG.md index d17929b9..4eefe112 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ -## [10.2.7.0] ## +## [10.2.7.1] ## +### Fixed ### + + * [retail] fix: Another LFGList layer change - missed previously - #116 + * [retail] fix: GetPlayerStyleString Taint + * [retail] add: support for groupfinder-icon-role-micro + + +## [10.2.7.0] ## ### Fixed ### * [classic] disabled non-mainline builds while rebuilding the structure @@ -11,6 +19,7 @@ * [retail] fix: missing brackets * [retail] chore: sync with gethe/wow-ui-source + ## [10.2.6.1] ## ### Fixed ### diff --git a/Skin/Interface/FrameXML/LFGList.lua b/Skin/Interface/FrameXML/LFGList.lua index e1ebcbff..03ae41fd 100644 --- a/Skin/Interface/FrameXML/LFGList.lua +++ b/Skin/Interface/FrameXML/LFGList.lua @@ -253,7 +253,7 @@ function private.FrameXML.LFGList() elseif activityInfo.isMythicActivity then PlaystyleString = "GROUP_FINDER_PVE_MYTHICZERO_PLAYSTYLE" end - return PlaystyleString and _G[PlaystyleString .. tostring(playstyle)] or nil + return PlaystyleString and _G[PlaystyleString .. _G.tostring(playstyle)] or nil end _G.LFGListEntryCreation_SetTitleFromActivityInfo = function(_) end end