mirror of
https://github.com/penpot/penpot.git
synced 2025-06-10 08:01:39 +02:00
🐛 Fix pricing CTA to be under a config flag (#6304)
This commit is contained in:
parent
ddc41027ab
commit
93c81ea49c
5 changed files with 15 additions and 10 deletions
|
@ -7,6 +7,7 @@
|
||||||
- Increase the height of the right sidebar dropdowns [Taiga #10615](https://tree.taiga.io/project/penpot/issue/10615)
|
- Increase the height of the right sidebar dropdowns [Taiga #10615](https://tree.taiga.io/project/penpot/issue/10615)
|
||||||
- Fix scroll on token themes modal [Taiga #10745](https://tree.taiga.io/project/penpot/issue/10745)
|
- Fix scroll on token themes modal [Taiga #10745](https://tree.taiga.io/project/penpot/issue/10745)
|
||||||
- Fix unexpected exception on path editor on merge segments when undo stack is empty
|
- Fix unexpected exception on path editor on merge segments when undo stack is empty
|
||||||
|
- Fix pricing CTA to be under a config flag [Taiga #10808](https://tree.taiga.io/project/penpot/issue/10808)
|
||||||
|
|
||||||
## 2.6.1
|
## 2.6.1
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,8 @@ export PENPOT_FLAGS="\
|
||||||
enable-access-tokens \
|
enable-access-tokens \
|
||||||
enable-tiered-file-data-storage \
|
enable-tiered-file-data-storage \
|
||||||
enable-file-validation \
|
enable-file-validation \
|
||||||
enable-file-schema-validation";
|
enable-file-schema-validation \
|
||||||
|
enable-subscriptions-old";
|
||||||
|
|
||||||
# Default deletion delay for devenv
|
# Default deletion delay for devenv
|
||||||
export PENPOT_DELETION_DELAY="24h"
|
export PENPOT_DELETION_DELAY="24h"
|
||||||
|
|
|
@ -23,7 +23,8 @@ export PENPOT_FLAGS="\
|
||||||
enable-access-tokens \
|
enable-access-tokens \
|
||||||
enable-tiered-file-data-storage \
|
enable-tiered-file-data-storage \
|
||||||
enable-file-validation \
|
enable-file-validation \
|
||||||
enable-file-schema-validation";
|
enable-file-schema-validation \
|
||||||
|
enable-subscriptions-old";
|
||||||
|
|
||||||
export OPTIONS="
|
export OPTIONS="
|
||||||
-A:jmx-remote -A:dev \
|
-A:jmx-remote -A:dev \
|
||||||
|
|
|
@ -124,7 +124,8 @@
|
||||||
;; TODO: deprecate this flag and consolidate the code
|
;; TODO: deprecate this flag and consolidate the code
|
||||||
:export-file-v3
|
:export-file-v3
|
||||||
:render-wasm-dpr
|
:render-wasm-dpr
|
||||||
:hide-release-modal})
|
:hide-release-modal
|
||||||
|
:subscriptions-old})
|
||||||
|
|
||||||
(def all-flags
|
(def all-flags
|
||||||
(set/union email login varia))
|
(set/union email login varia))
|
||||||
|
|
|
@ -962,13 +962,14 @@
|
||||||
(dom/open-new-window "https://penpot.app/pricing")))]
|
(dom/open-new-window "https://penpot.app/pricing")))]
|
||||||
|
|
||||||
[:*
|
[:*
|
||||||
|
(when (contains? cf/flags :subscriptions-old)
|
||||||
[:button {:class (stl/css :upgrade-plan-section)
|
[:button {:class (stl/css :upgrade-plan-section)
|
||||||
:on-click on-power-up-click}
|
:on-click on-power-up-click}
|
||||||
[:div {:class (stl/css :penpot-free)}
|
[:div {:class (stl/css :penpot-free)}
|
||||||
[:span (tr "dashboard.upgrade-plan.penpot-free")]
|
[:span (tr "dashboard.upgrade-plan.penpot-free")]
|
||||||
[:span {:class (stl/css :no-limits)} (tr "dashboard.upgrade-plan.no-limits")]]
|
[:span {:class (stl/css :no-limits)} (tr "dashboard.upgrade-plan.no-limits")]]
|
||||||
[:div {:class (stl/css :power-up)}
|
[:div {:class (stl/css :power-up)}
|
||||||
(tr "dashboard.upgrade-plan.power-up")]]
|
(tr "dashboard.upgrade-plan.power-up")]])
|
||||||
(when (and team profile)
|
(when (and team profile)
|
||||||
[:& comments-section
|
[:& comments-section
|
||||||
{:profile profile
|
{:profile profile
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue