diff --git a/CHANGELOG.md b/CHANGELOG.md index 9448e204cf..6861906b43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel ## Unreleased +## [v0.11.6b](https://github.com/TTT-2/TTT2/tree/v0.11.6b) (2022-09-25) + ### Changed - Fixed and updated the Chinese translation file (by @sbzlzh) @@ -17,7 +19,7 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel - Roleselection for a lot of roles now considers all possible subroles one after another - Fixed portuguese translation of the equipment editor not working -## [v0.11.5b](https://github.com/TTT-2/TTT2/tree/v0.11.5b) (2022-08-05) +## [v0.11.5b](https://github.com/TTT-2/TTT2/tree/v0.11.5b) (2022-08-21) ### Added diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua index 93d78dc1c7..f31964872f 100644 --- a/gamemodes/terrortown/gamemode/client/cl_changes.lua +++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua @@ -1286,6 +1286,23 @@ function CreateChanges() ]], os.time({ year = 2022, month = 08, day = 21 })) + AddChange("TTT2 Base - v0.11.6b", [[ +

Changed

+ + +

Fixed

+ + ]], os.time({ year = 2022, month = 09, day = 25 })) + --- -- run hook for other addons to add their changelog as well -- @realm client diff --git a/gamemodes/terrortown/gamemode/shared/sh_init.lua b/gamemodes/terrortown/gamemode/shared/sh_init.lua index 40976a9588..e8e8b27f60 100644 --- a/gamemodes/terrortown/gamemode/shared/sh_init.lua +++ b/gamemodes/terrortown/gamemode/shared/sh_init.lua @@ -5,7 +5,7 @@ GM.Name = "TTT2 (Advanced Update)" GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer, Histalek, ZenBre4ker" GM.Email = "ttt2@neoxult.de" GM.Website = "ttt.badking.net, docs.ttt2.neoxult.de" -GM.Version = "0.11.5b" +GM.Version = "0.11.6b" GM.Customized = true TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"