diff --git a/changelog/3806.md b/changelog/3806.md index 40468ae85e..feaae1311a 100644 --- a/changelog/3806.md +++ b/changelog/3806.md @@ -16,8 +16,6 @@ Jip - (#6026) Fix a bug where the build icons of the build queues of units would randomly pop up on screen when observing and/or watching a replay. -- ([#73](https://github.com/FAForever/FA-Binary-Patches/pull/73)) Fix a memory leak where weak tables are not being garbage collected - ## Other Changes - (#6027) Attempt to fix odd behavior with the ACU when it gains veterancy. diff --git a/changelog/3807.md b/changelog/3807.md index 9b5cb55e1d..412068c6c9 100644 --- a/changelog/3807.md +++ b/changelog/3807.md @@ -1,19 +1,23 @@ # Game Version 3807 +Fixes various reported issues and removes the 1st april pranks from the game again. + +With gratitude to all those who took the time to report issues, + +Jip + ## Bug Fixes - (#6044) Fix Seraphim experimentals not appearing in the Notify settings window in normal games after having played Nomads. +- ([#73](https://github.com/FAForever/FA-Binary-Patches/pull/73)) Fix a memory leak where weak tables are not deallocated by the garbage collector + ## Balance - (#6040) Make veterancy requirements equal for presets and normal SACUs Previously, the cost of enhancements for an SACU preset was added to the veterancy requirement of the unit, making it much harder to gain veterancy with them than manually upgraded SACUs. -## Features - - - ## Graphics - (#6036) Add custom 'foot fall textures' for the Ythotha @@ -38,12 +42,14 @@ With thanks to the following people who contributed through coding: With thanks to the following people who contributed through binary patches: - +- 4z0t With thanks to the following individuals who contributed through model, texture, and effect changes: - +- Jip And, last but certainly not least - with thanks to those that took part in constructive discussions: - +- Deribus +- Aranei +- RarePleasure diff --git a/lua/ui/lobby/changelogData.lua b/lua/ui/lobby/changelogData.lua index e451f8a524..9281d67d98 100644 --- a/lua/ui/lobby/changelogData.lua +++ b/lua/ui/lobby/changelogData.lua @@ -1,8 +1,22 @@ ---@type number -last_version = 3806 +last_version = 3807 ---@type PatchNotes[] gamePatches = { + { + version = 3807, + name = "Hotfix", + hasPrettyGithubRelease = true, + description = { + "# Game Version 3807 (3th of April, 2024)", + "", + "Fixes various reported issues and removes the 1st april pranks from the game again.", + "", + "With gratitude to all those who took the time to report issues,", + "", + "Jip", + } + }, { version = 3806, name = "Hotfix",