fix(scopes): standalone project list label showed old /p/<slug> instead of scope/projects/<slug>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
234e5fe189
commit
7bc5260bc7
3 changed files with 20 additions and 1 deletions
17
site/src/content/blog/devblog-2026-w26.mdx
Normal file
17
site/src/content/blog/devblog-2026-w26.mdx
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
---
|
||||||
|
title: "DevBlog 2026 week 26"
|
||||||
|
description: "Rebasing to KiCad 10.0.4 "
|
||||||
|
author: Gergő Törcsvári
|
||||||
|
pubDate: 2026-07-29
|
||||||
|
---
|
||||||
|
|
||||||
|
# History so far
|
||||||
|
|
||||||
|
The initial commit of the web assembly port of KiCad was in 2025. november. At that time KiCad was at version 9.99.0.
|
||||||
|
From that time mostly Viktor and Claude played with it, and until 2026. may, it was only a pet project.
|
||||||
|
|
||||||
|
From 2026 juni, we started to work on it more seriously, we started to make all the tools build and open up
|
||||||
|
|
||||||
|
# Notes
|
||||||
|
We will try to keep writing weekly at the beginning of every week, so you can read what we are doing, and what are the problems we are facing.author
|
||||||
|
Stay tuned!
|
||||||
|
|
@ -145,7 +145,9 @@ function ProjectRow({
|
||||||
<p className="truncate font-medium">{project.name}</p>
|
<p className="truncate font-medium">{project.name}</p>
|
||||||
<SourceChip descriptor={descriptor} />
|
<SourceChip descriptor={descriptor} />
|
||||||
</div>
|
</div>
|
||||||
<p className="text-xs text-muted-foreground">/p/{project.slug}</p>
|
<p className="text-xs text-muted-foreground">
|
||||||
|
{project.scope}/projects/{project.slug}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex shrink-0 items-center gap-1">
|
<div className="flex shrink-0 items-center gap-1">
|
||||||
<Button asChild variant="secondary" size="sm">
|
<Button asChild variant="secondary" size="sm">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue