Skip to content

Commit

Permalink
CL
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils89 committed Dec 24, 2024
1 parent 6e464bd commit 4da8129
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
7.9.3
CHANGES
- Remove CUSTOM_CLASS_COLOR support and cahnge it to GW2 Class colors
- Add option to set number format

7.9.2
CHANGES
- TRP3 chat support
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG_NEW_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
7.9.3
CHANGES
- Remove CUSTOM_CLASS_COLOR support and cahnge it to GW2 Class colors
- Add option to set number format

7.9.2
CHANGES
- TRP3 chat support
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("7.9.3",{
{ct.change, [=[Remove CUSTOM_CLASS_COLOR support and cahnge it to GW2 Class colors]=]},
{ct.change, [=[Add option to set number format]=]},
})

addChange("7.9.2",{
{ct.change, [=[TRP3 chat support]=]},
})
Expand Down
6 changes: 3 additions & 3 deletions core/EditMode.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ local hideFrames = {}
eventFrame.hideFrames = hideFrames

local function getGameMenuEditModeButton() -- MenuButton get saved while adding gw2 setting button
local menu = GameMenuFrame
return menu and menu.GwMenuButtons and GameMenuFrame.GwMenuButtons[HUD_EDIT_MODE_MENU]
local menu = GameMenuFrame
return menu and menu.GwMenuButtons and GameMenuFrame.GwMenuButtons[HUD_EDIT_MODE_MENU]
end

local function SetEnabled(self, enabled)
Expand Down Expand Up @@ -74,7 +74,7 @@ local function ApplyBlizzardEditModeChanges(self)

LEMO:RegisterForLayoutChangeBackToGW2Layout()

MirrorTimerContainer:Show()
--MirrorTimerContainer:Show()

changesDone = true
end
Expand Down
2 changes: 1 addition & 1 deletion libs/LibEditMode/LibEditModeOverride.lua
Original file line number Diff line number Diff line change
Expand Up @@ -320,5 +320,5 @@ local function TriggerGw2Switch()
end
function lib:RegisterForLayoutChangeBackToGW2Layout()
hooksecurefunc(EditModeManagerFrame, "SelectLayout", SetLayoutBackToGw2Layout)
TriggerGw2Switch()
--TriggerGw2Switch()
end

0 comments on commit 4da8129

Please sign in to comment.