From 9142736060a5fbeef2e38b4e7bb84946d73bb9a3 Mon Sep 17 00:00:00 2001 From: "(Jip) Willem Wijnia" Date: Wed, 25 Dec 2024 07:58:54 +0100 Subject: [PATCH] Changelog for game version 3817 (#6599) --- changelog/snippets/fix.6581.md | 3 --- changelog/snippets/other.6577.md | 1 - docs/_posts/2024-12-25-3817.md | 33 +++++++++++++++++++++++++ lua/ui/lobby/changelogData.lua | 41 ++++++++++++++++++++++++++++++++ lua/version.lua | 6 ++--- mod_info.lua | 2 +- 6 files changed, 78 insertions(+), 8 deletions(-) delete mode 100644 changelog/snippets/fix.6581.md delete mode 100644 changelog/snippets/other.6577.md create mode 100644 docs/_posts/2024-12-25-3817.md diff --git a/changelog/snippets/fix.6581.md b/changelog/snippets/fix.6581.md deleted file mode 100644 index 35a2e38ed2..0000000000 --- a/changelog/snippets/fix.6581.md +++ /dev/null @@ -1,3 +0,0 @@ -- (#6581) Fix divisions not being parsed by the matchmaker lobby. - -- (#6581) Fix division image filenames not matching the division data in the scenario info. diff --git a/changelog/snippets/other.6577.md b/changelog/snippets/other.6577.md deleted file mode 100644 index 1a53a6e6b3..0000000000 --- a/changelog/snippets/other.6577.md +++ /dev/null @@ -1 +0,0 @@ -- (#6577) Annotate `AddBlinkyBox`. This UI-side global engine function makes a unit's selection box blink for some time. diff --git a/docs/_posts/2024-12-25-3817.md b/docs/_posts/2024-12-25-3817.md new file mode 100644 index 0000000000..9e79f9a022 --- /dev/null +++ b/docs/_posts/2024-12-25-3817.md @@ -0,0 +1,33 @@ +--- +layout: post +title: Game version 3817 +permalink: changelog/3817 +--- + +# Game version 3817 (25th of December, 2024) + +A small hotfix for the autolobby. This will be the final patch for the game in 2024. + +I’d like to take this opportunity to express my sincere gratitude to everyone who has contributed to FAForever this past year, as well as those who have contributed in the past. The FAForever project is possible because of your time and effort! + +If you're interested in contributing then I encourage you to visit the forums and review the first pinned post in the contribution section. It provides an extensive overview of the currently documented roles in the community. Whether you're an (aspiring) artist, developer, or simply interested in writing well-structured texts — you are welcome! + +I wish you all the best in the new year. + +With kind regards, +Jip + +## Bug fixes + +- (#6581) Fix divisions not being parsed by the matchmaker lobby. + +- (#6581) Fix division image filenames not matching the division data in the scenario info. + +## Other changes + +- (#6577) Annotate `AddBlinkyBox`. This UI-side global engine function makes a unit's selection box blink for some time. + +## Contributors + +- Nomander +- Jip diff --git a/lua/ui/lobby/changelogData.lua b/lua/ui/lobby/changelogData.lua index 179a569f3e..b33e656fbc 100644 --- a/lua/ui/lobby/changelogData.lua +++ b/lua/ui/lobby/changelogData.lua @@ -3,6 +3,47 @@ last_version = 3816 ---@type PatchNotes[] gamePatches = { + { + version = 3817, + name = "Hotfix", + hasPrettyGithubRelease = true, + hasPrettyPatchnotes = false, + description = { + "# Game version 3817 (25th of December, 2024)", + "", + "A small hotfix for the autolobby. This will be the final patch for the game in 2024.", + "", + "I’d like to take this opportunity to express my sincere gratitude to everyone who has contributed to FAForever this ", + "past year, as well as those who have contributed in the past. The FAForever project is possible ", + "because of your time and effort!", + "", + "If you're interested in contributing then I encourage you to visit the forums and review the first pinned post in ", + "the contribution section. It provides an extensive overview of the currently documented roles in the ", + "community. Whether you're an (aspiring) artist, developer, or simply interested in writing well-structured ", + "texts — you are welcome!", + "", + "I wish you all the best in the new year.", + "", + "With kind regards,", + "Jip", + "", + "## Bug fixes", + "", + "- (#6581) Fix divisions not being parsed by the matchmaker lobby.", + "", + "- (#6581) Fix division image filenames not matching the division data in the scenario info.", + "", + "## Other changes", + "", + "- (#6577) Annotate `AddBlinkyBox`. This UI-side global engine function makes a unit's selection box blink for some time.", + "", + "## Contributors", + "", + "- Nomander", + "- Jip", + "", + }, + }, { version = 3816, name = "Hotfix", diff --git a/lua/version.lua b/lua/version.lua index d55e91f97e..0312080b20 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 = "3816" ----@alias PATCH "3816" ----@alias VERSION "1.5.3816" +local Version = "3817" +---@alias PATCH "3817" +---@alias VERSION "1.5.3817" ---@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 33c29502c3..2294bfa70d 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 = 3816 -- needs to be an integer as it is parsed as a short (16 bit integer) +version = 3817 -- 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!"