> ## Documentation Index
> Fetch the complete documentation index at: https://docs.slotbot.de/llms.txt
> Use this file to discover all available pages before exploring further.

# Update 10.09.2023

export const Releases = ({server, serverNew, frontend, frontendNew}) => {
  const New = () => {
    return <div style={{
      fontSize: '0.6875rem',
      borderRadius: '2rem',
      height: '1.25rem',
      lineHeight: '1.125rem',
      padding: '0 0.625rem',
      display: 'inline-grid',
      alignItems: 'center',
      width: 'fit-content',
      fontWeight: 700,
      color: '#00724d',
      background: '#e6fff3',
      overflow: 'hidden',
      textOverflow: 'ellipsis',
      textAlign: 'center',
      cursor: 'default'
    }}>
				NEU
			</div>;
  };
  return <Columns cols="2">
			<Card title={"Slotbot-Server"} href={`https://github.com/Alf-Melmac/slotbotServer/releases/tag/v${server}`}>
				{server} {serverNew && <New />}
			</Card>
			<Card title={"Slotbot-Frontend"} href={`https://github.com/Alf-Melmac/slotbot-frontend/releases/tag/v${frontend}`}>
				{frontend} {frontendNew && <New />}
			</Card>
		</Columns>;
};

<Releases server="2.6.0" serverNew frontend="1.5.0" />

## ⭐ New Features

* [Event Ping](/en/integrations/discord/bot-commands/event-ping) now supports messages that exceed the Discord message limit of 2000 characters. In this case, multiple messages will be sent. *(commit:* [*f5fc038b*](https://github.com/Alf-Melmac/slotbotServer/commit/f5fc038be8b29c765b652673b634d49e77007ce9)*)*
* [Force unslot](/en/integrations/discord/bot-commands/force-unslot) has been enhanced and is now able to identify people by their name as well as their slot number. *(commit:* [*60b68d71*](https://github.com/Alf-Melmac/slotbotServer/commit/60b68d7100c85c7c9ba53ea47943d52f3cc7918d)*)*
* Missing translations added. *(commit:* [*0a22e1ab*](https://github.com/Alf-Melmac/slotbotServer/commit/0a22e1ab764f4629f38171f1c7876b7572ba530e)*)*
* The commands for quickly managing the slot list in Discord have been reworked. They are now available as slash commands: [Rename slot](/en/integrations/discord/bot-commands/rename-slot) *(commit:* [*f367d5c1*](https://github.com/Alf-Melmac/slotbotServer/commit/f367d5c1eb03edf903674c0d7ae6892684029979)*,* [*e69d341c*](https://github.com/Alf-Melmac/slotbotServer/commit/e69d341c98a5596589341931b5f897a5f04efb01)*)*, [Rename squad](/en/integrations/discord/bot-commands/rename-squad) *(commit:* [*443d03fb*](https://github.com/Alf-Melmac/slotbotServer/commit/443d03fb4da31648da66667b3529f2f3c325d9a3)*)*, [Add slot](/en/integrations/discord/bot-commands/add-slot) *(commit:* [*b03f4eab*](https://github.com/Alf-Melmac/slotbotServer/commit/b03f4eab89db410ad2ecf4cd449234d16d15e770)*)*, [Delete slot](/en/integrations/discord/bot-commands/delete-slot) *(commit:* [*39d2394c*](https://github.com/Alf-Melmac/slotbotServer/commit/39d2394c82180c54428bcd5d33e299f868fbd787)*)*. For all of them, the user now receives better described, translated error messages and a faster response time.
* The `EditMessage` and `SteamId` commands have been removed. Messages can no longer be sent through the botfor a while, and the SteamId can be changed on the website [in your own profile](https://slotbot.de/profile/me). *(commit:* [*6fd02039*](https://github.com/Alf-Melmac/slotbotServer/commit/6fd02039abecc901d43d321e1dd88080fc558e52)*)*
* Revised swap command *(commit:* [*c2da6aa3*](https://github.com/Alf-Melmac/slotbotServer/commit/c2da6aa316ba2dc293314d7cf41a01a78b9375ae)*)*
* Requests are remembered across reboots and can still be processed afterwards.
* Active notification when it is not possible to send a private message to the participant.
* Instead of a thumbs up and thumbs down, you can now respond to requests with clearly labelled buttons.
* Event updates will be sent to Discord 5 seconds after the last change. This results in less frequent rate limiting from Discord due to more collected actions. *(commit:* [*09e82a53*](https://github.com/Alf-Melmac/slotbotServer/commit/09e82a532bd1126227bdd929aa7eb2f1ff23713c)*)*

## 🐞 Bug Fixes

* Events can be added to the community discord again even if no [archive](/en/integrations/discord/archive) channel has been configured. *(commit:* [*66cf4666*](https://github.com/Alf-Melmac/slotbotServer/commit/66cf4666f15f0ff5c1b61a6c95b91285cd6e1aab)*)*
* The technical change to internal change processing fixes some rare bugs, including missing notification or discord event updates, especially when renaming slots or squads. *(commit:* [*662ef03c*](https://github.com/Alf-Melmac/slotbotServer/commit/662ef03c562bae695c57d73a7cf2f2fb9e161ae1)*)*
