From 6cfacdfe57ca15a4aa890ba3073003c047bf0e77 Mon Sep 17 00:00:00 2001 From: "(Jip) Willem Wijnia" Date: Fri, 26 Jan 2024 17:18:09 +0100 Subject: [PATCH] Tweak changelog --- changelog/3800.md | 45 +++++++++++++++++++++++++++++ lua/ui/lobby/changelogData.lua | 53 +++++++++++++++++++++++++++++++++- lua/version.lua | 6 ++-- mod_info.lua | 2 +- 4 files changed, 101 insertions(+), 5 deletions(-) create mode 100644 changelog/3800.md diff --git a/changelog/3800.md b/changelog/3800.md new file mode 100644 index 0000000000..43f0d69c26 --- /dev/null +++ b/changelog/3800.md @@ -0,0 +1,45 @@ +# Game Version 3779 (11th of January, 2024) + +A new year that we can only start with new mechanics that are buggy! + +With gratitude to all those who took the time to report issues, + +Jip + +## Bug Fixes + +- (582be6d) Fix the Easy AI not working. + +We often use the Easy AI as a testing platform. + +- (#5854) Fix a bug where Auto Overcharge appears enabled but is actually disabled. + +The bug occurs when the ACU attempts to use Auto Overcharge while enhancing. The Auto Overcharge behavior +will be turned off but the UI was not updated accordingly. The UI now reflects this behavior. + +- (#5853) Fix a bug when the Billy is redirected by a Loyalist. + +The bug would generate an endless loop of explosions. + +## Features + +- (#5855) Give AI a notion of rating. + +The rating shows in the lobby and in-game. The rating adjusts depending on whether it is a cheating AI, +the cheating modifiers and the size of the map. + +Note that games with AIs are unrated. + +## Other Changes + +- (#5840) Improve the English description of various Cybran units + +## Contributors + +With thanks to the following people who contributed through coding: + +- lL1l1 +- Jip +- Basilisk3 +- Rowey +- 4z0t diff --git a/lua/ui/lobby/changelogData.lua b/lua/ui/lobby/changelogData.lua index acc220b765..fc6c23f63f 100644 --- a/lua/ui/lobby/changelogData.lua +++ b/lua/ui/lobby/changelogData.lua @@ -1,4 +1,4 @@ -last_version = 3779 +last_version = 3800 ---@alias PatchNotesType "Hotfix"|"Developers patch"|"Balance patch" @@ -12,6 +12,57 @@ last_version = 3779 ---@type PatchNotes[] gamePatches = { + { + version = 3800, + name = "Hotfix", + description = { + "# Game Version 3779 (11th of January, 2024)", + "", + "A new year that we can only start with new mechanics that are buggy!", + "", + "With gratitude to all those who took the time to report issues,", + "", + "Jip", + "", + "## Bug Fixes", + "", + "- (582be6d) Fix the Easy AI not working.", + "", + "We often use the Easy AI as a testing platform.", + "", + "- (#5854) Fix a bug where Auto Overcharge appears enabled but is actually disabled.", + "", + "The bug occurs when the ACU attempts to use Auto Overcharge while enhancing. The Auto Overcharge behavior ", + "will be turned off but the UI was not updated accordingly. The UI now reflects this behavior. ", + "", + "- (#5853) Fix a bug when the Billy is redirected by a Loyalist.", + "", + "The bug would generate an endless loop of explosions.", + "", + "## Features", + "", + "- (#5855) Give AI a notion of rating.", + "", + "The rating shows in the lobby and in-game. The rating adjusts depending on whether it is a cheating AI, ", + "the cheating modifiers and the size of the map. ", + "", + "Note that games with AIs are unrated.", + "", + "## Other Changes", + "", + "- (#5840) Improve the English description of various Cybran units", + "", + "## Contributors", + "", + "With thanks to the following people who contributed through coding:", + "", + "- lL1l1", + "- Jip", + "- Basilisk3", + "- Rowey", + "- 4z0t", + } + }, { version = 3779, name = "Developers patch", diff --git a/lua/version.lua b/lua/version.lua index 2bfd50ee7c..c36c69fe1e 100644 --- a/lua/version.lua +++ b/lua/version.lua @@ -1,7 +1,7 @@ -local Version = "3779" ----@alias PATCH "3779" ----@alias VERSION "1.5.3779" +local Version = "3800" +---@alias PATCH "3800" +---@alias VERSION "1.5.3800" ---@return PATCH function GetVersion() LOG('Supreme Commander: Forged Alliance version ' .. Version) diff --git a/mod_info.lua b/mod_info.lua index fc31296333..9e0e4edaa8 100644 --- a/mod_info.lua +++ b/mod_info.lua @@ -3,7 +3,7 @@ -- Documentation for the extended FAF mod_info.lua format can be found here: -- https://github.com/FAForever/fa/wiki/mod_info.lua-documentation name = "Forged Alliance Forever" -version = 3779 +version = 3800 _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!"