diff --git a/frontend/resources/images/features/1.13-focus.gif b/frontend/resources/images/features/1.13-focus.gif new file mode 100644 index 000000000..209cb0a35 Binary files /dev/null and b/frontend/resources/images/features/1.13-focus.gif differ diff --git a/frontend/resources/images/features/1.13-members.gif b/frontend/resources/images/features/1.13-members.gif new file mode 100644 index 000000000..9745759dd Binary files /dev/null and b/frontend/resources/images/features/1.13-members.gif differ diff --git a/frontend/resources/images/features/1.13-multi-export.gif b/frontend/resources/images/features/1.13-multi-export.gif new file mode 100644 index 000000000..47c752666 Binary files /dev/null and b/frontend/resources/images/features/1.13-multi-export.gif differ diff --git a/frontend/resources/images/features/1.13-multiple-fills.gif b/frontend/resources/images/features/1.13-multiple-fills.gif new file mode 100644 index 000000000..1f0283e6d Binary files /dev/null and b/frontend/resources/images/features/1.13-multiple-fills.gif differ diff --git a/frontend/src/app/main/ui/releases.cljs b/frontend/src/app/main/ui/releases.cljs index 8e5632320..a75dcfe3a 100644 --- a/frontend/src/app/main/ui/releases.cljs +++ b/frontend/src/app/main/ui/releases.cljs @@ -13,6 +13,7 @@ [app.main.ui.releases.v1-10] [app.main.ui.releases.v1-11] [app.main.ui.releases.v1-12] + [app.main.ui.releases.v1-13] [app.main.ui.releases.v1-4] [app.main.ui.releases.v1-5] [app.main.ui.releases.v1-6] @@ -83,4 +84,4 @@ (defmethod rc/render-release-notes "0.0" [params] - (rc/render-release-notes (assoc params :version "1.12"))) + (rc/render-release-notes (assoc params :version "1.13"))) diff --git a/frontend/src/app/main/ui/releases/v1_13.cljs b/frontend/src/app/main/ui/releases/v1_13.cljs new file mode 100644 index 000000000..4678e9782 --- /dev/null +++ b/frontend/src/app/main/ui/releases/v1_13.cljs @@ -0,0 +1,108 @@ +;; 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) UXBOX Labs SL + +(ns app.main.ui.releases.v1-13 + (:require + [app.main.ui.releases.common :as c] + [rumext.alpha :as mf])) + +(defmethod c/render-release-notes "1.13" + [{: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 Beta release 1.13"}]] + [:div.modal-right + [:div.modal-title + [:h2 "What's new?"]] + [:span.release "Beta 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 peak of the most important stuff that the Beta 1.13 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/1.13-multi-export.gif" :border "0" :alt "Multiple exports"}]] + [:div.modal-right + [:div.modal-title + [:h2 "Multiple exports"]] + [:div.modal-content + [:p "Speed your workflow exporting multiple elements simultaneously."] + [:p "Use the export window to manage your multiple exports and be informed about the download progress. Big exports will happen in the background so you can continue designing in the meantime ;)"]] + [:div.modal-navigation + [:button.btn-secondary {:on-click next} "Continue"] + [:& c/navigation-bullets + {:slide @slide + :navigate navigate + :total 4}]]]]]] + + 1 + [:div.modal-overlay + [:div.animated {:class @klass} + [:div.modal-container.onboarding.feature + [:div.modal-left + [:img {:src "images/features/1.13-multiple-fills.gif" :border "0" :alt "Multiple fills and strokes"}]] + [:div.modal-right + [:div.modal-title + [:h2 "Multiple fills and strokes"]] + [:div.modal-content + [:p "Now you can add multiple color fills and strokes to a single element, including shapes and texts."] + [:p "This opens endless graphic possibilities such as combining gradients and blending modes in the same element to create visual effects."]] + [:div.modal-navigation + [:button.btn-secondary {:on-click next} "Continue"] + [:& c/navigation-bullets + {:slide @slide + :navigate navigate + :total 4}]]]]]] + + 2 + [:div.modal-overlay + [:div.animated {:class @klass} + [:div.modal-container.onboarding.feature + [:div.modal-left + [:img {:src "images/features/1.13-members.gif" :border "0" :alt "Members area redesign"}]] + [:div.modal-right + [:div.modal-title + [:h2 "Members area redesign"]] + [:div.modal-content + [:p "Penpot is meant for teams, that’s why we decided to give some love to the members area."] + [:p "A refreshed interface and two new features: the Invitations section where you can check the state of the team invites and the ability to invite multiple members at the same time."]] + [:div.modal-navigation + [:button.btn-secondary {:on-click next} "Continue"] + [:& c/navigation-bullets + {:slide @slide + :navigate navigate + :total 4}]]]]]] + + 3 + [:div.modal-overlay + [:div.animated {:class @klass} + [:div.modal-container.onboarding.feature + [:div.modal-left + [:img {:src "images/features/1.13-focus.gif" :border "0" :alt "Focus mode"}]] + [:div.modal-right + [:div.modal-title + [:h2 "Focus mode"]] + [:div.modal-content + [:p "Select the elements of a page you want to work with in a specific moment hiding the rest so they don’t get in the way of your attention."] + [:p "This option is also useful to improve the performance in cases where the page has a large number of elements."]] + [:div.modal-navigation + [:button.btn-secondary {:on-click finish} "Start!"] + [:& c/navigation-bullets + {:slide @slide + :navigate navigate + :total 4}]]]]]])))