2026-02-16 18:19:46 +01:00
|
|
|
import { type UpdateEntry } from "$lib/components/update-entry.svelte";
|
2026-02-02 20:09:18 +01:00
|
|
|
|
2026-02-16 18:19:46 +01:00
|
|
|
export const entries: UpdateEntry[] = [
|
2026-02-06 18:57:19 +01:00
|
|
|
{
|
|
|
|
|
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",
|
|
|
|
|
},
|
2026-02-03 22:49:04 +01:00
|
|
|
{
|
|
|
|
|
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.",
|
|
|
|
|
},
|
2026-02-03 15:50:16 +01:00
|
|
|
{
|
2026-02-03 17:00:31 +01:00
|
|
|
date: "2026-02-03",
|
2026-02-03 15:50:16 +01:00
|
|
|
time: "15:48",
|
|
|
|
|
content: "Now running my own Gitea instance! It now also hosts my website repository.",
|
|
|
|
|
link: "https://code.denizk0461.dev/denizk0461/pages",
|
|
|
|
|
},
|
2026-02-02 20:09:18 +01:00
|
|
|
{
|
|
|
|
|
date: "2026-02-02",
|
|
|
|
|
time: "19:30",
|
2026-02-03 15:50:16 +01:00
|
|
|
content: "Updated some texts and moved my contact info to the about page. Also created this changelog!",
|
2026-02-02 20:09:18 +01:00
|
|
|
link: "/meta/about",
|
|
|
|
|
},
|
|
|
|
|
];
|