Compare commits
2 commits
1.04.2-coa
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c5dd38839 | |||
| 9e3caf71df |
3 changed files with 7 additions and 7 deletions
|
|
@ -37,10 +37,14 @@ 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"
|
||||||
|
# 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 —
|
# Upload every dist/*.zip. Per-asset failures don't fail the job —
|
||||||
# we want partial releases to still publish rather than block the
|
# we want partial releases to still publish rather than block the
|
||||||
# whole pipeline on one big file.
|
# whole pipeline on one big file.
|
||||||
|
|
|
||||||
|
|
@ -63,10 +63,6 @@ crashed on the very first guide load with
|
||||||
What is still TODO
|
What is still TODO
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
- **In-game smoke test.** The addon has not yet been loaded against
|
|
||||||
the Ascension client. Expect further small breakage (frame APIs,
|
|
||||||
`GetAddOnInfo` signature, possibly map-zone coords) once we drive it
|
|
||||||
through `/vguide`.
|
|
||||||
- **MetaMapBWP integration.** MetaMap doesn't exist on 3.3.5. The
|
- **MetaMapBWP integration.** MetaMap doesn't exist on 3.3.5. The
|
||||||
hooks in `Settings.lua` and `Frame_SettingsFrame.lua` are gated
|
hooks in `Settings.lua` and `Frame_SettingsFrame.lua` are gated
|
||||||
behind `IsAddOnLoaded("MetaMap")` so they're effectively dead, but
|
behind `IsAddOnLoaded("MetaMap")` so they're effectively dead, but
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
## Title: VanillaGuide |cff7fff7f -Ace2-|r |cffff7f7f(CoA)|r
|
## Title: VanillaGuide |cff7fff7f -Ace2-|r |cffff7f7f(CoA)|r
|
||||||
## Notes: Step-by-Step 1-60 Guides (CoA fork: Ascension 3.3.5 port, Joana H/A paths)
|
## Notes: Step-by-Step 1-60 Guides (CoA fork: Ascension 3.3.5 port, Joana H/A paths)
|
||||||
## Author: mrmr
|
## Author: mrmr
|
||||||
## Version: 1.04.2-coa1
|
## Version: 1.04.2
|
||||||
## DefaultState: enabled
|
## DefaultState: enabled
|
||||||
## LoadOnDemand: 0
|
## LoadOnDemand: 0
|
||||||
|
|
||||||
|
|
@ -57,6 +57,6 @@ UI.lua
|
||||||
|
|
||||||
libs\Tablet-2.0\Tablet-2.0.lua
|
libs\Tablet-2.0\Tablet-2.0.lua
|
||||||
libs\Dewdrop-2.0\Dewdrop-2.0.lua
|
libs\Dewdrop-2.0\Dewdrop-2.0.lua
|
||||||
libs\FuBarPlugin-2.0\FubarPlugin-2.0.lua
|
libs\FuBarPlugin-2.0\FuBarPlugin-2.0.lua
|
||||||
|
|
||||||
VGuideFu.lua
|
VGuideFu.lua
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue