diff --git a/packages/nc-gui/components/feed/Changelog/Item.vue b/packages/nc-gui/components/feed/Changelog/Item.vue index 60dce45a9c..34913ea57d 100644 --- a/packages/nc-gui/components/feed/Changelog/Item.vue +++ b/packages/nc-gui/components/feed/Changelog/Item.vue @@ -15,39 +15,13 @@ const renderMarkdown = async (markdown: string) => { return await unified().use(remarkParse).use(remarkRehype).use(rehypeSanitize).use(rehypeStringify).process(markdown) } -const markdown = `# Introducing New Field Type : Button 🎉 - -Introducing the new field type Button, designed to enhance interactivity and automation by utilising data from the current row. This Button field type allows you to wire up the execution to predefined action such as triggering a webhook/API or opening a custom URL or launching a pre-filled NocoDB form. With this, you can dynamically pass record data, enabling highly tailored and context-aware interactions. - -[![DemoVideo](https://github.com/user-attachments/assets/0c8539d7-71f1-4b2f-931b-d924eeedde8e)](https://youtu.be/V20tQDkbkvU) - - -### Added - -- Automate workflows by configuring buttons to trigger custom webhooks. -- Configure buttons to open custom URLs -- Easily set up buttons to open pre-filled NocoDB forms -- Tailor the button’s text, colour, and icon to fit your specific needs -- Leverage NocoDB's formula editor to create dynamic URLs and payloads - - - -### 📢 Important notice -This release includes a migration to generate a file reference table, which will be used in future updates to clean up unreferenced attachments. The migration process will run in the background. Please **note that this release doesn’t initiate any clean up of unreferenced files**. - -Additionally, we are introducing the [NC_ATTACHMENT_RETENTION_DAYS](https://docs.nocodb.com/getting-started/self-hosted/environment-variables/#storage) configuration for future releases. If this value is set to 0, it will prevent the cleanup of any stale / unreferenced attachments. Otherwise, unreferenced attachments will be removed from the disk after the specified number of days. - - -**Team NocoDB** -` - const renderedText = computedAsync(async () => { return await renderMarkdown(props.body) })