Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changelog for 3816 #6579

Merged
merged 4 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions changelog/snippets/balance.6568.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/snippets/fix.6546.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/snippets/fix.6569.md

This file was deleted.

35 changes: 35 additions & 0 deletions docs/_posts/2024-12-10-3816.md
Original file line number Diff line number Diff line change
@@ -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
17 changes: 16 additions & 1 deletion lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
@@ -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.",
BlackYps marked this conversation as resolved.
Show resolved Hide resolved
"",
"With kind regards,",
"",
"BlackYps",
},
},
{
version = 3815,
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 = "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))
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 = 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!"
Expand Down
Loading