Skip to content

Commit

Permalink
Changelog 3753 (#4742)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas authored Feb 25, 2023
1 parent 93d8eb6 commit 339420b
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 5 deletions.
20 changes: 20 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@

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

# Game version 3753 (25th of February, 2022)

See the patch notes of 3751 for the full patch notes.

## Bug fixes

- (#4741) Fix build preview of underwater storages

- (#4739) Fix Aloha being ignored by tactical missile defenses

- (#4740) Fix reclaim values of wreckages

- (acc6893) Enforce UTF8 encoding of preference file
We weren't entirely aware that we stopped enforcing the encoding of the preference file. As a result a lot of people encountered issues. We hope by enforcing it again that those issues are resolved

## Contributors

- Jip (#4741, #4739, #4740)
- KionX (acc6893)

# Game version 3752 (25th of February, 2022)

See the patch notes of 3751 for the full patch notes.
Expand Down
29 changes: 28 additions & 1 deletion lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
last_version = 3752
last_version = 3753

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

Expand All @@ -12,10 +12,37 @@ last_version = 3752

---@type PatchNotes[]
gamePatches = {
{
version = 3753,
name = "Hotfix",
description = {
"",
"# Game version 3753 (25th of February, 2022)",
"",
"See the patch notes of 3751 for the full patch notes.",
"",
"## Bug fixes",
"",
"- (#4741) Fix build preview of underwater storages",
"",
"- (#4739) Fix Aloha being ignored by tactical missile defenses",
"",
"- (#4740) Fix reclaim values of wreckages",
"",
"- (acc6893) Enforce UTF8 encoding of preference file",
" We weren't entirely aware that we stopped enforcing the encoding of the preference file. As a result a lot of people encountered issues. We hope by enforcing it again that those issues are resolved",
"",
"## Contributors",
"",
"- Jip (#4741, #4739, #4740)",
"- KionX (acc6893)",
}
},
{
version = 3752,
name = "Hotfix",
description = {
"",
"# Game version 3752 (25th of February, 2022)",
"",
"See the patch notes of 3751 for the full patch notes.",
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 = "3752"
---@alias PATCH "3752"
---@alias VERSION "1.5.3752"
local Version = "3753"
---@alias PATCH "3753"
---@alias VERSION "1.5.3753"
---@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 = 3752
version = 3753
_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 339420b

Please sign in to comment.