mirror of
https://github.com/penpot/penpot.git
synced 2025-03-09 06:11:23 -05:00
Merge remote-tracking branch 'origin/main' into develop
This commit is contained in:
commit
43ceb6bb44
8 changed files with 21 additions and 12 deletions
|
@ -83,7 +83,10 @@
|
|||
- Fix Export bounding box mask [Taiga #950](https://tree.taiga.io/project/penpot/issue/950)
|
||||
- Fix delete layers in bulk [Taiga #4160](https://tree.taiga.io/project/penpot/issue/4160)
|
||||
- Fix Cannot take out an element from a group at layers panel by drag [Taiga #4209](https://tree.taiga.io/project/penpot/issue/4209)
|
||||
|
||||
- Fix Internal error when resending invitation email [Taiga #4212](https://tree.taiga.io/project/penpot/issue/4212)
|
||||
- Fix PDF exportation order [Taiga #4216](https://tree.taiga.io/project/penpot/issue/4216)
|
||||
- Fix some typos [Taiga #4215](https://tree.taiga.io/project/penpot/issue/4215)
|
||||
- Fix "no boards" message in viewer [Taiga #4243](https://tree.taiga.io/project/penpot/issue/4243)
|
||||
|
||||
## 1.15.3-beta
|
||||
|
||||
|
|
|
@ -157,11 +157,6 @@
|
|||
align-items: center;
|
||||
overflow: hidden;
|
||||
|
||||
.empty-state {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
svg {
|
||||
transform-origin: center;
|
||||
}
|
||||
|
@ -184,6 +179,13 @@
|
|||
height: 100%;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
.viewport-container {
|
||||
|
|
|
@ -501,7 +501,7 @@
|
|||
|
||||
resend-invitation
|
||||
(fn []
|
||||
(let [params {:email email
|
||||
(let [params {:emails [email]
|
||||
:team-id (:id team)
|
||||
:resend? true
|
||||
:role invitation-role}
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
[:img {:src "images/features/1.15-comments.gif" :border "0" :alt "Comments positioning"}]]
|
||||
[:div.modal-right
|
||||
[:div.modal-title
|
||||
[:h2 "Comments poitioning"]]
|
||||
[:h2 "Comments positioning"]]
|
||||
[:div.modal-content
|
||||
[:p "They live! Now you can move existing comments wherever you want by dragging them."]
|
||||
[:p "Also, comments inside boards will be associated with it, so that if you move a board its comments will maintain its place inside it."]]
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
(ns app.main.ui.workspace.header
|
||||
(:require
|
||||
[app.common.pages.helpers :as cph]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.config :as cf]
|
||||
[app.main.data.events :as ev]
|
||||
[app.main.data.exports :as de]
|
||||
|
@ -107,7 +109,9 @@
|
|||
show-sub-menu? (mf/use-state false)
|
||||
editing? (mf/use-state false)
|
||||
edit-input-ref (mf/use-ref nil)
|
||||
frames (mf/deref refs/workspace-frames)
|
||||
objects (mf/deref refs/workspace-page-objects)
|
||||
frames (->> (cph/get-immediate-children objects uuid/zero)
|
||||
(filterv cph/frame-shape?))
|
||||
|
||||
add-shared-fn
|
||||
#(st/emit! (dwl/set-file-shared (:id file) true))
|
||||
|
|
|
@ -4402,4 +4402,4 @@ msgid "workspace.updates.update"
|
|||
msgstr "Actualitza"
|
||||
|
||||
msgid "workspace.viewport.click-to-close-path"
|
||||
msgstr "Feu clic per a tancar el camí"
|
||||
msgstr "Feu clic per a tancar el camí"
|
||||
|
|
|
@ -319,4 +319,4 @@ msgstr "Ekspor pustaka bersama"
|
|||
msgid "dashboard.export.options.detach.message"
|
||||
msgstr ""
|
||||
"Pustaka bersama tidak akan dimasukkan dalam hasil ekspor dan tidak ada aset "
|
||||
"yang akan ditambahkan ke pustaka. "
|
||||
"yang akan ditambahkan ke pustaka. "
|
||||
|
|
|
@ -1087,4 +1087,4 @@ msgstr "歷史"
|
|||
|
||||
#: src/app/main/data/workspace/libraries.cljs
|
||||
msgid "workspace.updates.update"
|
||||
msgstr "更新"
|
||||
msgstr "更新"
|
||||
|
|
Loading…
Add table
Reference in a new issue