From b6df5f1fcd75f822b211c00b9e754d6c86e85636 Mon Sep 17 00:00:00 2001 From: Histalek <16392835+Histalek@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:03:40 +0100 Subject: [PATCH] [Release] v0.12.3b (#1280) * release: v0.12.3b * Try enable easier master merges * Add missing changes to ingame changelog * Move debug change to correct location --------- Co-authored-by: Tim Goll Co-authored-by: Sven --- CHANGELOG.md | 10 +++- .../terrortown/gamemode/client/cl_changes.lua | 46 ++++++++++++++++++- .../terrortown/gamemode/shared/sh_init.lua | 2 +- 3 files changed, 54 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 858a3533f7..365347587e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,19 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel ### Added +### Changed + +### Fixed + +## [v0.12.3b](https://github.com/TTT-2/TTT2/tree/v0.12.3b) (2024-01-07) + +### Added + - Added some missing vanilla TTT entities into TTT2 - Added debug.print(message) - This puts quotation marks around print statements - Can handle single values or a sequential table to be printed + - Can handle `nil` entries in a nearly sequential table - Added new hooks `TTT2BeaconDetectPlayer` and `TTT2BeaconDeathNotify` to allow preventing / overriding a beacon's player detection & alerts (by @spanospy) - Added indentation to subsettings in F1 menu (by @TimGoll) @@ -17,7 +26,6 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel - Updated the Turkish localization file (by @NovaDiablox) - Keyhelp and weapon HUD Help now use the global scale factor -- debug.print can now handle `nil` entries in a nearly sequential table ### Fixed diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua index c8a21bb446..2619abcf36 100644 --- a/gamemodes/terrortown/gamemode/client/cl_changes.lua +++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua @@ -1749,7 +1749,7 @@ function CreateChanges()
  • Fixed missing bodysearch information if victim was killed without leaving a trace caused by a weapon hit
  • ]], - os.time({ year = 2023, month = 12, day = 12}) + os.time({ year = 2023, month = 12, day = 12 }) ) AddChange( @@ -1801,8 +1801,50 @@ function CreateChanges()
  • Database-Callbacks are now called with the correct valuetype
  • ]], - os.time({ year = 2023, month = 12, day = 20}) + os.time({ year = 2023, month = 12, day = 20 }) ) + + AddChange( + "TTT2 Base - v0.12.3b", + [[ +

    Added

    + + +

    Changed

    + + +

    Fixed

    + + ]], + os.time({ year = 2024, month = 01, day = 07 }) + ) + --- -- 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 68cc5026ed..30edd59203 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.12.2b" +GM.Version = "0.12.3b" GM.Customized = true TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"