From fba862a1efafd892c9005007ccb81b26ae783bd6 Mon Sep 17 00:00:00 2001 From: Florian Brinker Date: Thu, 19 Sep 2024 22:32:56 +0200 Subject: [PATCH] Fix Bracket-Style --- .luacheckrc | 2 +- AchievementInfoApplication.lua | 2 +- CHANGELOG.md | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index fd10903..a3aece4 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -17,7 +17,7 @@ read_globals = { "EVENT_ACHIEVEMENT_UPDATED", "EVENT_ADD_ON_LOADED", "EVENT_MANAGER", - "LINK_STYLE_BRACKET", + "LINK_STYLE_BRACKETS", "zo_callLater", "zo_strformat", "ZO_SavedVars", diff --git a/AchievementInfoApplication.lua b/AchievementInfoApplication.lua index 656267a..dd33e33 100644 --- a/AchievementInfoApplication.lua +++ b/AchievementInfoApplication.lua @@ -49,7 +49,7 @@ function AchievementInfo.onAchievementUpdated(_, achId) local percentageStep = false local percentageStepSize = AchievementInfo.settingGet("genShowUpdateSteps") - local link = GetAchievementLink(achId, LINK_STYLE_BRACKET) + local link = GetAchievementLink(achId, LINK_STYLE_BRACKETS) local catName = "/" if categoryId ~= false then diff --git a/CHANGELOG.md b/CHANGELOG.md index 87e02a1..1b0b6b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ #### Notable Changes +##### Release 4.15 +* Fixed "bracket style" of the achievement links, thanks to DakJaniels + ##### Release 4.5 * Fixed "ShowDetails" option working only in combination with "ShowOpenDetailsOnly"