diff --git a/website/docs/guides/commands.md b/website/docs/guides/commands.md index 781e7d9..38f6513 100644 --- a/website/docs/guides/commands.md +++ b/website/docs/guides/commands.md @@ -87,6 +87,8 @@ All game modes (TDM, Arena, etc.) are already included in the vote list. * `sv_ag_vote_oldstyle 0` — Sets the style of the vote. Old text style or the new HUD style. * `sv_ag_vote_duration 30` — Duration of vote in seconds. +* `sv_ag_disabled_votes` — Set what votes are disabled. For example: `sv_ag_disabled_votes "agstart;agabort"` will disable `agstart` and `agabort`. +* `sv_ag_vote_allow_bots 0` — Allow bots to vote. Debug purposes only. * `sv_ag_allow_vote 1` — Allow vote. * `sv_ag_vote_setting 1` — Allow vote `ag_xxx` and `mp_xxx` settings. * `sv_ag_vote_gamemode 1` — Allow vote of game modes. @@ -95,8 +97,6 @@ All game modes (TDM, Arena, etc.) are already included in the vote list. * `sv_ag_vote_start 1` — Allow vote agstart. * `sv_ag_vote_allow 1` — Allow vote agallow. * `sv_ag_vote_failed_time 15` — Cooldown for next vote if previous one failed. -* `sv_ag_vote_allow_bots 0` — Allow bots to vote. Debug purposes only. -* `sv_ag_disabled_votes` — Set what votes are disabled. For example: `sv_ag_disabled_votes "agstart;agabort"` will disable `agstart` and `agabort`. * `sv_ag_vote_admin 0` — Allow vote for player admin. Dropped in favour of AMXX admin system. **Multiplayer** diff --git a/website/src/_constants.js b/website/src/_constants.js index 1da3f73..65d0288 100644 --- a/website/src/_constants.js +++ b/website/src/_constants.js @@ -1 +1,2 @@ -export const AGMODX_VERSION = '2.6.2'; \ No newline at end of file +export const AGMODX_VERSION = '2.6.2'; +export const AGMODX_RELEASE_DATE = '21/10/2024'; \ No newline at end of file diff --git a/website/src/pages/index.js b/website/src/pages/index.js index 86e4e46..f1e1dbe 100644 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -6,7 +6,7 @@ import Heading from '@theme/Heading'; import styles from './index.module.css'; import { Icon, InlineIcon } from '@iconify/react'; import IconExternalLink from "@theme/Icon/ExternalLink"; -import { AGMODX_VERSION } from '@site/src/_constants'; +import { AGMODX_VERSION, AGMODX_RELEASE_DATE } from '@site/src/_constants'; function HomepageHeader() { const { siteConfig } = useDocusaurusContext(); @@ -31,6 +31,9 @@ function HomepageHeader() { 🚀 Latest version: {AGMODX_VERSION} + + 📅 Release date: {AGMODX_RELEASE_DATE} +