1
0
mirror of https://github.com/Damillora/Rinze.git synced 2025-04-03 15:33:14 +00:00

feat: rename shioriko to phoebe

This commit is contained in:
Damillora 2025-02-24 14:51:04 +00:00
parent ba4415cb9c
commit 879001427e
3 changed files with 13 additions and 8 deletions
src/routes/projects

@ -25,9 +25,9 @@
description="My online blog" description="My online blog"
/> />
<ProjectItem <ProjectItem
name="Shioriko" name="phoebe"
codename="shioriko" codename="phoebe"
description="Booru-like imageboard software written in Go and Svelte" description="a booru-style image gallery and organizer"
/> />
</div> </div>
<h2>Inactive Projects</h2> <h2>Inactive Projects</h2>

@ -10,19 +10,19 @@
<Post> <Post>
<PageHeader> <PageHeader>
<PageHeaderContents> <PageHeaderContents>
<h1>Shioriko</h1> <h1>phoebe</h1>
<p> <p>
<a href="https://github.com/Damillora/Shioriko">source code</a> <a href="https://github.com/Damillora/phoebe">source code</a>
</p> </p>
</PageHeaderContents> </PageHeaderContents>
</PageHeader> </PageHeader>
<PostMain comments={false}> <PostMain comments={false}>
<h2>Description</h2> <h2>Description</h2>
<p> <p>
Shioriko is a booru-like image board software written in Go and Svelte. Features currently a booru-style image gallery and organizer.
includes automatic tag resolution, searching by tag, infinite-scrolling post browsing, and Built with the Go language and Svelte framework, phoebe is designed for personal image gathering.
similarity search based on perceptual hashing.
</p> </p>
<p>Formerly shioriko.</p>
<h2>Technologies</h2> <h2>Technologies</h2>
<ul> <ul>
<li>Svelte</li> <li>Svelte</li>

@ -0,0 +1,5 @@
import { redirect } from "@sveltejs/kit";
export function load() {
redirect(301, '/projects/phoebe');
}