diff --git a/src/content.config.ts b/src/content.config.ts index 6392a1f..5df3563 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -10,6 +10,7 @@ const blog = defineCollection({ date: z.coerce.date(), tags: reference('tags').array().optional(), cover: image().optional(), + video: z.string().optional(), }) }); diff --git a/src/content/blog/assets/october-status/cover.png b/src/content/blog/assets/october-status/cover.png new file mode 100644 index 0000000..252241d Binary files /dev/null and b/src/content/blog/assets/october-status/cover.png differ diff --git a/src/content/blog/october-status.mdx b/src/content/blog/october-status.mdx new file mode 100644 index 0000000..e545fb3 --- /dev/null +++ b/src/content/blog/october-status.mdx @@ -0,0 +1,11 @@ +--- +title: PixiEditor October 2025 Status +authors: [ flabbet ] +tags: [ status, pixieditor2.0, devlog, video ] +date: 2025-11-06 +description: "A summary of the progress made on PixiEditor in October 2025, brush engine progress, nested documents and more!" +cover: "./assets/october-status/cover.png" +video: "https://youtu.be/AGiNCdMgzhg" +--- + +If you are reading this from an RSS feed or a newsletter, consider [visiting the blog post online](https://pixieditor.net/blog/2025/11/06/october-status) to see the video we made for this status update! \ No newline at end of file diff --git a/src/content/blog/september-status.mdx b/src/content/blog/september-status.mdx index c299c2e..2bdd6d1 100644 --- a/src/content/blog/september-status.mdx +++ b/src/content/blog/september-status.mdx @@ -206,8 +206,6 @@ We added a node for that. There are 2 modes available: RGB and Luminance. The la We are still working on fixes and improvements after the 2.0 release along with a Brush Engine. Hopefully I'll have more news about it in October status update. - - Also, thanks to Sebasthem for letting us use a photo of this cute kitty!
Sebasthem's [Instagram](https://www.instagram.com/p/DNm5RyyODL0/?igsh=MWg0NjM4Z21kdGNoMA==) diff --git a/src/pages/blog/[year]/[month]/[day]/[id].astro b/src/pages/blog/[year]/[month]/[day]/[id].astro index 313390e..53d4a40 100644 --- a/src/pages/blog/[year]/[month]/[day]/[id].astro +++ b/src/pages/blog/[year]/[month]/[day]/[id].astro @@ -4,6 +4,7 @@ import Layout from "@layouts/Layout.astro"; import Lucide from '@components/Lucide.astro'; import { Image } from 'astro:assets'; import "remark-github-blockquote-alert/alert.css"; +import FoundersPackBanner from '@components/supportUs/FoundersPackBanner.astro'; export async function getStaticPaths() { const posts = await getCollection('blog'); @@ -62,7 +63,16 @@ const { Content, headings } = await render(post);

{dateString}

+ {post.data.video ? +
+ +
+ : null} +