diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6141523..a559cda 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,27 @@
# Changelog
+## [2.6] - 2024-09-01
+
+### New
+
+- **CTF:** Game play has been changed to be more like the original mod.
+ - Now in order to capture, your team's flag must still be at your base.
+ - Messages, sounds and the flag model are now like AG.
+- **BHL:** Improved compatibility with older Linux servers with `GLIBC 2.17`.
+
+### Fixed
+
+- Fixed gauss charge sound not being reset when far away (Only on PAS). Still requires fixing on underwater, static discharge, etc.
+- **BHL:** Fixed self gauss not blocking damage on certain angles. Now `ag_gauss_fix 2` will fully disable it.
+- **Instagib:** Now self gauss damage is fully blocked.
+- Fixed vote not displaying the correct error when the input value is out of bounds.
+
+### Removed
+
+- Removed **Beta** tag from the version. It was used at the beginning of the project when it was far from completion, but now there's no more reason to keep it.
+
+Now the mod has an [official website](https://rtxa.github.io/agmodx) made with Docusaurus. Check it out!
+
## [Beta 2.5.2] - 2023-07-04
- Fixed issue with BHL not working on Linux in some cases by going back to older Metamod.
@@ -102,6 +124,7 @@
- Arcade not setting armor on player spawn.
- Invalid private data when a player leaves before he has fully joined.
+[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
[Beta 2.5]: https://github.com/rtxa/agmodx/compare/beta-2.4...beta-2.5
diff --git a/README.md b/README.md
index e6268a2..31de8ac 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
![Logo](agmodx-logo.png)
-![Author](https://img.shields.io/badge/Author-rtxa-9cf "Author") ![Version](https://img.shields.io/badge/Version-Beta%202.5.2-blue "Version") ![Last Update](https://img.shields.io/badge/Last%20Update-04/07/2023-blue "Last Update")
+![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/)
-AG Mod X is 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.
+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.
## ☰ Features
@@ -34,7 +34,7 @@ AG Mod X is an improved Mini AG alternative developed as an AMX Mod X plugin fro
- Added **Arcade X:** Same as Arcade but now you start without armor, allowing for a more fast-paced gameplay.
- Fixed bolts fired from a previous match not being removed when a new duel starts in *Arena* mode.
-More info about the new commands and features can be found in the [Docs](https://github.com/rtxa/agmodx/wiki).
+More info about the new commands and features can be found in the [Docs](https://rtxa.github.io/agmodx/docs/getting-started/features).
## ☰ Requirements
diff --git a/valve/addons/amxmodx/scripting/agmodx.sma b/valve/addons/amxmodx/scripting/agmodx.sma
index 33596d0..64abb1d 100644
--- a/valve/addons/amxmodx/scripting/agmodx.sma
+++ b/valve/addons/amxmodx/scripting/agmodx.sma
@@ -1463,7 +1463,7 @@ public ShowSettings(id) {
// left - top
set_dhudmessage(gHudRed, gHudGreen, gHudBlue, 0.05, 0.02, 0, 0.0, 10.0, 0.2);
- show_dhudmessage(id, "AG Mod X %s Build %s^n%s", AGMODX_VERSION, buildDate, arg);
+ show_dhudmessage(id, "AG Mod X %s - Build %s^n%s", AGMODX_VERSION, buildDate, arg);
// center - top
if (gVersusStarted) {
diff --git a/valve/addons/amxmodx/scripting/include/agmodx_const.inc b/valve/addons/amxmodx/scripting/include/agmodx_const.inc
index ad5995b..1114160 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 "Beta 2.5.2"
+#define AGMODX_VERSION "2.6"
// array size of some gamemode cvars
#define SIZE_WEAPONS 14
diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index ac5cf96..300ca2d 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -130,7 +130,7 @@ const config = {
},
{
label: 'Changelog',
- href: 'https://github.com/rtxa/agmodx/blob/master/CHANGELOG.md',
+ to: '/changelog',
},
{
label: 'GitHub',
diff --git a/website/src/pages/downloads.mdx b/website/src/pages/downloads.mdx
index 2eab076..1bed8c4 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: **Beta 2.5.2** — [All releases](https://github.com/rtxa/agmodx/releases) — [Changelog](/changelog)
+Latest version: **2.6** — [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 039d50c..4f6af67 100644 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -26,7 +26,7 @@ function HomepageHeader() {