@@ -235,7 +235,7 @@ local function CreateMainFrame()
235235 -- Version badge
236236 local versionBadge = header :CreateFontString (nil , " OVERLAY" , " GameFontNormalSmall" )
237237 versionBadge :SetPoint (" LEFT" , title , " RIGHT" , 4 , 0 )
238- versionBadge :SetText (" v1.1.11 " )
238+ versionBadge :SetText (" v1.1.12 " )
239239 versionBadge :SetTextColor (unpack (COLORS .accent ))
240240
241241 -- View mode indicator (pill badge)
@@ -870,8 +870,13 @@ function HonorLog:UpdateMainFrame()
870870 local totalSession = self :GetTotalSessionStats ()
871871 if totalSession .played > 0 then
872872 local color = totalSession .winrate >= 50 and COLORS .win or COLORS .loss
873- frame .sessionQuick :SetText (string.format (" %d-%d %.0f%%" ,
874- totalSession .wins , totalSession .losses , totalSession .winrate ))
873+ local quickText = string.format (" %d-%d %.0f%%" ,
874+ totalSession .wins , totalSession .losses , totalSession .winrate )
875+ -- Add hourly rate if available
876+ if totalSession .hourlyRate > 0 then
877+ quickText = quickText .. string.format (" |cffffd700%d/hr|r" , totalSession .hourlyRate )
878+ end
879+ frame .sessionQuick :SetText (quickText )
875880 frame .sessionQuick :SetTextColor (unpack (color ))
876881 else
877882 frame .sessionQuick :SetText (" --" )
0 commit comments