Version 1.0.0

- added info section with contact and thanks
- fixed minor clarifications and spellings errors on help texts
This commit is contained in:
2020-09-01 13:49:49 +02:00
parent 45099a9a3b
commit e53900d2b1
8 changed files with 93 additions and 25 deletions

View File

@@ -39,6 +39,8 @@ Grichelde.COLOR_CODES = {
YELLOW = _G.YELLOW_FONT_COLOR_CODE or "|cffffff00",
LIGHTYELLOW = _G.LIGHTYELLOW_FONT_COLOR_CODE or "|cffffff9a",
ORANGE = _G.ORANGE_FONT_COLOR_CODE or "|cffff7f3f",
BLUE = "|cff0000ff",
HYPERLINK = "|cff4040ff",
CLOSE = _G.FONT_COLOR_CODE_CLOSE or "|r",
}
@@ -373,6 +375,10 @@ local function cRed(text)
return Grichelde.F.color(Grichelde.COLOR_CODES.RED, text)
end
local function cHyperlink(text)
return Grichelde.F.color(Grichelde.COLOR_CODES.HYPERLINK, text)
end
-- faster function lookups by mapping to local refs
Grichelde.F = {
IsAddOnLoaded = _G.IsAddOnLoaded,
@@ -421,6 +427,7 @@ Grichelde.F = {
cGreen = cGreen,
cOrange = cOrange,
cRed = cRed,
cHyperlink = cHyperlink,
toByte = _G.string.byte,
bytes2Char = _G.string.char,
format = _G.string.format,