Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v0.12.2b #1238

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel

## Unreleased

## [v0.12.2b](https://github.com/TTT-2/TTT2/tree/v0.12.2b) (2023-12-20)

### Added

- Added the beacon back into TTT2, an equipment that was disabled long ago in base TTT
Expand Down
52 changes: 52 additions & 0 deletions gamemodes/terrortown/gamemode/client/cl_changes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1751,6 +1751,58 @@ function CreateChanges()
]],
os.time({ year = 2023, month = 12, day = 12})
)

AddChange(
"TTT2 Base - v0.12.2b",
[[
<h2>Added</h2>
<ul>
<li>Added the beacon back into TTT2, an equipment that was disabled long ago in base TTT</li>
<ul>
<li>Can only be bought by policing roles</li>
<li>Creates a wallhack in a sphere around it, which is visible to everyone</li>
</ul>
<li>Added recognizable badge for builtin equipment and roles (by @EntranceJew)</li>
<ul>
<li>Buy Equipment menu has builtin indicators, replacing the (C) custom marker decorating a majority of equipment</li>
<li>F1 > Edit Equipment now has builtin indicators on equipment</li>
<li>Added tooltip to F1 > Edit Equipment menu with the equipment's class name.</li>
<li>F1 > Role Settings now has builtin indicators for roles</li>
<li>F1 > Edit Shops now has builtin indicators for roles</li>
</ul>
</ul>

<h2>Changed</h2>
<ul>
<li>Updated the Turkish localization file (by @NovaDiablox)</li>
<li>Radio can now only be picked up by placer</li>
<li>Radar now clears existing waypoints when removed or on changing role (by @EntranceJew)</li>
<li>Comboboxes can now handle numbers and strings as values</li>
<ul>
<li>Defaults work now with numbers</li>
<li>OnChange-Callback is called with the correct type for ConVars</li>
</ul>
</ul>

<h2>Fixed</h2>
<ul>
<li>Binoculars scan no longer gets interrupted when changing zoom level</li>
<li>Fixed missing water level icon breaking scoreboard</li>
<li>DNA Tester works now with more than one fingerprint on a weapon</li>
<li>TraitorButton config files should now actually work</li>
<li>Translation strings not rendering on detective's body search mode combobox</li>
<li>C4 defusal prompt now suggesting the right key</li>
<li>Disable to unscope from weapons without ironsights</li>
<li>Fixed typo preventing targetid from showing role icons correctly</li>
<li>Mitigated issue with CTakeDamageInfo becoming ephemeral outside their hook of origin</li>
<li>ttt_game_text can now properly send to "All except traitors", as described.</li>
<li>Fixed corpses not listing their kills</li>
<li>Comboboxes now show correct values for database driven entries</li>
<li>Database-Callbacks are now called with the correct valuetype</li>
</ul>
]],
os.time({ year = 2023, month = 12, day = 20})
)
---
-- run hook for other addons to add their changelog as well
-- @realm client
Expand Down
2 changes: 1 addition & 1 deletion gamemodes/terrortown/gamemode/shared/sh_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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.1b"
GM.Version = "0.12.2b"
GM.Customized = true

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