> ## 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 08.08.2024

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.13.0" serverNew frontend="1.11.0" frontendNew />

## ⭐ New Features

* The entire application now handles long event names better. *(commit:* [*35908d13*](https://github.com/Alf-Melmac/slotbot-frontend/commit/35908d134a11f0725e7f50b86d4dbc26fd74b2f7)*)*
* Event templates are now available to everyone without having to contact Alf. Community administrators can create these templates in the Community Administration to help event authors create events by type. *(commit:* [*e9e4dc5b*](https://github.com/Alf-Melmac/slotbot-frontend/commit/e9e4dc5be735bafc6cb71c2c74700a4211c0ae74)*,* [*dcbab0cd*](https://github.com/Alf-Melmac/slotbotServer/commit/dcbab0cd364f10e345d5424c0fc49e45dfe94bf0)*)*
* Event descriptions can now contain numbered and unnumbered lists. *(commit:* [*c7d0ea29*](https://github.com/Alf-Melmac/slotbot-frontend/commit/c7d0ea296416cba33e9daddf84f320a7b88e2830)*,* [*01e466c0*](https://github.com/Alf-Melmac/slotbotServer/commit/01e466c021ed9364c0ad9356e0036b78b6302f52)*)*
* Event descriptions can now contain small subtexts. *(commit:* [*fbc8e5ed*](https://github.com/Alf-Melmac/slotbot-frontend/commit/fbc8e5ed2f638397e2daa6d9356f0ce05fa53450)*,* [*85d57d6a*](https://github.com/Alf-Melmac/slotbotServer/commit/85d57d6a4fe7823d0ed5d1cdf2489c127f4afadd)*)*

## 🐞 Bug Fixes

* \#s at the beginning of an event description will only be escaped with a backslash in the Discord output if they are followed by a space. Another few precious characters saved. *(commit:* [*c7d0ea29*](https://github.com/Alf-Melmac/slotbot-frontend/commit/c7d0ea296416cba33e9daddf84f320a7b88e2830)*,* [*01e466c0*](https://github.com/Alf-Melmac/slotbotServer/commit/01e466c021ed9364c0ad9356e0036b78b6302f52)*)*

## 🔨 Technical

* In this release, the duration of a valid login is extended as a test and therefor new session security mechanisms are introduced.
