diff --git a/CHANGELOG.md b/CHANGELOG.md index aa867ce8..052f1665 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## Version 110000.03 + +### Action Bars + +- Fixed an issue where droids wouldn't get the skyriding bar in the flying form. + ## Version 110000.02 ### Blizzard diff --git a/ls_UI/core/changelog.lua b/ls_UI/core/changelog.lua index b3e9ee73..2673b278 100644 --- a/ls_UI/core/changelog.lua +++ b/ls_UI/core/changelog.lua @@ -6,11 +6,7 @@ local _G = getfenv(0) -- Mine E.CHANGELOG = [[ -### Blizzard +### Action Bars -- Added an option to scale the game menu. Can be found at /LSUI > Blizzard > Game Menu. - -### Tooltips - -- Added the bag vs bank (bank + reagent bank + warbank) details to the total item count. It'll only be shown if you have that item in your banks. +- Fixed an issue where droids wouldn't get the skyriding bar in the flying form. ]] diff --git a/ls_UI/embeds/oUF b/ls_UI/embeds/oUF index 73f4fde7..637ace2d 160000 --- a/ls_UI/embeds/oUF +++ b/ls_UI/embeds/oUF @@ -1 +1 @@ -Subproject commit 73f4fde761028e8c3fdd2f91ae1c984be8b10b7d +Subproject commit 637ace2dfbb502df17f3864db901695356182521 diff --git a/ls_UI/init.lua b/ls_UI/init.lua index 1426db51..db7d438b 100644 --- a/ls_UI/init.lua +++ b/ls_UI/init.lua @@ -200,8 +200,6 @@ E:RegisterEvent("ADDON_LOADED", function(arg1) AddonCompartmentFrame:RegisterAddon({ text = L["LS_UI"], icon = "Interface\\AddOns\\ls_UI\\assets\\logo-32", - notCheckable = true, - registerForAnyClick = true, func = function() if not InCombatLockdown() then openConfig() diff --git a/ls_UI/ls_UI.toc b/ls_UI/ls_UI.toc index 762cb98d..e29b6fab 100644 --- a/ls_UI/ls_UI.toc +++ b/ls_UI/ls_UI.toc @@ -1,6 +1,6 @@ ## Interface: 110000, 110002 ## Author: lightspark -## Version: 110000.02 +## Version: 110000.03 ## Title: LS: |cff1a9fc0UI|r ## Notes: Yet another UI, but this one is a bit special... ## IconTexture: Interface\AddOns\ls_UI\assets\logo-64 diff --git a/ls_UI/modules/bars/actionbars.lua b/ls_UI/modules/bars/actionbars.lua index 5d1272ac..e900121f 100644 --- a/ls_UI/modules/bars/actionbars.lua +++ b/ls_UI/modules/bars/actionbars.lua @@ -90,8 +90,8 @@ local PAGE_STATES = { ["ROGUE"] = " [bonusbar:1] 7;", -- Soar ["EVOKER"] = " [bonusbar:1] 7;", - -- [bonusbar:5] 11 is dragon riding - ["DEFAULT"] = "[overridebar] 18; [shapeshift] 17; [vehicleui][possessbar] 16; [bonusbar:5,mounted] 11; [bar:2] 2; [bar:3] 3; [bar:4] 4; [bar:5] 5; [bar:6] 6;", + -- [bonusbar:5] 11 is skyriding + ["DEFAULT"] = "[overridebar] 18; [shapeshift] 17; [vehicleui][possessbar] 16; [bonusbar:5] 11; [bar:2] 2; [bar:3] 3; [bar:4] 4; [bar:5] 5; [bar:6] 6;", } local function getPageState()