Skip to content

Commit

Permalink
1.35
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Oct 10, 2023
2 parents e94e83a + 3d6864e commit fb1a5e1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 15 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* Retail patch 10.1.7
* New Font Outline settings added: Shadow, Shadow Outline, and Shadow Thick. None setting no longer has a shadow.
* Wrath patch 3.4.3
2 changes: 1 addition & 1 deletion ElvUI_FCT/ElvUI_FCT-BCC.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## SavedVariables: ElvFCT
## RequiredDeps: ElvUI
## Interface: 20504
## Version: 1.34
## Version: 1.35

locales\load_locales.xml
settings.lua
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_FCT/ElvUI_FCT-Classic.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## SavedVariables: ElvFCT
## RequiredDeps: ElvUI
## Interface: 11404
## Version: 1.34
## Version: 1.35
## IconTexture: Interface\AddOns\ElvUI_FCT\Button

locales\load_locales.xml
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_FCT/ElvUI_FCT-Mainline.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## SavedVariables: ElvFCT
## RequiredDeps: ElvUI
## Interface: 100107
## Version: 1.34
## Version: 1.35
## IconTexture: Interface\AddOns\ElvUI_FCT\Button

locales\load_locales.xml
Expand Down
4 changes: 2 additions & 2 deletions ElvUI_FCT/ElvUI_FCT-Wrath.toc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
## Title: |cff1784d1ElvUI|r |cFFdd2244Floating Combat Text|r
## SavedVariables: ElvFCT
## RequiredDeps: ElvUI
## Interface: 30402
## Version: 1.34
## Interface: 30403
## Version: 1.35
## IconTexture: Interface\AddOns\ElvUI_FCT\Button

locales\load_locales.xml
Expand Down
12 changes: 3 additions & 9 deletions ElvUI_FCT/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ local version = format('[|cFF508cf7v%s|r]', Version)
local title = '|cFFdd2244Floating Combat Text|r'
local by = 'by |cFF8866ccSimpy|r and |cFF34dd61Lightspark|r (ls-)'

local FONT_OUTLINES = {
NONE = _G.NONE,
OUTLINE = 'OUTLINE',
MONOCHROMEOUTLINE = 'MONOCROMEOUTLINE',
THICKOUTLINE = 'THICKOUTLINE'
}

FCT.orders = {
colors = {
['1'] = 1, -- Damage
Expand Down Expand Up @@ -261,6 +254,7 @@ end

function FCT:Options()
FCT.L = E.Libs.ACL:GetLocale('ElvUI', E.global.general.locale or 'enUS')
local C = E.Config[1]
local L = FCT.L

FCT.options = {
Expand All @@ -283,10 +277,10 @@ function FCT:Options()
fonts = { order = 3, type = 'group', name = '', guiInline = true, args = {
header = { order = 0, name = FCT:ColorOption(L["Fonts"]), type = 'header' },
font = { order = 1, type = 'select', dialogControl = 'LSM30_Font', name = L["Font"], values = _G.AceGUIWidgetLSMlists.font },
fontOutline = { order = 2, name = L["Font Outline"], desc = L["Set the font outline."], type = 'select', values = FONT_OUTLINES},
fontOutline = { order = 2, name = L["Font Outline"], desc = L["Set the font outline."], type = 'select', sortByValue = true, values = C.Values.FontFlags},
fontSize = { order = 3, name = _G.FONT_SIZE, type = 'range', min = 4, max = 60, step = 1 },
critFont = { order = 4, type = 'select', dialogControl = 'LSM30_Font', name = L["Critical Font"], values = _G.AceGUIWidgetLSMlists.font },
critFontOutline = { order = 5, name = L["Critical Font Outline"], desc = L["Set the font outline."], type = 'select', values = FONT_OUTLINES},
critFontOutline = { order = 5, name = L["Critical Font Outline"], desc = L["Set the font outline."], type = 'select', sortByValue = true, values = C.Values.FontFlags},
critFontSize = { order = 6, name = L["Critical Font Size"], type = 'range', min = 4, max = 60, step = 1 }
}},
settings = { order = 4, type = 'group', name = '', guiInline = true, args = {
Expand Down

0 comments on commit fb1a5e1

Please sign in to comment.