From 3cfca0501f4c51fb0fa232917eae80544ec75e2f Mon Sep 17 00:00:00 2001 From: Shiv Dhar Date: Sat, 21 Dec 2024 20:41:56 +0530 Subject: [PATCH 1/3] Fix small typo in docs (#4598) --- .../version-2.8/30-administration/00-getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/versioned_docs/version-2.8/30-administration/00-getting-started.md b/docs/versioned_docs/version-2.8/30-administration/00-getting-started.md index 668a38792..f7a6094e0 100644 --- a/docs/versioned_docs/version-2.8/30-administration/00-getting-started.md +++ b/docs/versioned_docs/version-2.8/30-administration/00-getting-started.md @@ -1,4 +1,4 @@ -# Gettings started +# Getting started A Woodpecker deployment consists of two parts: From f4165b921ed90ee508721c020e4f33c9ebbc338e Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:45:47 +0200 Subject: [PATCH 2/3] Search in plugin tags (#4604) --- .../woodpecker-plugins/src/theme/WoodpeckerPluginList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/woodpecker-plugins/src/theme/WoodpeckerPluginList.tsx b/docs/plugins/woodpecker-plugins/src/theme/WoodpeckerPluginList.tsx index 3fd3e37b3..d998660a1 100644 --- a/docs/plugins/woodpecker-plugins/src/theme/WoodpeckerPluginList.tsx +++ b/docs/plugins/woodpecker-plugins/src/theme/WoodpeckerPluginList.tsx @@ -41,7 +41,7 @@ export function WoodpeckerPluginList({ plugins }: { plugins: WoodpeckerPlugin[] const fuse = useRef( new Fuse(plugins, { - keys: ['name', 'description'], + keys: ['name', 'description', 'tags'], threshold: 0.3, }), ); From 887e5d985ea5d6f97a912470f97aba534bfdde7d Mon Sep 17 00:00:00 2001 From: Patrick Schratz Date: Sat, 21 Dec 2024 20:37:08 +0100 Subject: [PATCH 3/3] Use icon sizes relative to font size (#4575) --- docs/static/img/feat-docker.svg | 2 +- docs/static/img/feat-opensource.svg | 2 +- docs/static/img/workflows.svg | 2 +- web/src/components/atomic/Icon.vue | 78 +++++++++---------- web/src/components/atomic/IconButton.vue | 6 +- web/src/components/form/Checkbox.vue | 10 ++- web/src/components/form/RadioField.vue | 10 ++- web/src/components/layout/Container.vue | 2 +- .../layout/header/ActivePipelines.vue | 4 +- web/src/components/layout/header/Navbar.vue | 24 +++--- .../components/repo/pipeline/PipelineItem.vue | 20 ++--- .../repo/pipeline/PipelineStatusIcon.vue | 4 +- web/src/views/repo/RepoWrapper.vue | 4 +- web/src/views/repo/pipeline/Pipeline.vue | 18 ++--- 14 files changed, 95 insertions(+), 91 deletions(-) diff --git a/docs/static/img/feat-docker.svg b/docs/static/img/feat-docker.svg index 1498e22c8..31c054cf9 100644 --- a/docs/static/img/feat-docker.svg +++ b/docs/static/img/feat-docker.svg @@ -1,2 +1,2 @@ - + diff --git a/docs/static/img/feat-opensource.svg b/docs/static/img/feat-opensource.svg index 89366e23d..61f3b413b 100644 --- a/docs/static/img/feat-opensource.svg +++ b/docs/static/img/feat-opensource.svg @@ -1,2 +1,2 @@ - + diff --git a/docs/static/img/workflows.svg b/docs/static/img/workflows.svg index 966b99cc5..597fbb476 100644 --- a/docs/static/img/workflows.svg +++ b/docs/static/img/workflows.svg @@ -1,2 +1,2 @@ - + diff --git a/web/src/components/atomic/Icon.vue b/web/src/components/atomic/Icon.vue index 2c43236aa..facac554f 100644 --- a/web/src/components/atomic/Icon.vue +++ b/web/src/components/atomic/Icon.vue @@ -1,59 +1,59 @@