From 181d6fcbed726ca6eeee1f4e7168bc5843795d63 Mon Sep 17 00:00:00 2001 From: Florian Berthold Date: Fri, 29 May 2026 10:43:54 +0200 Subject: [PATCH 1/3] fix: second FDID border texture (icongeneric) + remove dead spec_info guard --- Details/Libs/DF/icongeneric.lua | 2 +- Details/functions/profiles.lua | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Details/Libs/DF/icongeneric.lua b/Details/Libs/DF/icongeneric.lua index bf5160ad..eb0b60cd 100644 --- a/Details/Libs/DF/icongeneric.lua +++ b/Details/Libs/DF/icongeneric.lua @@ -405,7 +405,7 @@ detailsFramework.IconGenericMixin = { else if (iconSettings.borderColor) then iconFrame.Border:Show() - iconFrame.Border:SetTexture(iconSettings.borderTexture or 130759) + iconFrame.Border:SetTexture(iconSettings.borderTexture or [[Interface\COMMON\WhiteIconFrame]]) iconFrame.Border:SetVertexColor(unpack(iconSettings.borderColor or white)) else iconFrame.Border:Hide() diff --git a/Details/functions/profiles.lua b/Details/functions/profiles.lua index cd48cfcc..b18db6c8 100644 --- a/Details/functions/profiles.lua +++ b/Details/functions/profiles.lua @@ -964,11 +964,9 @@ for _, class in ipairs(CLASS_SORT_ORDER) do for _, spec in ipairs(specs) do local ok, spec_info = pcall(C_ClassInfo.GetSpecInfo, class, spec) if ok and spec_info then - if spec_info then default_profile.class_specs_coords [spec_info.ID] = {AtlasUtil:GetCoords("specicon-"..class.."-"..spec_info.Spec)} end end - end end end From 83f1db868454f1a1601060957501d67a2d5f2dc7 Mon Sep 17 00:00:00 2001 From: Florian Berthold Date: Fri, 29 May 2026 20:51:18 +0200 Subject: [PATCH 2/3] ci(release): hide auto-generated source archives (hide_archive_links) --- .gitea/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 709a7cda..1b1b66b8 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -37,7 +37,7 @@ 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" From f5e39c11aa6a30bdf42e49dd822886d1b46ad49f Mon Sep 17 00:00:00 2001 From: Florian Berthold Date: Wed, 10 Jun 2026 02:11:46 +0200 Subject: [PATCH 3/3] ci(release): sync release.yml from coa-template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hide_archive_links is only honored by Gitea on release edit, not create — add the PATCH step after create/lookup so auto-generated source archive links actually stay hidden (coa-template 90874c5). --- .gitea/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 1b1b66b8..2f93975c 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -41,6 +41,10 @@ jobs: | 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.