mirror of
https://github.com/penpot/penpot.git
synced 2026-05-27 10:53:51 +00:00
91 lines
3.6 KiB
Clojure
91 lines
3.6 KiB
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) KALEIDOS INC
|
|
|
|
(ns app.main.ui.releases.v1-5
|
|
(:require
|
|
[app.main.ui.releases.common :as c]
|
|
[rumext.v2 :as mf]))
|
|
|
|
(defmethod c/render-release-notes "1.5"
|
|
[{:keys [slide klass next finish navigate version]}]
|
|
(mf/html
|
|
(case @slide
|
|
:start
|
|
[:div.modal-overlay
|
|
[:div.animated {:class @klass}
|
|
[:div.modal-container.onboarding.feature
|
|
[:div.modal-left
|
|
[:img {:src "images/login-on.jpg" :border "0" :alt "What's new Alpha release 1.5.0"}]]
|
|
[:div.modal-right
|
|
[:div.modal-title
|
|
[:h2 "What's new?"]]
|
|
[:span.release "Alpha version " version]
|
|
[:div.modal-content
|
|
[:p "Penpot continues growing with new features that improve performance, user experience and visual design."]
|
|
[:p "We are happy to show you a sneak peek of the most important stuff that the Alpha 1.5.0 version brings."]]
|
|
[:div.modal-navigation
|
|
[:button.btn-secondary {:on-click next} "Continue"]]]
|
|
[:img.deco {:src "images/deco-left.png" :border "0"}]
|
|
[:img.deco.right {:src "images/deco-right.png" :border "0"}]]]]
|
|
|
|
0
|
|
[:div.modal-overlay
|
|
[:div.animated {:class @klass}
|
|
[:div.modal-container.onboarding.feature
|
|
[:div.modal-left
|
|
[:img {:src "images/features/path-tool.gif" :border "0" :alt "New path tool"}]]
|
|
[:div.modal-right
|
|
[:div.modal-title
|
|
[:h2 "New features for paths"]]
|
|
[:div.modal-content
|
|
[:p "Now you can select snap points on edition, add/remove nodes, merge/join/split nodes."]
|
|
[:p "The usability and performance of the paths tool has been improved too."]]
|
|
[:div.modal-navigation
|
|
[:button.btn-secondary {:on-click next} "Continue"]
|
|
[:& c/navigation-bullets
|
|
{:slide @slide
|
|
:navigate navigate
|
|
:total 3}]]]]]]
|
|
|
|
1
|
|
[:div.modal-overlay
|
|
[:div.animated {:class @klass}
|
|
[:div.modal-container.onboarding.feature
|
|
[:div.modal-left
|
|
[:img {:src "images/features/assets-organiz.gif" :border "0" :alt "Manage libraries"}]]
|
|
[:div.modal-right
|
|
[:div.modal-title
|
|
[:h2 "New libraries organization"]]
|
|
[:div.modal-content
|
|
[:p "Penpot now allows to group, multiselect and bulk edition of assets (components and graphics)."]
|
|
[:p "It is time to have all the libraries well organized and work more efficiently."]]
|
|
[:div.modal-navigation
|
|
[:button.btn-secondary {:on-click next} "Continue"]
|
|
[:& c/navigation-bullets
|
|
{:slide @slide
|
|
:navigate navigate
|
|
:total 3}]]]]]]
|
|
|
|
2
|
|
[:div.modal-overlay
|
|
[:div.animated {:class @klass}
|
|
[:div.modal-container.onboarding.feature
|
|
[:div.modal-left
|
|
[:img {:src "images/features/smart-inputs.gif" :border "0" :alt "Smart inputs"}]]
|
|
[:div.modal-right
|
|
[:div.modal-title
|
|
[:h2 "Smart inputs"]]
|
|
[:div.modal-content
|
|
[:p "Now you can have more precision in your designs with basic math operations in inputs."]
|
|
[:p "It's easier to specify by how much you want to change a value and work with measures and distances."]]
|
|
[:div.modal-navigation
|
|
[:button.btn-secondary {:on-click finish} "Start!"]
|
|
[:& c/navigation-bullets
|
|
{:slide @slide
|
|
:navigate navigate
|
|
:total 3}]]]]]])))
|
|
|