Skip to content

Commit

Permalink
Increased rank column size wide.
Browse files Browse the repository at this point in the history
  • Loading branch information
juliocoliveira committed May 19, 2024
1 parent 139de89 commit 69cd9c4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion addon.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"AddonInfo"
{
"name" "SUI Scoreboard"
"version" "2.6.7"
"version" "2.6.8"
"up_date" "2024-05-19"
"author_name" "Dathus [BR]"
"author_url" "http://www.juliocesar.me"
Expand Down
6 changes: 3 additions & 3 deletions lua/autorun/_sui_scoreboard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Copyright only on the code that I wrote, my implementation and fixes and etc, Th
----------------------------------------------------------------------------------------------------------------------------
$Id$
Version 2.6 - 2024-05-19 10:47 AM(UTC -03:00)
Version 2.6 - 2024-05-19 11:25 AM (UTC -03:00)
]]--

-- Setup Class
Scoreboard = {}
-- Scoreboard version
Scoreboard.version = "2.6.7"
Scoreboard.version = "2.6.8"

--Setup Loading Log Formatation
function loadingLog (text)
Expand All @@ -41,7 +41,7 @@ Msg( "\n/====================================\\\n")
Msg( "|| SUI Scoreboard ||\n" )
Msg( "||----------------------------------||\n" )
loadingLog("Version " .. Scoreboard.version)
loadingLog("Updated on 2024-05-19 10:47 AM")
loadingLog("Updated on 2024-05-19 11:25 AM")
Msg( "\\====================================/\n\n" )

if SERVER then
Expand Down
4 changes: 2 additions & 2 deletions lua/sui_scoreboard/client/player_row.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Copyright only on the code that I wrote, my implementation and fixes and etc, Th
----------------------------------------------------------------------------------------------------------------------------
$Id$
Version 2.6 - 2023-06-06 8:00 PM(UTC -03:00)
Version 2.6 - 2024-05-19 11:25 AM (UTC -03:00)
]]--

Expand Down Expand Up @@ -399,7 +399,7 @@ function PANEL:PerformLayout()
self.lblFrags:SetPos( self:GetWide() - COLUMN_SIZE * 5.4, 0 )
self.lblHealth:SetPos( self:GetWide() - COLUMN_SIZE * 6.4, 0 )
self.lblHours:SetPos( self:GetWide() - COLUMN_SIZE * 10.3, 0 )
self.lblTeam:SetPos( self:GetWide() - COLUMN_SIZE * 13.2, 3 )
self.lblTeam:SetPos( self:GetWide() - COLUMN_SIZE * 16.1, 3 )

if self.Open or self.Size ~= self.TargetSize then
self.infoCard:SetVisible( true )
Expand Down
4 changes: 2 additions & 2 deletions lua/sui_scoreboard/client/scoreboard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Copyright only on the code that I wrote, my implementation and fixes and etc, Th
----------------------------------------------------------------------------------------------------------------------------
$Id$
Version 2.6 - 2023-06-06 8:00 PM(UTC -03:00)
Version 2.6 - 2024-05-19 11:25 AM(UTC -03:00)
]]--

Expand Down Expand Up @@ -239,7 +239,7 @@ function PANEL:PerformLayout()
self.lblKills:SetPos( self:GetWide() - COLUMN_SIZE*5.4 - self.lblKills:GetWide()/2, self.PlayerFrame.y - self.lblPing:GetTall() - 3 )
self.lblHealth:SetPos( self:GetWide() - COLUMN_SIZE*6.4 - self.lblKills:GetWide()/2, self.PlayerFrame.y - self.lblPing:GetTall() - 3 )
self.lblHours:SetPos( self:GetWide() - COLUMN_SIZE*10.2 - self.lblKills:GetWide()/2, self.PlayerFrame.y - self.lblPing:GetTall() - 3 )
self.lblTeam:SetPos( self:GetWide() - COLUMN_SIZE*13.1 - self.lblKills:GetWide()/2, self.PlayerFrame.y - self.lblPing:GetTall() - 3 )
self.lblTeam:SetPos( self:GetWide() - COLUMN_SIZE*16 - self.lblKills:GetWide()/2, self.PlayerFrame.y - self.lblPing:GetTall() - 3 )
end

--- ApplySchemeSettings
Expand Down

0 comments on commit 69cd9c4

Please sign in to comment.