From 39eeccbd313fd710b79654e6ca9bc3601f6fc2bd Mon Sep 17 00:00:00 2001 From: BlackYps Date: Tue, 10 Dec 2024 01:47:08 +0100 Subject: [PATCH 1/4] Add changelog --- docs/_posts/2024-12-10-3816.md | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs/_posts/2024-12-10-3816.md diff --git a/docs/_posts/2024-12-10-3816.md b/docs/_posts/2024-12-10-3816.md new file mode 100644 index 0000000000..155e085916 --- /dev/null +++ b/docs/_posts/2024-12-10-3816.md @@ -0,0 +1,35 @@ +--- +layout: post +title: Game version 3816 +permalink: changelog/3816 +--- + +# Game version 3816 (10th of December, 2024) + +This hotfix primarily fixes the bug that divisions were not displayed in matchmaker games. + +With kind regards, + +BlackYps + +## Balance + +- (#6568) Vulthoo have been underperforming after their rework. Their biggest weak point was the excessive amount of build time required which made it impractical to make them in the earlier stages of tech 2 especially. + - Vulthoo: + - BuildTime: 3300 --> 2700 + +## Bug fixes + +- (#6546) Fix an exploit that allows being notified of enemy Billy nuke launches. + +- (#6569) Fix the matchmaker lobby not passing ratings, divisions and clan tags to the session, making them not visible in the scoreboard. + + +## Contributors + +With thanks to the following people who contributed through coding and testing: + +- Jip +- Nomander +- ETFreeman +- Clyf From 0cd13a31c4fc1a763723544e1a1ba119a12448f5 Mon Sep 17 00:00:00 2001 From: BlackYps Date: Tue, 10 Dec 2024 01:47:23 +0100 Subject: [PATCH 2/4] Delete snippets --- changelog/snippets/balance.6568.md | 3 --- changelog/snippets/fix.6546.md | 1 - changelog/snippets/fix.6569.md | 1 - 3 files changed, 5 deletions(-) delete mode 100644 changelog/snippets/balance.6568.md delete mode 100644 changelog/snippets/fix.6546.md delete mode 100644 changelog/snippets/fix.6569.md diff --git a/changelog/snippets/balance.6568.md b/changelog/snippets/balance.6568.md deleted file mode 100644 index ee192345e2..0000000000 --- a/changelog/snippets/balance.6568.md +++ /dev/null @@ -1,3 +0,0 @@ -- (#6568) Vulthoo have been underperforming after their rework. Their biggest weak point was the excessive amount of build time required which made it impractical to make them in the earlier stages of tech 2 especially. - - Vulthoo: - - BuildTime: 3300 --> 2700 \ No newline at end of file diff --git a/changelog/snippets/fix.6546.md b/changelog/snippets/fix.6546.md deleted file mode 100644 index 52c07bf551..0000000000 --- a/changelog/snippets/fix.6546.md +++ /dev/null @@ -1 +0,0 @@ -- (#6546) Fix an exploit that allows being notified of enemy Billy nuke launches. diff --git a/changelog/snippets/fix.6569.md b/changelog/snippets/fix.6569.md deleted file mode 100644 index 6d32706c6b..0000000000 --- a/changelog/snippets/fix.6569.md +++ /dev/null @@ -1 +0,0 @@ -- (#6569) Fix the matchmaker lobby not passing ratings, divisions and clan tags to the session From bc29f6a59aefa3ca079667bce213acbd1276185e Mon Sep 17 00:00:00 2001 From: BlackYps Date: Tue, 10 Dec 2024 01:50:34 +0100 Subject: [PATCH 3/4] Update version --- lua/ui/lobby/changelogData.lua | 17 ++++++++++++++++- lua/version.lua | 6 +++--- mod_info.lua | 2 +- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/lua/ui/lobby/changelogData.lua b/lua/ui/lobby/changelogData.lua index d0357f7af4..82fd8c8ece 100644 --- a/lua/ui/lobby/changelogData.lua +++ b/lua/ui/lobby/changelogData.lua @@ -1,8 +1,23 @@ ---@type number -last_version = 3815 +last_version = 3816 ---@type PatchNotes[] gamePatches = { + { + version = 3816, + name = "Hotfix", + hasPrettyGithubRelease = true, + hasPrettyPatchnotes = false, + description = { + "# Game version 3816 (10th of December, 2024)", + "", + "This hotfix primarily fixes the bug that divisions were not displayed in matchmaker games.", + "", + "With kind regards,", + "", + "BlackYps", + }, + }, { version = 3815, name = "Hotfix", diff --git a/lua/version.lua b/lua/version.lua index 3631c223aa..d55e91f97e 100644 --- a/lua/version.lua +++ b/lua/version.lua @@ -34,9 +34,9 @@ local Commit = 'unknown' -- The use of `'` instead of `"` is **intentional** --#endregion -local Version = "3815" ----@alias PATCH "3815" ----@alias VERSION "1.5.3815" +local Version = "3816" +---@alias PATCH "3816" +---@alias VERSION "1.5.3816" ---@return PATCH # Game release function GetVersion() LOG(string.format('Supreme Commander: Forged Alliance Lua version %s at %s (%s)', Version, GameType, Commit)) diff --git a/mod_info.lua b/mod_info.lua index b0f3331b2b..33c29502c3 100644 --- a/mod_info.lua +++ b/mod_info.lua @@ -27,7 +27,7 @@ -- - https://github.com/FAForever/fa/blob/deploy/fafdevelop/lua/MODS.LUA name = "Forged Alliance Forever" -version = 3815 -- needs to be an integer as it is parsed as a short (16 bit integer) +version = 3816 -- needs to be an integer as it is parsed as a short (16 bit integer) _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!" From 0c9a3ba42ca1263c55771446a00874d180acb829 Mon Sep 17 00:00:00 2001 From: BlackYps Date: Tue, 10 Dec 2024 20:06:06 +0100 Subject: [PATCH 4/4] Improve wording --- docs/_posts/2024-12-10-3816.md | 2 +- lua/ui/lobby/changelogData.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_posts/2024-12-10-3816.md b/docs/_posts/2024-12-10-3816.md index 155e085916..d03c7a4511 100644 --- a/docs/_posts/2024-12-10-3816.md +++ b/docs/_posts/2024-12-10-3816.md @@ -6,7 +6,7 @@ permalink: changelog/3816 # Game version 3816 (10th of December, 2024) -This hotfix primarily fixes the bug that divisions were not displayed in matchmaker games. +This hotfix primarily fixes the bug that rating and divisions were not displayed in matchmaker games. With kind regards, diff --git a/lua/ui/lobby/changelogData.lua b/lua/ui/lobby/changelogData.lua index 82fd8c8ece..179a569f3e 100644 --- a/lua/ui/lobby/changelogData.lua +++ b/lua/ui/lobby/changelogData.lua @@ -11,7 +11,7 @@ gamePatches = { description = { "# Game version 3816 (10th of December, 2024)", "", - "This hotfix primarily fixes the bug that divisions were not displayed in matchmaker games.", + "This hotfix primarily fixes the bug that ratings and divisions were not displayed in matchmaker games.", "", "With kind regards,", "",