Skip to content

Commit

Permalink
Changelog for game version 3817 (#6599)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas authored Dec 25, 2024
1 parent 9b7d1e9 commit 9142736
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 8 deletions.
3 changes: 0 additions & 3 deletions changelog/snippets/fix.6581.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/snippets/other.6577.md

This file was deleted.

33 changes: 33 additions & 0 deletions docs/_posts/2024-12-25-3817.md
Original file line number Diff line number Diff line change
@@ -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
41 changes: 41 additions & 0 deletions lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions lua/version.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion mod_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down

0 comments on commit 9142736

Please sign in to comment.