diff --git a/CHANGES.md b/CHANGES.md index 29dd9d047..410d86999 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,7 @@ - Fix errors from editable select on measures menu [Taiga #9888](https://tree.taiga.io/project/penpot/issue/9888) - Fix exception on importing some templates from templates slider +- Consolidate adding share button to workspace ## 2.4.2 @@ -36,12 +37,12 @@ (penpot). Because of that, the default NGINX listen port is now 8080 instead of 80, so you will have to modify your infrastructure to apply this change. -- Redis 7.2 is explicitly pinned in our example docker-compose.yml file. This is done because, - starting with the next versions, Redis is no longer distributed under an open-source license. - On-premise users are obviously free to upgrade to the version they are using or a more modern one. - Keep in mind that if you were using a version other than 7.2, you may have to recreate the volume - associated with the Redis container because the 7.2 storage format may not be compatible with what - you already have stored on the volume, and Redis may not start. In the near future, we will evaluate +- Redis 7.2 is explicitly pinned in our example docker-compose.yml file. This is done because, + starting with the next versions, Redis is no longer distributed under an open-source license. + On-premise users are obviously free to upgrade to the version they are using or a more modern one. + Keep in mind that if you were using a version other than 7.2, you may have to recreate the volume + associated with the Redis container because the 7.2 storage format may not be compatible with what + you already have stored on the volume, and Redis may not start. In the near future, we will evaluate whether to move to an open-source version of Redis (such as https://valkey.io/). ### :heart: Community contributions (Thank you!) diff --git a/frontend/src/app/main/ui/workspace/right_header.cljs b/frontend/src/app/main/ui/workspace/right_header.cljs index 994416cf9..e248c13e5 100644 --- a/frontend/src/app/main/ui/workspace/right_header.cljs +++ b/frontend/src/app/main/ui/workspace/right_header.cljs @@ -7,7 +7,6 @@ (ns app.main.ui.workspace.right-header (:require-macros [app.main.style :as stl]) (:require - [app.config :as cf] [app.main.data.events :as ev] [app.main.data.modal :as modal] [app.main.data.shortcuts :as scd] @@ -250,9 +249,7 @@ :on-click toggle-history} i/history]]) - (when (and - (not (:is-default team)) - (cf/external-feature-flag "share-01" "test")) + (when (not (:is-default team)) [:a {:class (stl/css :viewer-btn) :title (tr "workspace.header.share") :on-click open-share-dialog}