Skip to content

Commit e73922e

Browse files
committed
release: v0.13.2b
This was 'manually' create with the [ttt2-release_prep](https://github.com/TTT-2/ttt2-release_prep) tool.
1 parent 9022b55 commit e73922e

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel
44

55
## Unreleased
66

7+
## [v0.13.2b](https://github.com/TTT-2/TTT2/tree/0.13.2b) (2024-03-10)
8+
79
### Added
810

911
- Added upstream content files to base TTT2

gamemodes/terrortown/gamemode/client/cl_changes.lua

+30
Original file line numberDiff line numberDiff line change
@@ -2024,6 +2024,36 @@ function CreateChanges()
20242024
os.time({ year = 2024, month = 02, day = 27 })
20252025
)
20262026

2027+
AddChange(
2028+
"TTT2 Base - v0.13.2b",
2029+
[[
2030+
<h3>Added</h3>
2031+
<ul>
2032+
<li>Added upstream content files to base TTT2</li>
2033+
<li>Added <code>plymeta:IsFullySignedOn()</code> to allow excluding players that have not gotten control yet (by @EntranceJew)</li>
2034+
</ul>
2035+
<h3>Changed</h3>
2036+
<ul>
2037+
<li>Crosshair rendering now is a bit more flexible and customizable</li>
2038+
<li>A crosshair is now also drawn when holding a nade, making it less confusing when looking at entities</li>
2039+
<li>Hides item settings in the equipment editor that are only relevant for weapons</li>
2040+
<li>The binoculars now use the default crosshair as well</li>
2041+
</ul>
2042+
<h3>Fixed</h3>
2043+
<ul>
2044+
<li>Fixed the AFK timer accumulating while player not fully joined (by @EntranceJew)</li>
2045+
<li>Fixed weapons which set a custom view model texture having an error texture</li>
2046+
<li>Fixed the equipment menu throwing errors when clicking on some items</li>
2047+
<li>TTT2 now ignores Gmods SWEP.DrawCrosshair and always draws just its own crosshair to prevent two crosshairs at once</li>
2048+
<li>Fixed hud help text not being shown for some old weapons</li>
2049+
<li>Fixed detective search being overwritten by player search results</li>
2050+
</ul>
2051+
]],
2052+
os.time({ year = 2024, month = 03, day = 10 })
2053+
)
2054+
2055+
--#endofchanges
2056+
20272057
---
20282058
-- run hook for other addons to add their changelog as well
20292059
-- @realm client

gamemodes/terrortown/gamemode/shared/sh_init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GM.Name = "TTT2"
55
GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer, Histalek, ZenBre4ker"
66
GM.Email = "[email protected]"
77
GM.Website = "ttt.badking.net, docs.ttt2.neoxult.de"
8-
GM.Version = "0.13.1b"
8+
GM.Version = "0.13.2b"
99
GM.Customized = true
1010

1111
TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"

0 commit comments

Comments
 (0)