mirror of
https://github.com/penpot/penpot.git
synced 2025-05-17 20:36:10 +02:00
🎉 Consolidate add share button to the workspace
This commit is contained in:
parent
c2fb9f4c6f
commit
f0966070eb
2 changed files with 8 additions and 10 deletions
13
CHANGES.md
13
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 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
|
- Fix exception on importing some templates from templates slider
|
||||||
|
- Consolidate adding share button to workspace
|
||||||
|
|
||||||
|
|
||||||
## 2.4.2
|
## 2.4.2
|
||||||
|
@ -36,12 +37,12 @@
|
||||||
(penpot). Because of that, the default NGINX listen port is now 8080 instead of 80, so
|
(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.
|
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,
|
- 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.
|
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.
|
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
|
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
|
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
|
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/).
|
whether to move to an open-source version of Redis (such as https://valkey.io/).
|
||||||
|
|
||||||
### :heart: Community contributions (Thank you!)
|
### :heart: Community contributions (Thank you!)
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
(ns app.main.ui.workspace.right-header
|
(ns app.main.ui.workspace.right-header
|
||||||
(:require-macros [app.main.style :as stl])
|
(:require-macros [app.main.style :as stl])
|
||||||
(:require
|
(:require
|
||||||
[app.config :as cf]
|
|
||||||
[app.main.data.events :as ev]
|
[app.main.data.events :as ev]
|
||||||
[app.main.data.modal :as modal]
|
[app.main.data.modal :as modal]
|
||||||
[app.main.data.shortcuts :as scd]
|
[app.main.data.shortcuts :as scd]
|
||||||
|
@ -250,9 +249,7 @@
|
||||||
:on-click toggle-history}
|
:on-click toggle-history}
|
||||||
i/history]])
|
i/history]])
|
||||||
|
|
||||||
(when (and
|
(when (not (:is-default team))
|
||||||
(not (:is-default team))
|
|
||||||
(cf/external-feature-flag "share-01" "test"))
|
|
||||||
[:a {:class (stl/css :viewer-btn)
|
[:a {:class (stl/css :viewer-btn)
|
||||||
:title (tr "workspace.header.share")
|
:title (tr "workspace.header.share")
|
||||||
:on-click open-share-dialog}
|
:on-click open-share-dialog}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue