86 lines
2.7 KiB
TypeScript
86 lines
2.7 KiB
TypeScript
import { type UpdateEntry } from "$lib/components/update-entry.svelte";
|
||
|
||
export const entries: UpdateEntry[] = [
|
||
{
|
||
date: "2026-03-26",
|
||
time: "20:50",
|
||
content: "<b>Important</b>: my website is changing domains.",
|
||
link: "/blog/2026/0326",
|
||
},
|
||
{
|
||
date: "2026-03-25",
|
||
time: "22:22",
|
||
content: "I made a LIGHTYEARS font!",
|
||
link: "/blog/2026/0325",
|
||
},
|
||
{
|
||
date: "2026-03-17",
|
||
time: "17:10",
|
||
content: "a bit uncharacteristic, but I wrote a guide on setting up a SvelteKit app + backend because I found NOTHING of the sort online.",
|
||
link: "/blog/2026/0317",
|
||
},
|
||
{
|
||
date: "2026-03-11",
|
||
time: "19:21",
|
||
content: "new page: my drawings!",
|
||
link: "/art/drawings",
|
||
},
|
||
{
|
||
date: "2026-03-07",
|
||
time: "14:12",
|
||
content: "I fancied up some element animations, especially on the devlog and blog pages! The main page also got some love.",
|
||
},
|
||
{
|
||
date: "2026-03-05",
|
||
time: "23:59",
|
||
content: "My drawing challenge is complete – I learned to draw!",
|
||
link: "/blog/2026/0205",
|
||
},
|
||
{
|
||
date: "2026-02-26",
|
||
time: "20:21",
|
||
content: "There's now a new Small Projects page where I gradually add some of my smaller projects.",
|
||
link: "/projects/small",
|
||
},
|
||
{
|
||
date: "2026-02-25",
|
||
time: "19:33",
|
||
content: "Added cool status markers to the projects page that show whether a project is currently active.",
|
||
link: "/projects",
|
||
},
|
||
{
|
||
date: "2026-02-21",
|
||
time: "16:25",
|
||
content: "My website is now also part of the no AI webring!",
|
||
link: "https://baccyflap.com/noai",
|
||
},
|
||
{
|
||
date: "2026-02-16",
|
||
time: "18:44",
|
||
content: "My website is now part of the bucket webring!",
|
||
link: "https://webring.bucketfish.me/",
|
||
},
|
||
{
|
||
date: "2026-02-06",
|
||
time: "18:47",
|
||
content: "Started a 28-day drawing challenge for myself! Updating the blog post every day with my new drawings.",
|
||
link: "/blog/2026/0205",
|
||
},
|
||
{
|
||
date: "2026-02-03",
|
||
time: "22:46",
|
||
content: "Created a new gallery widget for the main page and added a link to the new Gitea instance.",
|
||
},
|
||
{
|
||
date: "2026-02-03",
|
||
time: "15:48",
|
||
content: "Now running my own Gitea instance! It now also hosts my website repository.",
|
||
link: "https://code.natconf.dev/denizk0461/pages",
|
||
},
|
||
{
|
||
date: "2026-02-02",
|
||
time: "19:30",
|
||
content: "Updated some texts and moved my contact info to the about page. Also created this changelog!",
|
||
link: "/meta/about",
|
||
},
|
||
]; |