From 31f380d7a16def1996b4c658c9caae66b01aa998 Mon Sep 17 00:00:00 2001 From: saibotk Date: Sat, 1 Feb 2025 20:47:59 +0100 Subject: [PATCH] chore: bump version & add changelog for 0.14.1 (#1756) --- CHANGELOG.md | 2 + .../terrortown/gamemode/client/cl_changes.lua | 80 +++++++++++++++++++ .../terrortown/gamemode/shared/sh_init.lua | 2 +- 3 files changed, 83 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89013029f3..b375a46257 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.14.1b](https://github.com/TTT-2/TTT2/tree/v0.14.1b) (2025-02-01) + ### Added - Added Korean translation (by @Kojap) diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua index 65ef2552eb..30266e31cb 100644 --- a/gamemodes/terrortown/gamemode/client/cl_changes.lua +++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua @@ -2211,6 +2211,86 @@ function CreateChanges() os.time({ year = 2024, month = 09, day = 20 }) ) + AddChange( + "TTT2 Base - v0.14.1b", + [[ + +

Added

+ +

Fixed

+ +

Changed

+ + + ]], + os.time({ year = 2025, month = 02, day = 01 }) + ) + --- -- 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 e6538113a1..23ec3b89e6 100644 --- a/gamemodes/terrortown/gamemode/shared/sh_init.lua +++ b/gamemodes/terrortown/gamemode/shared/sh_init.lua @@ -5,7 +5,7 @@ GM.Name = "TTT2" 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.14.0b" +GM.Version = "0.14.1b" GM.Customized = true TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"