From 01bb974d60e14dc049399dc50af3abaddc9d4805 Mon Sep 17 00:00:00 2001
From: Linventif <linventif@gmail.com>
Date: Sat, 16 Dec 2023 16:22:23 +0100
Subject: [PATCH] Update server config descriptions

---
 lua/gmod_integration/client/cl_gui.lua  | 28 ++++++++++++-------------
 lua/gmod_integration/server/sv_main.lua | 10 ++++-----
 2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/lua/gmod_integration/client/cl_gui.lua b/lua/gmod_integration/client/cl_gui.lua
index 10183ea..0995cf8 100644
--- a/lua/gmod_integration/client/cl_gui.lua
+++ b/lua/gmod_integration/client/cl_gui.lua
@@ -15,7 +15,7 @@ local configCat = {
 local possibleConfig = {
     ["id"] = {
         ["label"] = "ID",
-        ["description"] = "Your server ID. You can find it on the webpanel.",
+        ["description"] = "Server ID found on the webpanel.",
         ["type"] = "textEntry",
         ["value"] = function(setting, value)
             return value
@@ -28,7 +28,7 @@ local possibleConfig = {
     },
     ["token"] = {
         ["label"] = "Token",
-        ["description"] = "Your server Token. You can find it on the webpanel.",
+        ["description"] = "Server Token found on the webpanel.",
         ["type"] = "textEntry",
         ["value"] = function(setting, value)
             return value
@@ -41,7 +41,7 @@ local possibleConfig = {
     },
     ["logs"] = {
         ["label"] = "Logs",
-        ["description"] = "Activate or deactivate the logs.",
+        ["description"] = "Activate or deactivate logs.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -53,7 +53,7 @@ local possibleConfig = {
     },
     ["filterOnBan"] = {
         ["label"] = "Block Discord Ban Player",
-        ["description"] = "Block players that are banned on the discord server.",
+        ["description"] = "Block players banned on the discord server.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -65,7 +65,7 @@ local possibleConfig = {
     },
     ["filterOnTrust"] = {
         ["label"] = "Block UnTrust Player",
-        ["description"] = "",
+        ["description"] = "Block players with a trust level lower than the minimal trust level set in the config.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -77,7 +77,7 @@ local possibleConfig = {
     },
     ["minimalTrust"] = {
         ["label"] = "Minimal Trust Level",
-        ["description"] = "Your server ID. You can find it on the webpanel.",
+        ["description"] = "The minimal trust level to be able to join the server.",
         ["type"] = "textEntry",
         ["value"] = function(setting, value)
             return value
@@ -90,7 +90,7 @@ local possibleConfig = {
     },
     ["syncChat"] = {
         ["label"] = "Sync Chat",
-        ["description"] = "Sync the chat between the server and the discord server.",
+        ["description"] = "Sync chat between the server and the discord server.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -102,7 +102,7 @@ local possibleConfig = {
     },
     ["syncBan"] = {
         ["label"] = "Sync Ban",
-        ["description"] = "Sync the chat between the server and the discord server.",
+        ["description"] = "Sync chat between the server and the discord server.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -114,7 +114,7 @@ local possibleConfig = {
     },
     ["syncTimeout"] = {
         ["label"] = "Sync Timeout",
-        ["description"] = "Sync the chat between the server and the discord server.",
+        ["description"] = "Sync chat between the server and the discord server.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -126,7 +126,7 @@ local possibleConfig = {
     },
     ["syncKick"] = {
         ["label"] = "Sync Kick",
-        ["description"] = "Sync the chat between the server and the discord server.",
+        ["description"] = "Sync chat between the server and the discord server.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -138,7 +138,7 @@ local possibleConfig = {
     },
     ["forcePlayerLink"] = {
         ["label"] = "Force Player Verif",
-        ["description"] = "Sync the chat between the server and the discord server.",
+        ["description"] = "Sync chat between the server and the discord server.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -150,7 +150,7 @@ local possibleConfig = {
     },
     ["supportLink"] = {
         ["label"] = "Support Link",
-        ["description"] = "Your server ID. You can find it on the webpanel.",
+        ["description"] = "Server ID found on the webpanel.",
         ["type"] = "textEntry",
         ["value"] = function(setting, value)
             return value
@@ -163,7 +163,7 @@ local possibleConfig = {
     },
     ["debug"] = {
         ["label"] = "Debug",
-        ["description"] = "Activate or deactivate the debug mode.",
+        ["description"] = "Activate or deactivate debug mode.",
         ["type"] = "checkbox",
         ["value"] = function(setting, value)
             return value
@@ -192,7 +192,7 @@ local buttonsInfo = {
 
 function gmInte.openConfigMenu(data)
     local frame = vgui.Create("DFrame")
-    frame:SetSize(400, 400)
+    frame:SetSize(400, (600 / 1080) * ScrH())
     frame:Center()
     frame:SetTitle("Gmod Integration - Server Config")
     frame:SetDraggable(true)
diff --git a/lua/gmod_integration/server/sv_main.lua b/lua/gmod_integration/server/sv_main.lua
index d354fc6..4d68cf0 100644
--- a/lua/gmod_integration/server/sv_main.lua
+++ b/lua/gmod_integration/server/sv_main.lua
@@ -88,8 +88,8 @@ function gmInte.userFinishConnect(ply)
 
     gmInte.post("/server/user/finishConnect",
         {
-            ["steam"] = ply:SteamID64(), // essential
-            ["name"] = ply:Nick(), // for the syncro name
+            ["steam"] = ply:SteamID64(),
+            ["name"] = ply:Nick(),
         }
     )
 end
@@ -137,9 +137,9 @@ function gmInte.playerChangeName(ply, old, new)
 
     gmInte.post("/server/user/changeName",
         {
-            ["steam"] = ply:SteamID64(),
-            ["old"] = old,
-            ["new"] = new,
+            ["steamID64"] = ply:SteamID64(),
+            ["oldName"] = old,
+            ["newName"] = new,
         }
     )
 end