Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/content.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const blog = defineCollection({
date: z.coerce.date(),
tags: reference('tags').array().optional(),
cover: image().optional(),
video: z.string().optional(),
})
});

Expand Down
Binary file added src/content/blog/assets/october-status/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/content/blog/october-status.mdx
Original file line number Diff line number Diff line change
@@ -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!
2 changes: 0 additions & 2 deletions src/content/blog/september-status.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<FoundersPackBanner/ >

Also, thanks to Sebasthem for letting us use a photo of this cute kitty! <br/>
Sebasthem's [Instagram](https://www.instagram.com/p/DNm5RyyODL0/?igsh=MWg0NjM4Z21kdGNoMA==)

Expand Down
10 changes: 10 additions & 0 deletions src/pages/blog/[year]/[month]/[day]/[id].astro
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -62,7 +63,16 @@ const { Content, headings } = await render(post);
<p class="text-neutral-400 block lg:hidden">{dateString}</p>
</div>
<div class="prose prose-pixi w-full">
{post.data.video ?
<div class="w-full lg:w-auto aspect-video">
<iframe class="w-full h-full rounded-lg" src={"https://www.youtube-nocookie.com/embed/" + new URL(post.data.video).pathname.slice(1)}
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
: null}
<Content />
<FoundersPackBanner/ >
</div>
<div class="hidden lg:flex flex-col text-nowrap w-40 sticky top-25">
{headings.map(x => (
Expand Down