# HG changeset patch # User yellowfive # Date 1459898355 25200 # Node ID a892c863c86a555e531cf2367a4b7f5ee6b1b4ea # Parent 4b1375f5c4f23822d18d627fcf61e14e107e800a fixed chat message in LFR/BGs, minor layering issue with dropdowns diff -r 4b1375f5c4f2 -r a892c863c86a AskMrRobot-Serializer/AskMrRobot-Serializer.lua --- a/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Wed Nov 25 15:09:07 2015 -0800 +++ b/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Tue Apr 05 16:19:15 2016 -0700 @@ -1,7 +1,7 @@ -- AskMrRobot-Serializer will serialize and communicate character data between users. -- This is used primarily to associate character information to logs uploaded to askmrrobot.com. -local MAJOR, MINOR = "AskMrRobot-Serializer", 31 +local MAJOR, MINOR = "AskMrRobot-Serializer", 32 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR) if not Amr then return end -- already loaded by something else diff -r 4b1375f5c4f2 -r a892c863c86a AskMrRobot.toc --- a/AskMrRobot.toc Wed Nov 25 15:09:07 2015 -0800 +++ b/AskMrRobot.toc Tue Apr 05 16:19:15 2016 -0700 @@ -1,7 +1,7 @@ ## Interface: 60200 ## Title: Ask Mr. Robot ## Author: Team Robot, Inc. -## Version: 31 +## Version: 32 ## Notes: Gear import/export, combat logging, and more. ## URL: www.askmrrobot.com ## SavedVariables: AskMrRobotDb2 diff -r 4b1375f5c4f2 -r a892c863c86a Core.lua --- a/Core.lua Wed Nov 25 15:09:07 2015 -0800 +++ b/Core.lua Tue Apr 05 16:19:15 2016 -0700 @@ -567,7 +567,7 @@ local v = GetAddOnMetadata(Amr.ADDON_NAME, "Version") message = v .. "\r" .. message - Amr:SendCommMessage(Amr.ChatPrefix, message, channel or "RAID") + Amr:SendCommMessage(Amr.ChatPrefix, message, channel or (IsInGroup(LE_PARTY_CATEGORY_INSTANCE) and "INSTANCE_CHAT" or "RAID")) end function Amr:OnCommReceived(prefix, message, distribution, sender) diff -r 4b1375f5c4f2 -r a892c863c86a ui/AmrUiDropDown.lua --- a/ui/AmrUiDropDown.lua Wed Nov 25 15:09:07 2015 -0800 +++ b/ui/AmrUiDropDown.lua Tue Apr 05 16:19:15 2016 -0700 @@ -24,6 +24,7 @@ frame.obj.list:Hide() else frame.obj.list:Show() + frame.obj.list:SetFrameLevel(100) frame.obj:RenderItems() end end @@ -232,6 +233,7 @@ arrow:SetPoint("RIGHT", frame, "RIGHT", -4, 0) local list = CreateFrame("Frame", nil, frame) + list:SetFrameStrata("TOOLTIP") list:SetPoint("TOPLEFT", frame, "BOTTOMLEFT", 0, 1) list:Hide()