Skip to content

Commit 024ee57

Browse files
committed
Merge remote-tracking branch 'origin' into develop
2 parents 9c50e02 + 6a10f53 commit 024ee57

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

AnnounceReset.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ local function AnnounceInstanceReset(_, msg, ...)
2121
end
2222
end
2323
elseif strmatch(msg, failedreset) then
24-
local playersStillInside = " Anyone still inside can exit and re-enter"
24+
local playersStillInside = " Any players still inside will need to exit and then re-enter."
2525
if (UnitIsGroupLeader("player")) then
2626
if (IsInRaid()) then
2727
SendChatMessage(addon.instanceResetString .. playersStillInside, "RAID")

Core.lua

+7-5
Original file line numberDiff line numberDiff line change
@@ -1875,6 +1875,7 @@ function addon:OnInitialize()
18751875
LFGMsgGearType = 3,
18761876
defaultLFGModeOn = false,
18771877
showedv160InfoPopup = false,
1878+
18781879
--Auto Response Types:
18791880
-- 1 : Respond to Global Friends, but only when You are in Town
18801881
-- 2 : Respond to Local Friends & Guildies, but only when You are in Town
@@ -1948,6 +1949,7 @@ function addon:OnInitialize()
19481949
gearSummaryTooltips = true,
19491950
charSheetGear = true,
19501951
announceInstanceReset = true,
1952+
showedv161InfoPopup = false,
19511953
}
19521954
}
19531955

@@ -2832,11 +2834,11 @@ function addon.SetupConfig()
28322834
addon.db.global.lastServer = currentServer
28332835

28342836

2835-
if not addon.db.char.showedv160InfoPopup then
2836-
addon.db.char.showedv160InfoPopup = true
2837+
if not addon.db.global.showedv161InfoPopup then
2838+
addon.db.global.showedv161InfoPopup = true
28372839
local PopupFrame = nil
28382840
local POPUP_WINDOW_WIDTH = 400
2839-
local POPUP_WINDOW_HEIGHT = 400
2841+
local POPUP_WINDOW_HEIGHT = 450
28402842
PopupFrame = CreateFrame("Frame", "GroupiePopUp", UIParent, "PortraitFrameTemplate")
28412843
PopupFrame:Hide()
28422844
PopupFrame:SetFrameStrata("DIALOG")
@@ -2870,12 +2872,12 @@ function addon.SetupConfig()
28702872
local PopupGroupieTitle = PopupFrame:CreateFontString("FontString", "OVERLAY", "GameFontNormalMed1")
28712873
PopupGroupieTitle:SetPoint("TOP", PopupFrame, "TOP", 0, -36)
28722874
PopupGroupieTitle:SetWidth(POPUP_WINDOW_WIDTH - 32)
2873-
PopupGroupieTitle:SetText("Groupie 1.60")
2875+
PopupGroupieTitle:SetText("Groupie 1.61")
28742876
--Info Text
28752877
local PopupMsg = PopupFrame:CreateFontString("FontString", "OVERLAY", "GameFontHighlight")
28762878
PopupMsg:SetPoint("TOPLEFT", PopupFrame, "TOPLEFT", 16, -64)
28772879
PopupMsg:SetWidth(POPUP_WINDOW_WIDTH - 32)
2878-
PopupMsg:SetText("Hola Amigo, we've got some changes for you.\n\n1) LFG Auto-Response is a new feature that responds to your Friends and Guildies when they create 5-man groups. It's enabled by default. To turn it off, or change what sort of groups it responds to, check out the Options Interface. You can also toggle LFG Auto Response by Right Clicking on the Groupie Mini-map Icon.\n\n2) We've re-worked the \"challenge\" messages when you're being invited to a group, or someone requests to join your group. By default, we've disabled these messages when someone invites you, and kept on the \"What role are you?...\" messages when someone requests to join your group. These messages don't fire at all when someone messages you before inviting or requesting to join, and you can tweak the behavior in the Options Interface.\n\nCheers!")
2880+
PopupMsg:SetText("LFG Auto-Response has been Disabled by default on Start-up; to Enable it just Right click the Groupie Mini-map Icon.\n\nFixed a few other bugs.\n---\nGroupie 1.60\n\nHola Amigo, we've got some changes for you.\n\n1) LFG Auto-Response is a new feature that responds to your Friends and Guildies when they create 5-man groups. It's enabled by default. To turn it off, or change what sort of groups it responds to, check out the Options Interface. You can also toggle LFG Auto Response by Right Clicking on the Groupie Mini-map Icon.\n\n2) We've re-worked the \"challenge\" messages when you're being invited to a group, or someone requests to join your group. By default, we've disabled these messages when someone invites you, and kept on the \"What role are you?...\" messages when someone requests to join your group. These messages don't fire at all when someone messages you before inviting or requesting to join, and you can tweak the behavior in the Options Interface.\n\nCheers!")
28792881
PopupMsg:SetJustifyH("LEFT")
28802882
--Edit Box for Discord Link
28812883
local PopupEditBox = CreateFrame("EditBox", "GroupieEditBoxPopup", PopupFrame, "InputBoxTemplate")

Groupie.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ GroupBrowser.lua
2020
RightClick.lua
2121
Listener.lua
2222
AutoResponse.lua
23-
AnnounceReset.lua
23+
AnnounceReset.lua

0 commit comments

Comments
 (0)