diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c30394fc3..f74678ea36 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.7.0b](https://github.com/TTT-2/TTT2/tree/v0.7.0b) (2020-06-01) + ### Added - Added new convars to change the behavior of the armor diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua index 61cc9e7f1f..89cef83217 100644 --- a/gamemodes/terrortown/gamemode/client/cl_changes.lua +++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua @@ -654,7 +654,7 @@ function CreateChanges()
  • Fix body_found for bots
  • Fix NWVarSyncing when using TTT2NET:Set()
  • - ]], os.time({year = 2020, month = 03, day = 5})) + ]], os.time({year = 2020, month = 03, day = 05})) AddChange("TTT2 Base - v0.6.4b", [[

    New:

    @@ -669,7 +669,54 @@ function CreateChanges()
  • Fixed a bug that happened when TTT2 is installed but not the active gamemode
  • Fixed a few Polish language strings
  • - ]], os.time({year = 2020, month = 04, day = 3})) + ]], os.time({year = 2020, month = 04, day = 03})) + + AddChange("TTT2 Base - v0.7.0b", [[ +

    New:

    + +
    +

    Improved:

    + +
    +

    Fixed:

    + + ]], os.time({year = 2020, month = 06, day = 01})) -- run hook for other addons to add their changelog as well hook.Run("TTT2AddChange", changes, currentVersion) diff --git a/gamemodes/terrortown/gamemode/shared/sh_init.lua b/gamemodes/terrortown/gamemode/shared/sh_init.lua index 188352f374..a8ecf76a42 100644 --- a/gamemodes/terrortown/gamemode/shared/sh_init.lua +++ b/gamemodes/terrortown/gamemode/shared/sh_init.lua @@ -5,7 +5,7 @@ GM.Name = "TTT2 (Advanced Update)" GM.Author = "Bad King Urgrain, Alf21, tkindanight, Mineotopia, LeBroomer" GM.Email = "ttt2@neoxult.de" GM.Website = "ttt.badking.net, ttt2.informaskill.de" -GM.Version = "0.6.4b" +GM.Version = "0.7.0b" GM.Customized = true TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"