Skip to content

Commit

Permalink
fix character item info setting dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils89 committed Jun 9, 2024
1 parent e733f26 commit a05e9dd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
6.14.10
FIXES
- Show character item info now works correctly

CHANGES
- Export some api

6.14.9
CHANGES
- Export some api
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG_NEW_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
6.14.10
FIXES
- Show character item info now works correctly

CHANGES
- Export some api

6.14.9
CHANGES
- Export some api
Expand Down
5 changes: 5 additions & 0 deletions changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ AddChange(string addonVersion, table changeList)
}
]]

addChange("6.14.10",{
{ct.bug, [=[Show character item info now works correctly]=]},
{ct.change, [=[Export some api]=]},
})

addChange("6.14.9",{
{ct.change, [=[Export some api]=]},
})
Expand Down
2 changes: 1 addition & 1 deletion settings/panel_player.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ local function LoadPlayerPanel(sWindow)
addOption(p_player.scroll.scrollchild, L["Player de/buff animation"], L["Shows an animation for new de/buffs"], "PLAYER_AURA_ANIMATION", nil, nil, {["PLAYER_BUFFS_ENABLED"] = true})
addOption(p_player.scroll.scrollchild, L["Advanced Casting Bar"], L["Enable or disable the advanced casting bar."], "CASTINGBAR_DATA", function(value) GW.TogglePlayerEnhancedCastbar(GwCastingBarPlayer, value); GW.TogglePlayerEnhancedCastbar(GwCastingBarPet, value); end, nil, {["CASTINGBAR_ENABLED"] = true})
addOption(p_player.scroll.scrollchild, L["Show spell queue window on castingbar"], nil, "PLAYER_CASTBAR_SHOW_SPELL_QUEUEWINDOW", nil, nil, {["CASTINGBAR_ENABLED"] = true, ["CASTINGBAR_DATA"] = true})
addOption(p_player.scroll.scrollchild, L["Show character item info"], L["Display gems and enchants on the GW2 character panel"], "SHOW_CHARACTER_ITEM_INFO", function() GW.ToggleCharacterItemInfo() end, nil, {["USE_CHARACTER_WINDOW"] = true, ["CASTINGBAR_DATA"] = true})
addOption(p_player.scroll.scrollchild, L["Show character item info"], L["Display gems and enchants on the GW2 character panel"], "SHOW_CHARACTER_ITEM_INFO", function() GW.ToggleCharacterItemInfo() end, nil, {["USE_CHARACTER_WINDOW"] = true})
addOption(p_player.scroll.scrollchild, L["Hide Blizzard dragon riding vigor"], nil, "HIDE_BLIZZARD_VIGOR_BAR", nil, nil, {["HEALTHGLOBE_ENABLED"] = true})
addOption(p_player.scroll.scrollchild, L["Show classpower bar only in combat"], nil, "CLASSPOWER_ONLY_SHOW_IN_COMBAT", function() GW.UpdateClassPowerVisibilitySetting(GwPlayerClassPower, true) end, nil, {["CLASS_POWER"] = true})
addOptionDropdown(
Expand Down

0 comments on commit a05e9dd

Please sign in to comment.