Skip to content

Commit

Permalink
Release v4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinejaussoin authored Oct 3, 2021
1 parent e6d37f0 commit b35ce04
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ It features the following technologies:
- [Recoil.js](https://recoiljs.org), as the global state management library
- [Socket IO](http://socket.io)
- [Webpack 4](https://github.com/webpack/webpack) (See older versions for Webpack 1, 2 and 3)
- [MUI 5](https://mui.com) for our components (previously known as Material-UI)
- [Material UI design](https://www.google.com/design/spec/material-design/introduction.html)
- [Styled Components](https://www.styled-components.com/)
- [Emotion](https://emotion.sh/docs/introduction)
- [Multilingual](https://stackoverflow.com/questions/33413880/react-redux-and-multilingual-internationalization-apps-architecture) / Internationalization
- [Postgres](https://www.postgresql.org/)
- [Node 16](https://nodejs.org/en/)
Expand All @@ -44,6 +45,7 @@ It features the following technologies:
- GitHub
- Slack
- Microsoft
- Okta
- [Giphy](https://giphy.com/) because adding a bit of fun to your retro can't hurt!
- [React Beautiful DND](https://github.com/atlassian/react-beautiful-dnd) to allow re-ordering and grouping by drag-and-drop
- [Jest](https://facebook.github.io/jest) for Unit Testing
Expand Down Expand Up @@ -145,7 +147,7 @@ When using the Docker deployment, your database runs from a container. But if yo

## Versions History

### Version 4.8.0 (in progress)
### Version 4.8.0

- Upgrade to MUI 5.0 (ex Material UI)
- Migration from Styled Components to Emotion (for compatibility reasons with MUI)
Expand Down
4 changes: 0 additions & 4 deletions backend/src/security/is-licenced.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ async function checkHardcodedLicence(
// }

async function isLicencedBase(): Promise<LicenceMetadata | null> {
if (process.env.NODE_ENV !== 'production') {
return { licence: 'dev', owner: 'dev' };
}

const licenceKey = config.LICENCE_KEY;

const payload: SelfHostedCheckPayload = { key: licenceKey };
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/game/board/header/BoardHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const LeftOptions = styled.div`
justify-self: start;
> * {
margin-right: 10px;
margin-right: 10px !important;
}
@media (max-width: 500px) {
Expand Down
1 change: 1 addition & 0 deletions frontend/src/views/game/board/post/ActionButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const ActionButton: React.FC<ActionButtonProps> = ({
aria-label={ariaLabel}
tabIndex={-1}
ref={innerRef}
color="inherit"
style={{
position: 'relative',
paddingLeft: 0,
Expand Down

0 comments on commit b35ce04

Please sign in to comment.