diff --git a/README.md b/README.md index aa18076069..cdd7a447d0 100644 --- a/README.md +++ b/README.md @@ -31,17 +31,6 @@ If you have found a bug in the p5.js Web Editor, you can file it under the ["iss To see which pull requests and issues are currently being reviewed, check the [PR Review Board](https://github.com/processing/p5.js-web-editor/projects/9) or the following Milestones: [MINOR Release](https://github.com/processing/p5.js-web-editor/milestone/8). -Issues and Pull Requests categorized under the PATCH or MINOR Release Milestones will be prioritized since they are planned to be merged for the next release to Production. Please feel free to [comment on this pinned issue](https://github.com/processing/p5.js-web-editor/issues/2534) if you would like your issue to be considered for the next release! - - -### When Will the Next Production Release Be? - -We will aim to deploy on a 1-2 month basis. Here are some dates we’re working towards: - -2.12.0 MINOR Release: By February 27, 2024 - -[You can read more about Semantic Versioning and the differences between a MINOR and PATCH release](https://semver.org/). - ## References for Contributing to the p5.js Web Editor diff --git a/client/common/icons.jsx b/client/common/icons.jsx index 5fe685be9b..13d2e18092 100644 --- a/client/common/icons.jsx +++ b/client/common/icons.jsx @@ -25,8 +25,6 @@ import CircleInfo from '../images/circle-info.svg'; import Add from '../images/add.svg'; import Filter from '../images/filter.svg'; import Cross from '../images/cross.svg'; -import Lock from '../images/lock.svg'; -import UnLock from '../images/unlock.svg'; // HOC that adds the right web accessibility props // https://www.scottohara.me/blog/2019/05/22/contextual-images-svgs-and-a11y.html @@ -104,5 +102,3 @@ export const CircleFolderIcon = withLabel(CircleFolder); export const CircleInfoIcon = withLabel(CircleInfo); export const AddIcon = withLabel(Add); export const FilterIcon = withLabel(Filter); -export const LockIcon = withLabel(Lock); -export const UnlockIcon = withLabel(UnLock); diff --git a/client/components/Dropdown/TableDropdown.jsx b/client/components/Dropdown/TableDropdown.jsx index d4db78f963..44f4f27fd6 100644 --- a/client/components/Dropdown/TableDropdown.jsx +++ b/client/components/Dropdown/TableDropdown.jsx @@ -1,20 +1,18 @@ import React from 'react'; -import { useMediaQuery } from 'react-responsive'; import styled from 'styled-components'; import { prop, remSize } from '../../theme'; import DropdownMenu from './DropdownMenu'; import DownFilledTriangleIcon from '../../images/down-filled-triangle.svg'; import MoreIconSvg from '../../images/more.svg'; +import useIsMobile from '../../modules/IDE/hooks/useIsMobile'; const DotsHorizontal = styled(MoreIconSvg)` transform: rotate(90deg); `; const TableDropdownIcon = () => { - // TODO: centralize breakpoints - const isMobile = useMediaQuery({ maxWidth: 770 }); - + const isMobile = useIsMobile(); return isMobile ? (