From bacdc7db5ab573bec41279ea15e78f1a20406921 Mon Sep 17 00:00:00 2001 From: l5io Date: Fri, 18 Oct 2024 20:58:37 +0000 Subject: [PATCH 1/3] Release Notes Meshery Extension version v0.7.124-2 Signed-off-by: l5io --- build/meshery-extensions.version | 2 +- .../en/kanvas/reference/releases/v0.7.124-2.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 content/en/kanvas/reference/releases/v0.7.124-2.md diff --git a/build/meshery-extensions.version b/build/meshery-extensions.version index f4e0d9eb..762fe493 100644 --- a/build/meshery-extensions.version +++ b/build/meshery-extensions.version @@ -1 +1 @@ -v0.7.124-1 +v0.7.124-2 diff --git a/content/en/kanvas/reference/releases/v0.7.124-2.md b/content/en/kanvas/reference/releases/v0.7.124-2.md new file mode 100644 index 00000000..571fc769 --- /dev/null +++ b/content/en/kanvas/reference/releases/v0.7.124-2.md @@ -0,0 +1,17 @@ +--- +title: v0.7.124-2 +date: 2024-10-18T20:58:09Z +tag: v0.7.124-2 +prerelease: false +--- + +## What's New +## 🔤 General +## 🖌️ Designer + +- [wip]tool mode ux @aabidsofi19 (#3007) + +## 👨🏽‍💻 Contributors + +Thank you to our contributors for making this release possible: +@aabidsofi19, @l5io and @leecalcote From bf6bfa221b3e1acf0757c8e6202506fb8e087801 Mon Sep 17 00:00:00 2001 From: Vivek Vishal Date: Sun, 20 Oct 2024 13:48:01 +0000 Subject: [PATCH 2/3] add partial for features Signed-off-by: GitHub --- layouts/partials/feature-info.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 layouts/partials/feature-info.html diff --git a/layouts/partials/feature-info.html b/layouts/partials/feature-info.html new file mode 100644 index 00000000..901b7752 --- /dev/null +++ b/layouts/partials/feature-info.html @@ -0,0 +1,25 @@ +{{ $currentPage := .Page.Permalink }} +{{ $features := .Site.Data.features }} + +{{ if not $features }} + {{ $features = getJSON "features.json" }} +{{ end }} + +{{ if $features }} +{{ range $features }} + {{ $docUrl := .documentation | default "" }} + {{ $cleanDocUrl := (index (split $docUrl "#") 0) }} + {{ if eq $cleanDocUrl $currentPage }} +
+

Who can use this feature

+ {{ $subscription_tier := index .entire_row "Subscription Tier" }} +
+ Icon + Supported on {{ $subscription_tier }} Plan +
+
+ {{ break }} + {{ end }} +{{ end }} +{{ end }} + From 65045dc7e35c4e0018663349806db114c52230e7 Mon Sep 17 00:00:00 2001 From: Vivek Vishal Date: Sun, 20 Oct 2024 13:48:22 +0000 Subject: [PATCH 3/3] update layout with features partial Signed-off-by: GitHub --- layouts/docs/list.html | 1 + layouts/docs/single.html | 1 + 2 files changed, 2 insertions(+) diff --git a/layouts/docs/list.html b/layouts/docs/list.html index 5d762de3..af4a85c4 100644 --- a/layouts/docs/list.html +++ b/layouts/docs/list.html @@ -11,6 +11,7 @@

{{ .Title }}

{{ with .Params.plan }} {{ partial "plan-info.html" (dict "plan" .) }} {{ end }} + {{- partial "feature-info.html" . -}} {{ .Content }} {{ partial "section-index.html" . -}} diff --git a/layouts/docs/single.html b/layouts/docs/single.html index 00cb3ab9..60f83667 100644 --- a/layouts/docs/single.html +++ b/layouts/docs/single.html @@ -1,3 +1,4 @@ {{ define "main" }} +{{ partial "feature-info.html" . }} {{ .Render "content" }} {{ end }} \ No newline at end of file