Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Constants.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ local constants = {
ADDON_METADATA_VERSION_KEY = "Version",
DEBUG_COLOR = "F17934",
ERROR_COLOR = "ff4040",
WARNING_COLOR = "ffd100",
RELEASE_POPUP_VERSION = "v0.8.3",
VERSION_TAG_BETA = "beta",

Expand Down Expand Up @@ -122,7 +123,7 @@ local constants = {
-- Runtime timing and debug limits
LAYOUT_COMBAT_END_DELAY = 0.1,
LAYOUT_ENTERING_WORLD_DELAY = 0.4,
LAYOUT_STORM_COUNT = 20,
LAYOUT_STORM_COUNT = 60,
LAYOUT_STORM_WINDOW = 2,
LAYOUT_ZONE_CHANGE_DELAY = 0.1,
LIFECYCLE_SECOND_PASS_DELAY = 0.05,
Expand Down
2 changes: 1 addition & 1 deletion ECM.lua
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function ns.ErrorLog(module, message, data)
local messageStr = ns.ToString(message)
local payload = makeErrorData(module, nil, data)
local dataStr = ns.ToString(payload)
local coloredPrefix = "|cff" .. C.ERROR_COLOR .. "[" .. L["ADDON_ABRV"] .. " Error"
local coloredPrefix = "|cff" .. C.WARNING_COLOR .. "[" .. L["ADDON_ABRV"] .. " Warning"
.. (module and (" " .. module) or "") .. "]|r "

print(coloredPrefix .. messageStr .. "\n" .. dataStr)
Expand Down
15 changes: 13 additions & 2 deletions EnhancedCooldownManager.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"Lua.workspace.library": [
"~\\scoop\\apps\\luarocks\\current\\rocks\\share\\lua\\5.4\\busted",
"~\\.vscode\\extensions\\ketho.wow-api-0.22.2\\Annotations\\Core"
"~\\.vscode\\extensions\\ketho.wow-api-0.22.3\\Annotations\\Core"
],
"Lua.workspace.ignoreDir": [
"Tests",
Expand Down Expand Up @@ -85,7 +85,18 @@
"ChatFontNormal",
"GRAY_FONT_COLOR",
"coroutine",
"canaccesstable"
"canaccesstable",
"ADD",
"REMOVE",
"BuffBarCooldownViewer",
"UISpecialFrames",
"ScrollUtil",
"CreateScrollBoxListLinearView",
"CreateDataProvider",
"GameTooltip_Hide",
"SettingsPanel",
"SettingsSliderControlMixin",
"CreateSettingsListSectionHeaderInitializer"
],
"Lua.diagnostics.disable": [
"assign-type-mismatch"
Expand Down
2 changes: 1 addition & 1 deletion EnhancedCooldownManager.toc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Libs\LibDeflate\lib.xml
Libs\LibEditMode\embed.xml
Libs\LibSharedMedia-3.0\lib.xml
Libs\LibSettingsBuilder\embed.xml
Libs\LibLSMSettingsWidgets\LibLSMSettingsWidgets.xml
Libs\LibLSMSettingsWidgets\LibLSMSettingsWidgets.lua

Constants.lua
Locales\en.lua
Expand Down
Loading