Compare commits

..

No commits in common. "master" and "1.3.0-coa.1" have entirely different histories.

3 changed files with 3 additions and 20 deletions

View file

@ -37,14 +37,10 @@ jobs:
RID=$(curl -sf -X POST -H "Authorization: token $GITEA_TOKEN" \
-H "Content-Type: application/json" \
"$API/repos/$REPO/releases" \
-d "$(jq -nc --arg t "$TAG" '{tag_name:$t,name:$t,draft:false,prerelease:false,hide_archive_links:true}')" \
-d "$(jq -nc --arg t "$TAG" '{tag_name:$t,name:$t,draft:false,prerelease:false}')" \
| jq -r '.id')
fi
echo "release id: $RID"
# Gitea honors hide_archive_links only on edit, not create — PATCH it
# so the auto-generated Source Code (zip/tar.gz) links stay hidden.
curl -sf -X PATCH -H "Authorization: token $GITEA_TOKEN" -H "Content-Type: application/json" \
"$API/repos/$REPO/releases/$RID" -d '{"hide_archive_links":true}' >/dev/null || true
# Upload every dist/*.zip. Per-asset failures don't fail the job —
# we want partial releases to still publish rather than block the
# whole pipeline on one big file.

View file

@ -199,7 +199,7 @@ local function Constructor()
button:SetScript("OnKeyDown", Keybinding_OnKeyDown)
button:SetScript("OnMouseDown", Keybinding_OnMouseDown)
button:SetScript("OnMouseWheel", Keybinding_OnMouseWheel)
pcall(button.SetScript, button, "OnGamePadButtonDown", Keybinding_OnKeyDown)
button:SetScript("OnGamePadButtonDown", Keybinding_OnKeyDown)
button:SetPoint("BOTTOMLEFT")
button:SetPoint("BOTTOMRIGHT")
button:SetHeight(24)

View file

@ -1,16 +1,3 @@
# AI VoiceOver
This is the repository for AI_VoiceOver. Modified for Ascension.gg.
## Voice data
The voice MP3s (~1.2 GiB) are stored in Git LFS in this repo; release zips
intentionally ship only the framework and lookup tables (`*.mp3` is
`export-ignore`). To get the voice data:
```
git lfs install
git clone <this repo>
```
Then copy the `AI_VoiceOverData_Vanilla` folder into `Interface/AddOns`.
This is the repository for AI_VoiceOver. Modified for Ascension.gg.