From 12477a1212e418aa202c92b6528c9efeb31bd59c Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Mon, 12 May 2025 08:23:32 +0200 Subject: [PATCH 1/3] feat: add missing blog "bpmn-visualization 1st anniversary" --- src/content/PostsContent.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/content/PostsContent.tsx b/src/content/PostsContent.tsx index 5218dbb1b..e850f6047 100644 --- a/src/content/PostsContent.tsx +++ b/src/content/PostsContent.tsx @@ -136,6 +136,15 @@ const posts: PostContent[] = [ date: 'May 2021', time: 7, }, + { + title: 'The bpmn-visualization project celebrates its 1st anniversary' + text: 'To celebrate the first year of our work on the bpmn-visualization library, here is a look back.', + cover: + 'https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqfaqgib7iz9v1ehrppv8.png', // from the dev.to article + url: 'https://community.bonitasoft.com/blog/bonita-ui-designer-custom-widget-bpmn-visualization', // https://dev.to/aibcmars/bonita-ui-designer-creating-custom-widget-for-bpmn-visualization-44lk + date: 'May 2021', + time: 4, + }, { title: 'Automated visual regression testing with TypeScript, Playwright and Jest', // original title which would have been truncated: 'Automated visual regression testing with TypeScript, Playwright, Jest and Jest Image Snapshot' From 4b6b1fff29451b3e337cf69c470b9680b92ba638 Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Mon, 12 May 2025 08:30:39 +0200 Subject: [PATCH 2/3] fix: add missing comma --- src/content/PostsContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/PostsContent.tsx b/src/content/PostsContent.tsx index e850f6047..ff69822e7 100644 --- a/src/content/PostsContent.tsx +++ b/src/content/PostsContent.tsx @@ -137,7 +137,7 @@ const posts: PostContent[] = [ time: 7, }, { - title: 'The bpmn-visualization project celebrates its 1st anniversary' + title: 'The bpmn-visualization project celebrates its 1st anniversary', text: 'To celebrate the first year of our work on the bpmn-visualization library, here is a look back.', cover: 'https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqfaqgib7iz9v1ehrppv8.png', // from the dev.to article From 8c77e33d4d700a62992eac69368a7d3c48a70f7b Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Fri, 23 May 2025 10:08:52 +0200 Subject: [PATCH 3/3] use the right link to the article --- src/content/PostsContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/PostsContent.tsx b/src/content/PostsContent.tsx index ff69822e7..33ba732bb 100644 --- a/src/content/PostsContent.tsx +++ b/src/content/PostsContent.tsx @@ -141,7 +141,7 @@ const posts: PostContent[] = [ text: 'To celebrate the first year of our work on the bpmn-visualization library, here is a look back.', cover: 'https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqfaqgib7iz9v1ehrppv8.png', // from the dev.to article - url: 'https://community.bonitasoft.com/blog/bonita-ui-designer-custom-widget-bpmn-visualization', // https://dev.to/aibcmars/bonita-ui-designer-creating-custom-widget-for-bpmn-visualization-44lk + url: 'https://www.linkedin.com/pulse/bpmn-visualization-project-celebrates-its-1st-thomas-bouffard/', // https://dev.to/process-analytics/the-bpmn-visualization-project-celebrates-its-1st-anniversary-4ae2 date: 'May 2021', time: 4, },