From c856f21f0efe50591aa74affb15e8427cd8466f2 Mon Sep 17 00:00:00 2001 From: Henri Courdent <122811744+hcourdent@users.noreply.github.com> Date: Fri, 5 Jul 2024 13:15:03 +0200 Subject: [PATCH] Changelog frontend update & fork button border (#4024) * Changelog frontend update & fork button border * Removed duplicate and added new --- .../src/lib/components/sidebar/changelogs.ts | 35 +++++++++++++++++++ .../(logged)/flows/get/[...path]/+page.svelte | 1 - 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/components/sidebar/changelogs.ts b/frontend/src/lib/components/sidebar/changelogs.ts index 39a41cb6ec..7f85a2d04e 100644 --- a/frontend/src/lib/components/sidebar/changelogs.ts +++ b/frontend/src/lib/components/sidebar/changelogs.ts @@ -5,11 +5,46 @@ export type Changelog = { } const changelogs: Changelog[] = [ + { + label: 'OneOf Inputs', + href: 'https://www.windmill.dev/changelog/oneof-inputs', + date: '2024-06-17' + }, + { + label: 'Tracking relative imports to avoid dependency hell', + href: 'https://www.windmill.dev/changelog/track-relative-imports', + date: '2024-06-10' + }, + { + label: 'Windmill Customer Portal', + href: 'https://www.windmill.dev/changelog/customer-portal', + date: '2024-06-04' + }, + { + label: 'Secondary Storage', + href: 'https://www.windmill.dev/changelog/secondary-storage', + date: '2024-05-31' + }, + { + label: 'Allow User Resources in Apps with a toggle', + href: 'https://www.windmill.dev/changelog/user-resources-in-apps', + date: '2024-05-27' + }, + { + label: 'Windmill AI now supports GPT-4o', + href: 'https://www.windmill.dev/changelog/windmill-ai-gpt-4o', + date: '2024-05-27' + }, { label: 'Concurrency Limit Observability', href: 'https://www.windmill.dev/changelog/concurrency-limit-observability', date: '2024-05-15' }, + { + label: 'Full Height Components', + href: 'https://www.windmill.dev/changelog/full-height-components', + date: '2024-05-15' + }, { label: 'PHP Support', href: 'https://www.windmill.dev/changelog/php-support', diff --git a/frontend/src/routes/(root)/(logged)/flows/get/[...path]/+page.svelte b/frontend/src/routes/(root)/(logged)/flows/get/[...path]/+page.svelte index 0655d01cf5..e127be48a2 100644 --- a/frontend/src/routes/(root)/(logged)/flows/get/[...path]/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/flows/get/[...path]/+page.svelte @@ -147,7 +147,6 @@ label: 'Fork', buttonProps: { href: `/flows/add?template=${flow.path}`, - variant: 'border', color: 'light', size: 'xs', startIcon: GitFork