Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a67562b
wip
Alessandro-Barbieri Jan 29, 2026
1af29d6
wip
Alessandro-Barbieri Jan 29, 2026
e8f2af3
wip
Alessandro-Barbieri Jan 30, 2026
5476460
wip
Alessandro-Barbieri Jan 30, 2026
a0e6b0f
wip
Alessandro-Barbieri Jan 30, 2026
0989427
Merge branch 'master' into ratings
Alessandro-Barbieri Feb 12, 2026
ea984ca
false on non english lines
Alessandro-Barbieri Feb 13, 2026
01b435f
Merge branch 'master' into ratings
Alessandro-Barbieri Feb 14, 2026
33f2ba2
Merge branch 'master' into ratings
Alessandro-Barbieri Feb 14, 2026
a30796f
Merge branch 'BreakBB:master' into ratings
Alessandro-Barbieri Feb 17, 2026
1ba23b0
Merge branch 'master' into ratings
Alessandro-Barbieri Feb 17, 2026
b6b245d
wip
Alessandro-Barbieri Feb 17, 2026
8748aa7
wip
Alessandro-Barbieri Feb 18, 2026
713c772
wip
Alessandro-Barbieri Feb 18, 2026
cb4bffe
wip
Alessandro-Barbieri Feb 18, 2026
8393988
resilience
Alessandro-Barbieri Feb 18, 2026
f2bb975
wip
Alessandro-Barbieri Feb 18, 2026
883d038
wip
Alessandro-Barbieri Feb 18, 2026
482cfdf
wip
Alessandro-Barbieri Feb 18, 2026
f1bc415
wip
Alessandro-Barbieri Feb 18, 2026
5a7fa6b
wip
Alessandro-Barbieri Feb 18, 2026
bb193ce
wip
Alessandro-Barbieri Feb 19, 2026
f0b6aa9
wip
Alessandro-Barbieri Feb 19, 2026
2f23430
wip
Alessandro-Barbieri Feb 20, 2026
bd807dd
Merge branch 'master' into ratings
Alessandro-Barbieri Feb 20, 2026
c94af6b
wip
Alessandro-Barbieri Feb 20, 2026
c09b4db
Merge branch 'master' into ratings
Alessandro-Barbieri Feb 23, 2026
a8f4cb1
revert
Alessandro-Barbieri Mar 2, 2026
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
9 changes: 6 additions & 3 deletions .luacheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,10 @@ stds.ecs = {
"C_Debug.GetMapDebugObjects",
"C_Debug.TeleportToMapDebugObject",
"C_Debug.TeleportToMapLocation",
"C_Engraving",
"C_Engraving.GetRuneForEquipmentSlot",
"C_EventUtils",
"C_Engraving",
"C_EventUtils.IsEventValid",
"C_EventUtils",
"C_FriendList.AddFriend",
"C_FriendList.AddIgnore",
"C_FriendList.AddOrDelIgnore",
Expand Down Expand Up @@ -570,11 +570,11 @@ stds.ecs = {
"C_UIWidgetManager.GetTextureWithStateVisualizationInfo",
"C_UIWidgetManager.GetTextWithStateWidgetVisualizationInfo",
"C_UIWidgetManager.GetTopCenterWidgetSetID",
"C_UnitAuras",
"C_UnitAuras.GetAuraDataByIndex",
"C_UnitAuras.GetBuffDataByIndex",
"C_UnitAuras.GetDebuffDataByIndex",
"C_UnitAuras.GetPlayerAuraBySpellID",
"C_UnitAuras",
"C_VideoOptions.GetGxAdapterInfo",
"C_VoiceChat.ActivateChannel",
"C_VoiceChat.BeginLocalCapture",
Expand Down Expand Up @@ -819,6 +819,8 @@ stds.ecs = {
"CR_HIT_RANGED",
"CR_HIT_SPELL",
"CR_PARRY",
"CR_RESILIENCE_CRIT_TAKEN",
"CR_RESILIENCE_PLAYER_DAMAGE_TAKEN",
"CR_WEAPON_SKILL",
"CreateFont",
"CreateFrame",
Expand Down Expand Up @@ -1196,6 +1198,7 @@ stds.ecs = {
"GetMirrorTimerProgress",
"GetModifiedClick",
"GetModifiedClickAction",
"GetModResilienceDamageReduction",
"GetMoney",
"GetMonitorAspectRatio",
"GetMonitorCount",
Expand Down
18 changes: 9 additions & 9 deletions Modules/Config/Config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ _GeneralTab = function()
generalHeader = {
type = "header",
order = 1,
name = function() return i18n("General Settings") end,
name = function() return i18n("General settings") end,
},
statsWindowClosedOnOpen = {
type = "toggle",
Expand All @@ -76,7 +76,7 @@ _GeneralTab = function()
addColorsToStatTexts = {
type = "toggle",
order = 2,
name = function() return i18n("Colorize Stats") end,
name = function() return i18n("Colorize stats") end,
desc = function() return i18n("Adds colors to the stats overview.") end,
width = "full",
get = function () return ExtendedCharacterStats.general.addColorsToStatTexts; end,
Expand Down Expand Up @@ -111,7 +111,7 @@ _GeneralTab = function()
showQualityColors = {
type = "toggle",
order = 3,
name = function() return i18n("Show Item Quality Colors") end,
name = function() return i18n("Show item quality colors") end,
desc = function() return i18n("Shows/Hides the colored frames around equipped items.") end,
width = "full",
get = function () return ExtendedCharacterStats.general.showQualityColors; end,
Expand All @@ -123,7 +123,7 @@ _GeneralTab = function()
qualityColorsIntensity = {
type = "range",
order = 4,
name = function() return i18n("Quality Colors' Intensity") end,
name = function() return i18n("Quality colors' intensity") end,
desc = function() return i18n("Changes the intensity of the colored frames' glow.") end,
width = "double",
min = 0.10,
Expand All @@ -138,7 +138,7 @@ _GeneralTab = function()
headerFontSize = {
type = "range",
order = 5,
name = function() return i18n("Header Font Size") end,
name = function() return i18n("Header font size") end,
desc = function() return i18n("Changes the font size of the headers (e.g. Melee)") end,
width = "double",
min = 8,
Expand All @@ -153,8 +153,8 @@ _GeneralTab = function()
statFontSize = {
type = "range",
order = 6,
name = function() return i18n("Stat Font Size") end,
desc = function() return i18n("Changes the font size of the stat lines (e.g. Crit)") end,
name = function() return i18n("Stat font size") end,
desc = function() return i18n("Changes the font size of the stat lines (e.g. Crit.)") end,
width = "double",
min = 8,
max = 18,
Expand All @@ -168,7 +168,7 @@ _GeneralTab = function()
windowWidth = {
type = "range",
order = 7,
name = function() return i18n("Window Width") end,
name = function() return i18n("Window width") end,
desc = function() return i18n("Changes the width of the stats window") end,
width = "double",
min = 12,
Expand Down Expand Up @@ -241,7 +241,7 @@ _StatsTab = function ()
statsHeader = {
type = "header",
order = 1,
name = function() return i18n("Stats Settings") end,
name = function() return i18n("Stats settings") end,
},
generalGroup = _Config:LoadGeneralSection(),
meleeGroup = _Config:LoadMeleeSection(),
Expand Down
Loading
Loading