Skip to content

Commit

Permalink
Revert network parameter changes (#4786)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas authored Mar 5, 2023
1 parent bcd6b0f commit b5d9e27
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 10 deletions.
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@

Some sections of the changelog are available in other languages such as [French](changelog-fr.md) or [Russian](changelog-ru.md)

# Game version 3755 (5th of March, 2023)

## Bug fixes

- (#4786) Revert the network parameters back to their usual values

## Contributors

Jip (#4786)

# Game version 3754 (5th of March, 2023)

See the patch notes of 3751 for the full patch notes.
Expand Down
9 changes: 4 additions & 5 deletions lua/ui/game/gamemain.lua
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,14 @@ function CreateUI(isReplay)
ConExecute('d3d_WindowsCursor on')

-- tweak networking parameters
ConExecute('net_MinResendDelay 80')
ConExecute('net_MaxResendDelay 300')
ConExecute('net_MinResendDelay 100')
ConExecute('net_MaxResendDelay 1000')

ConExecute('net_MaxSendRate 8192')
ConExecute('net_MaxBacklog 8192')

ConExecute('net_SendDelay 1')
ConExecute('net_AckDelay 1')
ConExecute('net_ResendDelayBias 1')
ConExecute('net_SendDelay 5')
ConExecute('net_AckDelay 5')

-- enable experimental graphics
if Prefs.GetFromCurrentProfile('options.fidelity') >= 2 and
Expand Down
18 changes: 17 additions & 1 deletion lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
last_version = 3754
last_version = 3755

---@alias PatchNotesType "Hotfix"|"Developers patch"|"Balance patch"

Expand All @@ -12,6 +12,22 @@ last_version = 3754

---@type PatchNotes[]
gamePatches = {
{
version = 3755,
name = "Hotfix",
description = {
"",
"See the patch notes of 3751 for the full patch notes.",
"",
"## Bug fixes",
"",
"- (#4786) Revert the network parameters back to their usual values",
"",
"## Contributors",
"",
"Jip (#4786)",
}
},
{
version = 3754,
name = "Hotfix",
Expand Down
6 changes: 3 additions & 3 deletions lua/version.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local Version = "3754"
---@alias PATCH "3754"
---@alias VERSION "1.5.3754"
local Version = "3755"
---@alias PATCH "3755"
---@alias VERSION "1.5.3755"
---@return PATCH
function GetVersion()
LOG('Supreme Commander: Forged Alliance version ' .. Version)
Expand Down
2 changes: 1 addition & 1 deletion mod_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-- Documentation for the extended FAF mod_info.lua format can be found here:
-- https://github.com/FAForever/fa/wiki/mod_info.lua-documentation
name = "Forged Alliance Forever"
version = 3754
version = 3755
_faf_modname='faf'
copyright = "Forged Alliance Forever Community"
description = "Forged Alliance Forever extends Forged Alliance, bringing new patches, game modes, units, ladder, and much more!"
Expand Down

0 comments on commit b5d9e27

Please sign in to comment.