Compare commits
3 commits
1.3.0-coa.
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 2dafc188c3 | |||
| 9fc99ca58e | |||
| 995e6c7d77 |
3 changed files with 20 additions and 3 deletions
|
|
@ -37,10 +37,14 @@ 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}')" \
|
||||
-d "$(jq -nc --arg t "$TAG" '{tag_name:$t,name:$t,draft:false,prerelease:false,hide_archive_links:true}')" \
|
||||
| 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.
|
||||
|
|
|
|||
|
|
@ -199,7 +199,7 @@ local function Constructor()
|
|||
button:SetScript("OnKeyDown", Keybinding_OnKeyDown)
|
||||
button:SetScript("OnMouseDown", Keybinding_OnMouseDown)
|
||||
button:SetScript("OnMouseWheel", Keybinding_OnMouseWheel)
|
||||
button:SetScript("OnGamePadButtonDown", Keybinding_OnKeyDown)
|
||||
pcall(button.SetScript, button, "OnGamePadButtonDown", Keybinding_OnKeyDown)
|
||||
button:SetPoint("BOTTOMLEFT")
|
||||
button:SetPoint("BOTTOMRIGHT")
|
||||
button:SetHeight(24)
|
||||
|
|
|
|||
15
README.md
15
README.md
|
|
@ -1,3 +1,16 @@
|
|||
# AI VoiceOver
|
||||
|
||||
This is the repository for AI_VoiceOver. Modified for Ascension.gg.
|
||||
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`.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue