1
1
--- @class CraftSim
2
2
local CraftSim = select (2 , ... )
3
3
4
+ local GUTIL = CraftSim .GUTIL
5
+
4
6
CraftSim .NEWS = {}
5
7
6
8
local print = CraftSim .DEBUG :SetDebugPrint (CraftSim .CONST .DEBUG_IDS .NEWS )
7
9
8
10
--- @param itemMap table<string , ItemMixin>
9
11
function CraftSim .NEWS :GET_NEWS (itemMap )
10
12
-- minimize names to make manual formatting easier :p
11
- local f = CraftSim . GUTIL :GetFormatter ()
13
+ local f = GUTIL :GetFormatter ()
12
14
local function newP (v ) return f .l (" \n --- Version " .. v .. " ---\n " ) end
13
15
local supporterListUpdate = f .p .. f .patreon (" Supporter List Update " ) ..
14
16
CraftSim .MEDIA :GetAsTextIcon (CraftSim .MEDIA .IMAGES .PIXEL_HEART , 0.15 )
@@ -19,6 +21,9 @@ function CraftSim.NEWS:GET_NEWS(itemMap)
19
21
f .p .. f .bb (" Concentration Tracker" ) .. " Tooltip now only lists" ,
20
22
f .a .. " tracked professions from currently open expansion" ,
21
23
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 ),
22
27
newP (" 17.1.9" ),
23
28
f .p .. " Fixed Average Yield Calculation for Sub Recipe Optimization" ,
24
29
f .a .. " - Thank you " .. f .bb (" DiegoSnoop" ) .. " for pointing that out!" ,
0 commit comments