Compare commits
3 Commits
3.0.9-coa.1
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f5e0c7e01 | |||
| 76d441e409 | |||
| 7c5fb74e20 |
@@ -37,7 +37,7 @@ jobs:
|
|||||||
RID=$(curl -sf -X POST -H "Authorization: token $GITEA_TOKEN" \
|
RID=$(curl -sf -X POST -H "Authorization: token $GITEA_TOKEN" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
"$API/repos/$REPO/releases" \
|
"$API/repos/$REPO/releases" \
|
||||||
-d "$(jq -nc --arg t "$TAG" '{tag_name:$t,name:$t,draft:false,prerelease:false}')" \
|
-d "$(jq -nc --arg t "$TAG" '{tag_name:$t,name:$t,draft:false,prerelease:false,hide_archive_links:true}')" \
|
||||||
| jq -r '.id')
|
| jq -r '.id')
|
||||||
fi
|
fi
|
||||||
echo "release id: $RID"
|
echo "release id: $RID"
|
||||||
|
|||||||
@@ -199,7 +199,7 @@ local function Constructor()
|
|||||||
button:SetScript("OnKeyDown", Keybinding_OnKeyDown)
|
button:SetScript("OnKeyDown", Keybinding_OnKeyDown)
|
||||||
button:SetScript("OnMouseDown", Keybinding_OnMouseDown)
|
button:SetScript("OnMouseDown", Keybinding_OnMouseDown)
|
||||||
button:SetScript("OnMouseWheel", Keybinding_OnMouseWheel)
|
button:SetScript("OnMouseWheel", Keybinding_OnMouseWheel)
|
||||||
button:SetScript("OnGamePadButtonDown", Keybinding_OnKeyDown)
|
pcall(button.SetScript, button, "OnGamePadButtonDown", Keybinding_OnKeyDown)
|
||||||
button:SetPoint("BOTTOMLEFT")
|
button:SetPoint("BOTTOMLEFT")
|
||||||
button:SetPoint("BOTTOMRIGHT")
|
button:SetPoint("BOTTOMRIGHT")
|
||||||
button:SetHeight(24)
|
button:SetHeight(24)
|
||||||
|
|||||||
@@ -110,6 +110,12 @@ end
|
|||||||
-- Receiver
|
-- Receiver
|
||||||
-- ---------------------------------------------------------------------------
|
-- ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
-- Register the prefix so CHAT_MSG_ADDON fires for our messages on 3.3.5.
|
||||||
|
-- Without this, incoming OMSYNC packets are silently discarded by the client.
|
||||||
|
if RegisterAddonMessagePrefix then
|
||||||
|
RegisterAddonMessagePrefix(PREFIX)
|
||||||
|
end
|
||||||
|
|
||||||
local f = CreateFrame("Frame")
|
local f = CreateFrame("Frame")
|
||||||
f:RegisterEvent("CHAT_MSG_ADDON")
|
f:RegisterEvent("CHAT_MSG_ADDON")
|
||||||
f:RegisterEvent("PLAYER_LEAVING_WORLD")
|
f:RegisterEvent("PLAYER_LEAVING_WORLD")
|
||||||
|
|||||||
Reference in New Issue
Block a user