From e73922e5068d673d3300eaf15283de24d409d699 Mon Sep 17 00:00:00 2001 From: Histalek <16392835+Histalek@users.noreply.github.com> Date: Sun, 10 Mar 2024 21:08:24 +0100 Subject: [PATCH] release: v0.13.2b This was 'manually' create with the [ttt2-release_prep](https://github.com/TTT-2/ttt2-release_prep) tool. --- CHANGELOG.md | 2 ++ .../terrortown/gamemode/client/cl_changes.lua | 30 +++++++++++++++++++ .../terrortown/gamemode/shared/sh_init.lua | 2 +- 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4566d9f9b..bc37a94b0 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.13.2b](https://github.com/TTT-2/TTT2/tree/0.13.2b) (2024-03-10) + ### Added - Added upstream content files to base TTT2 diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua index f3bf934ed..f01dd18b0 100644 --- a/gamemodes/terrortown/gamemode/client/cl_changes.lua +++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua @@ -2024,6 +2024,36 @@ function CreateChanges() os.time({ year = 2024, month = 02, day = 27 }) ) + AddChange( + "TTT2 Base - v0.13.2b", + [[ +

Added

+ +

Changed

+ +

Fixed

+ + ]], + os.time({ year = 2024, month = 03, day = 10 }) + ) + + --#endofchanges + --- -- 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 a7e6aef32..a2d07ffb7 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.13.1b" +GM.Version = "0.13.2b" GM.Customized = true TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"