> ## 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 12.03.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.10.0" serverNew frontend="1.8.0" frontendNew />

## ⭐ New Features

* Major updates in the component library also have a big impact *(*[*#426*](https://github.com/Alf-Melmac/slotbot-frontend/pull/426)*)*
* In my non-representative test, the TTT calendar was accelerated by 50% (500ms vs. 1 Sekunde) and the community overview by three times as much (180ms vs. 560ms). The required download size has also been almost halved.
* All sizes are now relative to the font size set in the browser.
* Many spacings and colours have been adjusted to improve clarity and visibility. Especially in mobile use, information is given the space it needs.
* Event types can now also be created while an event is being edited.
* By default, the username of the currently logged in user is inserted when an event is created. *(commit:* [*c8ffc4c2*](https://github.com/Alf-Melmac/slotbot-frontend/commit/c8ffc4c2a762fcec7373b7c974b1a7e20001f12e)*)*
* Text formatting can now be escaped with backslashes as in Discord. ([#70](https://github.com/Alf-Melmac/slotbotServer/pull/70)) by [*@TheConen*](https://github.com/TheConen), [@Alf-Melmac](https://github.com/Alf-Melmac)

## 🐞 Bug Fixes

* Newly created event types were no longer displayed after leaving the first page of the event wizard. *(commit:* [*c61c516d*](https://github.com/Alf-Melmac/slotbot-frontend/commit/c61c516d165ad1d93440c0068dad021f8e4e8ee0)*)*
* Chromium browsers (e.g. Chrome or Edge) no longer display a small white rectangle next to the breadcrumb. *(commit:* [*728dde89*](https://github.com/Alf-Melmac/slotbot-frontend/commit/728dde89b4829851c7d46b78142a61132ad0a757)*)*
* The yes/no values for the event details are taken from the standards and the event to be processed with the correct values. *(commit:* [*74d24b9b*](https://github.com/Alf-Melmac/slotbot-frontend/commit/74d24b9bda64d505736c0779f961b0099ccc2d12)*)*

## 🔨 Technical

* Update from Java 17 to Java 21. *(*[*#74*](https://github.com/Alf-Melmac/slotbotServer/pull/74)*) by* [*@TheConen*](https://github.com/TheConen)
