Skip to content

Commit

Permalink
added changelog, bumped version and small GM-info fixes (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
Histalek committed Mar 26, 2021
1 parent 5ae3a75 commit 76e41f2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
3 changes: 2 additions & 1 deletion 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.8.2b](https://github.com/TTT-2/TTT2/tree/v0.8.1b) (2021-03-25)

### Fixed

- TTT: fix instant reload of dropped weapon (by @svdm)
Expand All @@ -17,7 +19,6 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel
- Moved rendering modules to libraries
- Assigned PvP category to the gamemode.


## [v0.8.1b](https://github.com/TTT-2/TTT2/tree/v0.8.1b) (2021-02-19)

### Fixed
Expand Down
16 changes: 16 additions & 0 deletions gamemodes/terrortown/gamemode/client/cl_changes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,22 @@ function CreateChanges()
</ul>
]], os.time({year = 2021, month = 02, day = 19}))

AddChange("TTT2 Base - v0.8.2b", [[
<h2>Improved:</h2>
<ul>
<li>Added global alias for IsOffScreen function to util.IsOffScreen</li>
<li>Updated Japanese localization (by @Westoon)</li>
<li>Moved rendering modules to libraries</li>
<li>Assigned PvP category to the gamemode.</li>
</ul>
<h2>Fixed:</h2>
<ul>
<li>TTT: fix instant reload of dropped weapon (by @svdm)</li>
<li>TTT: fix ragdoll pinning HUD for innocents (by @Flapchik)</li>
<li>Fixed outline library not working</li>
</ul>
]], os.time({year = 2021, month = 03, day = 25}))

---
-- run hook for other addons to add their changelog as well
-- @realm client
Expand Down
6 changes: 3 additions & 3 deletions gamemodes/terrortown/gamemode/shared/sh_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
-- This file contains all shared vars, tables and functions

GM.Name = "TTT2 (Advanced Update)"
GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer"
GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer, Histalek"
GM.Email = "ttt2@neoxult.de"
GM.Website = "ttt.badking.net, ttt2.informaskill.de"
GM.Version = "0.8.1b"
GM.Website = "ttt.badking.net, docs.ttt2.neoxult.de"
GM.Version = "0.8.2b"
GM.Customized = true

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

0 comments on commit 76e41f2

Please sign in to comment.