diff --git a/CHANGELOG.md b/CHANGELOG.md
index a559cda..584d091 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## [2.6.1] - 2024-09-24
+
+### Fixed
+
+- **CTF:** Added missing sound voice when flag returns on its own.
+- **CTF:** Fixed flag returning on its own even if player has already returned it.
+- Fixed server always restarting in TDM2 mode, regardless of how `sv_ag_gamemode` has been set on `startup_server.cfg`.
+- Fixed `server.cfg` not being executed on map change by default. This fixes password not being removed on map change.
+ - This can be disabled by removing the line `mapchangecfgfile server.cfg` from `startup_server.cfg`.
+- Fixed players outside of the match not being shown as spectators on server pause.
+
## [2.6] - 2024-09-01
### New
@@ -124,6 +135,7 @@ Now the mod has an [official website](https://rtxa.github.io/agmodx) made with D
- Arcade not setting armor on player spawn.
- Invalid private data when a player leaves before he has fully joined.
+[2.6.1]: https://github.com/rtxa/agmodx/compare/2.6...2.6.1
[2.6]: https://github.com/rtxa/agmodx/compare/beta-2.5.2...2.6
[Beta 2.5.2]: https://github.com/rtxa/agmodx/compare/beta-2.5.1...beta-2.5.2
[Beta 2.5.1]: https://github.com/rtxa/agmodx/compare/beta-2.5...beta-2.5.1
diff --git a/README.md b/README.md
index 31de8ac..3f4bed4 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
![Logo](agmodx-logo.png)
-![Author](https://img.shields.io/badge/Author-rtxa-9cf "Author") ![Version](https://img.shields.io/badge/Version-2.6-blue "Version") ![Last Update](https://img.shields.io/badge/Last%20Update-01/09/2024-blue "Last Update") [![Website](https://img.shields.io/badge/Go%20to%20the%20website-orange)](https://rtxa.github.io/agmodx/)
+![Author](https://img.shields.io/badge/Author-rtxa-9cf "Author") ![Version](https://img.shields.io/badge/Version-2.6.1-blue "Version") ![Last Update](https://img.shields.io/badge/Last%20Update-24/09/2024-blue "Last Update") [![Website](https://img.shields.io/badge/Go%20to%20the%20website-orange)](https://rtxa.github.io/agmodx/)
An improved Mini AG alternative developed as an AMX Mod X plugin from the ground up. It contains many bugfixes and improvements, and because it's open source it allows you to add new stuff and make improvements easily.
diff --git a/valve/addons/amxmodx/scripting/include/agmodx_const.inc b/valve/addons/amxmodx/scripting/include/agmodx_const.inc
index 1114160..99c2135 100644
--- a/valve/addons/amxmodx/scripting/include/agmodx_const.inc
+++ b/valve/addons/amxmodx/scripting/include/agmodx_const.inc
@@ -3,7 +3,7 @@
#endif
#define _agmodx_const_included
-#define AGMODX_VERSION "2.6"
+#define AGMODX_VERSION "2.6.1"
// array size of some gamemode cvars
#define SIZE_WEAPONS 14
diff --git a/website/src/pages/downloads.mdx b/website/src/pages/downloads.mdx
index 1bed8c4..afcfa42 100644
--- a/website/src/pages/downloads.mdx
+++ b/website/src/pages/downloads.mdx
@@ -9,10 +9,10 @@ hide_table_of_contents: true
The **Full Package** comes with everything the mod requires to run (Metamod and AMXX already included).
-
Latest version: **2.6** — [All releases](https://github.com/rtxa/agmodx/releases) — [Changelog](/changelog)
+Latest version: **2.6.1** — [All releases](https://github.com/rtxa/agmodx/releases) — [Changelog](/changelog)
## ☰ Requirements diff --git a/website/src/pages/index.js b/website/src/pages/index.js index f762e96..f891486 100644 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -26,7 +26,7 @@ function HomepageHeader() {