Skip to content

Commit

Permalink
Changelog for game version 3774 (#5676)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas authored Nov 15, 2023
1 parent 7aa2fcf commit bd5c8a9
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 5 deletions.
51 changes: 51 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,57 @@

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

# Game version 3774 (15th of November, 2023)

Please refer to the notes of versions 3771, 3772 and 3773 for the full patch notes.

With gratitude to all those who took the time to report issues,

Jip

## Features

- (#5655) Add a hotkey to interrupt the navigation of engineers

This hotkey adds micro for easier utilization of the engineer's full build range.

- (#5653) Improve the behavior of transports that want to pickup or dropoff units

With thanks to Clyf the behavior of transports is more reliable. Transports will in general be quicker at picking up and dropping off units.

## Bug fixes

- (#5660) Fix various subtle bugs, improving overall stability

## AI

- (#5660) Fix the distance computation of pathing functions of the navigational mesh
- (#5647) Add more debug functionality for state machines

Add more debug functionality for state machines, making it easier for developers to visualize the state machine's objectives by selecting its units.

## Graphics

- (#5654) Further improve the appearance of water

Specifically by reducing the 'light emitting,' 'glow,' or 'translucent' effect, especially on wrecks.

## Other changes

- Various annotation work of code has been completed
- Various refactoring of file structures has been completed

This is done in such a way that it won't break mods but it will allow us to refactor some of the classes to improve performance.

## Contributors

With thanks to the following people who contributed through coding:

- Jip
- BlackYps
- Clyf
- Rowey

# Game version 3773 (2th of November, 2023)

Please refer to the notes of versions 3771 and 3772 for the full patch notes.
Expand Down
61 changes: 60 additions & 1 deletion lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
last_version = 3773
last_version = 3774

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

Expand All @@ -12,6 +12,65 @@ last_version = 3773

---@type PatchNotes[]
gamePatches = {
{
version = 3774,
name = "Hotfix",
description = {
"# Game version 3774 (15th of November, 2023)",
"",
"Please refer to the notes of versions 3771, 3772 and 3773 for the full patch notes.",
"",
"With gratitude to all those who took the time to report issues,",
"",
"Jip",
"",
"## Features",
"",
"- (#5655) Add a hotkey to interrupt the navigation of engineers",
"",
"This hotkey adds micro for easier utilization of the engineer's full build range.",
"",
"- (#5653) Improve the behavior of transports that want to pickup or dropoff units",
"",
"With thanks to Clyf the behavior of transports is more reliable. Transports will in general be quicker at picking up ",
"and dropping off units.",
"",
"## Bug fixes",
"",
"- (#5660) Fix various subtle bugs, improving overall stability",
"",
"## AI",
"",
"- (#5660) Fix the distance computation of pathing functions of the navigational mesh",
"- (#5647) Add more debug functionality for state machines",
"",
"Add more debug functionality for state machines, making it easier for developers to visualize the state machine's ",
"objectives by selecting its units.",
"",
"## Graphics",
"",
"- (#5654) Further improve the appearance of water",
"",
"Specifically by reducing the 'light emitting,' 'glow,' or 'translucent' effect, especially on wrecks.",
"",
"## Other changes",
"",
"- Various annotation work of code has been completed",
"- Various refactoring of file structures has been completed",
"",
"This is done in such a way that it won't break mods but it will allow us to refactor some of the classes to improve ",
"performance in future updates.",
"",
"## Contributors",
"",
"With thanks to the following people who contributed through coding:",
"",
"- Jip",
"- BlackYps",
"- Clyf",
"- Rowey",
},
},
{
version = 3773,
name = "Hotfix",
Expand Down
6 changes: 3 additions & 3 deletions lua/version.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

local Version = "3773"
---@alias PATCH "3773"
---@alias VERSION "1.5.3773"
local Version = "3774"
---@alias PATCH "3774"
---@alias VERSION "1.5.3774"
---@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 = 3773
version = 3774
_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 bd5c8a9

Please sign in to comment.