Skip to content

Commit afce11c

Browse files
authored
Merge pull request #48 from PixiEditor/october-status
Added october status and changed blog template
2 parents 157c429 + 913348e commit afce11c

5 files changed

Lines changed: 22 additions & 2 deletions

File tree

src/content.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const blog = defineCollection({
1010
date: z.coerce.date(),
1111
tags: reference('tags').array().optional(),
1212
cover: image().optional(),
13+
video: z.string().optional(),
1314
})
1415
});
1516

115 KB
Loading
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: PixiEditor October 2025 Status
3+
authors: [ flabbet ]
4+
tags: [ status, pixieditor2.0, devlog, video ]
5+
date: 2025-11-06
6+
description: "A summary of the progress made on PixiEditor in October 2025, brush engine progress, nested documents and more!"
7+
cover: "./assets/october-status/cover.png"
8+
video: "https://youtu.be/AGiNCdMgzhg"
9+
---
10+
11+
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!

src/content/blog/september-status.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,6 @@ We added a node for that. There are 2 modes available: RGB and Luminance. The la
206206

207207
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.
208208

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

src/pages/blog/[year]/[month]/[day]/[id].astro

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import Layout from "@layouts/Layout.astro";
44
import Lucide from '@components/Lucide.astro';
55
import { Image } from 'astro:assets';
66
import "remark-github-blockquote-alert/alert.css";
7+
import FoundersPackBanner from '@components/supportUs/FoundersPackBanner.astro';
78
89
export async function getStaticPaths() {
910
const posts = await getCollection('blog');
@@ -62,7 +63,16 @@ const { Content, headings } = await render(post);
6263
<p class="text-neutral-400 block lg:hidden">{dateString}</p>
6364
</div>
6465
<div class="prose prose-pixi w-full">
66+
{post.data.video ?
67+
<div class="w-full lg:w-auto aspect-video">
68+
<iframe class="w-full h-full rounded-lg" src={"https://www.youtube-nocookie.com/embed/" + new URL(post.data.video).pathname.slice(1)}
69+
title="YouTube video player"
70+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
71+
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
72+
</div>
73+
: null}
6574
<Content />
75+
<FoundersPackBanner/ >
6676
</div>
6777
<div class="hidden lg:flex flex-col text-nowrap w-40 sticky top-25">
6878
{headings.map(x => (

0 commit comments

Comments
 (0)