> ## 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 22.02.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.1.1" serverNew frontend="1.1.1" frontendNew />

## ⭐ New Features

* Fixed spelling error in German random slot command. *(commit:* [*ff39c9bf*](https://github.com/Alf-Melmac/slotbotServer/commit/ff39c9bf96b6c4b705e9013e675f3f2438df8402)*)*
* When event details are printed, only the first message with the general information will send a push notification. *(commit:* [*f85fba3c*](https://github.com/Alf-Melmac/slotbotServer/commit/f85fba3cdb7dc4f6f896f67fb3d4cf67953cb6e3)*)*

## 🐞 Bug Fixes

* Modsets in the Discord event details can also be downloaded again if the last update was a (un)slotting. *(commit:* [*6489eb73*](https://github.com/Alf-Melmac/slotbotServer/commit/6489eb738a09662436f01843df14df4b34b7878e)*)*
* After logging in, the first writing interaction had to be executed twice because a security mechanism was not yet active. *(commit:* [*91345612*](https://github.com/Alf-Melmac/slotbotServer/commit/91345612bef43a8fab582234b86d63c00c658e93)*)*
* Sometimes text keys were displayed instead of their translations. The loading mechanism of these was improved. *(commit:* [*e12c7d64*](https://github.com/Alf-Melmac/slotbot-frontend/commit/e12c7d643ed53ac2a9edba9524a87df2d5f707b1)*)*
* Added missing translation explaining why the shareability of an event can no longer be deactivated. *(commit:* [*7e62024d*](https://github.com/Alf-Melmac/slotbot-frontend/commit/7e62024d8338bcc0f96096024261b060c9bb84c6)*)*
* When editing the slot list of an event, all blocked slots were reset. *(commit:* [*fad98e57*](https://github.com/Alf-Melmac/slotbot-frontend/commit/fad98e5772c23e9047a85fc84dd2ccf015f56b0d)*)*

## 🔨 Technical

* The two cookies required for login are now only sent via a secure connection (https). *(commit:* [*1d1f4cad*](https://github.com/Alf-Melmac/slotbotServer/commit/1d1f4cadd0024a7f836383115a55ea08428b13df)*)*
