diff --git a/README.md b/README.md index 190af109d..d4926caba 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,10 @@ When using the Docker deployment, your database runs from a container. But if yo ## Versions History +### Version 4.4.0 + +- 🐛 Fixed a bug where the export button on the summary page was hidden by the participants bar. 👏 Thanks [@hieuwu](https://github.com/hieuwu) for pointing this out. ([#262](https://github.com/antoinejaussoin/retro-board/issues/262)) + ### Version 4.3.0 - Add the ability to restrict the number of posts per user on a given session (as an option). @@ -159,10 +163,10 @@ When using the Docker deployment, your database runs from a container. But if yo - Search now also works with the author's name, if the author is displayed. 👏 Thanks [@ayxos](https://github.com/ayxos) for pointing this out. ([#202](https://github.com/antoinejaussoin/retro-board/issues/202)) - Replacing the reducer logic with Recoil for global state management. - Adding the possibility of creating a post by clicking on the 'return' icon (⮐) instead of hitting "Enter". 👏 Thanks to [@do606](https://github.com/do606) for pointing out that Enter doesn't always seem to work ([#246](https://github.com/antoinejaussoin/retro-board/issues/246)). -- Re-adding the ability of creating a post by hitting Enter on a numeric pad. 👏 Thanks again to [@do606](https://github.com/do606) for that. +- Re-adding the ability of creating a post by hitting Enter on a numeric pad. 👏 Thanks again to [@do606](https://github.com/do606) for that. - Upgrading dependencies -### Version 4.2.0 +### Version 4.2.0 - Add a page explaining how local encryption works - Re-introducing rate limiting, both for the REST API and the Websocket connections, in Node and Nginx @@ -185,7 +189,7 @@ When using the Docker deployment, your database runs from a container. But if yo ### Version 4.1.2 (hotfix) -- 🐛 Fixed a bug with local storage +- 🐛 Fixed a bug with local storage ### Version 4.1.1 (hotfix) diff --git a/VERSION b/VERSION index 819113891..64b5ae393 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.3.0 \ No newline at end of file +4.4.0 \ No newline at end of file diff --git a/backend/package.json b/backend/package.json index a39f5e23b..5cf89b55a 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "@retrospected/backend", - "version": "4.3.0", + "version": "4.4.0", "license": "GNU GPLv3", "private": true, "scripts": { diff --git a/common/package.json b/common/package.json index f751ca8f4..6897f2a20 100644 --- a/common/package.json +++ b/common/package.json @@ -1,6 +1,6 @@ { "name": "@retrospected/common", - "version": "4.3.0", + "version": "4.4.0", "license": "GNU GPLv3", "private": true, "main": "dist/src/index.js", diff --git a/frontend/package.json b/frontend/package.json index c56da6f55..811aa9464 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "@retrospected/frontend", - "version": "4.3.0", + "version": "4.4.0", "license": "GNU GPLv3", "private": true, "dependencies": { diff --git a/frontend/src/views/game/summary/SummaryMode.tsx b/frontend/src/views/game/summary/SummaryMode.tsx index 1aca9112f..d8c85fadd 100644 --- a/frontend/src/views/game/summary/SummaryMode.tsx +++ b/frontend/src/views/game/summary/SummaryMode.tsx @@ -243,7 +243,7 @@ const SpeedDialContainer = styled.div` position: fixed; bottom: 20px; right: 20px; - z-index: 1; + z-index: 4; `; export default SummaryMode; diff --git a/package.json b/package.json index 205593548..316b8d3ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "retrospected", - "version": "4.3.0", + "version": "4.4.0", "description": "An agile retrospective board - Powering www.retrospected.com", "private": true, "workspaces": [