Skip to content

Commit 0ca5117

Browse files
committed
update
1 parent d22b163 commit 0ca5117

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Data/News.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
---@class CraftSim
22
local CraftSim = select(2, ...)
33

4+
local GUTIL = CraftSim.GUTIL
5+
46
CraftSim.NEWS = {}
57

68
local print = CraftSim.DEBUG:SetDebugPrint(CraftSim.CONST.DEBUG_IDS.NEWS)
79

810
---@param itemMap table<string, ItemMixin>
911
function CraftSim.NEWS:GET_NEWS(itemMap)
1012
-- minimize names to make manual formatting easier :p
11-
local f = CraftSim.GUTIL:GetFormatter()
13+
local f = GUTIL:GetFormatter()
1214
local function newP(v) return f.l("\n --- Version " .. v .. " ---\n") end
1315
local supporterListUpdate = f.p .. f.patreon("Supporter List Update ") ..
1416
CraftSim.MEDIA:GetAsTextIcon(CraftSim.MEDIA.IMAGES.PIXEL_HEART, 0.15)
@@ -19,6 +21,9 @@ function CraftSim.NEWS:GET_NEWS(itemMap)
1921
f.p .. f.bb("Concentration Tracker") .. " Tooltip now only lists",
2022
f.a .. "tracked professions from currently open expansion",
2123
f.p .. f.bb("Specialization Data Update") .. " for 11.0.2.56313",
24+
f.p .. "Changed general money format from",
25+
f.a .. GUTIL:FormatMoney(12345678, false, nil, false, true),
26+
f.a .. " to " .. GUTIL:FormatMoney(12345678),
2227
newP("17.1.9"),
2328
f.p .. "Fixed Average Yield Calculation for Sub Recipe Optimization",
2429
f.a .. "- Thank you " .. f.bb("DiegoSnoop") .. " for pointing that out!",

Libs/GUTIL

Submodule GUTIL updated 1 file

0 commit comments

Comments
 (0)