Compare commits

..

No commits in common. "main" and "v0.2.0" have entirely different histories.
main ... v0.2.0

22 changed files with 635 additions and 883 deletions

View file

@ -4,4 +4,4 @@ tag_format = "v$version"
version_scheme = "semver" version_scheme = "semver"
version_provider = "npm" version_provider = "npm"
update_changelog_on_bump = true update_changelog_on_bump = true
major_version_zero = false major_version_zero = true

View file

@ -26,11 +26,6 @@ jobs:
node-version: 24 node-version: 24
cache: 'pnpm' cache: 'pnpm'
# - uses: https://github.com/denoland/setup-deno@v2
# with:
# deno-version: vx.x.x
# cache: true
- name: Install SSH key - name: Install SSH key
uses: https://github.com/shimataro/ssh-key-action@v2 uses: https://github.com/shimataro/ssh-key-action@v2
with: with:
@ -40,11 +35,9 @@ jobs:
if_key_exists: fail if_key_exists: fail
- run: pnpm install - run: pnpm install
# - run: deno install
- name: Build website - name: Build website
run: pnpm run build-action run: pnpm run build-action
# run: deno run build-action
- name: Create folder if not exists - name: Create folder if not exists
continue-on-error: true continue-on-error: true

View file

@ -1,31 +1,3 @@
## v1.0.1 (2025-06-09)
### Feat
- **package.json**: bump deps
### Fix
- **index**: fix minisign download link
## v1.0.0 (2025-06-09)
### Feat
- **index**: update main page with minisign key and new message
- add new public key for minisign, add signatures to other keys and add a new message reflecting this
- prepare alternative custom button for Amemoia for performance reasons in the future
### Fix
- **index**: fix avif animated iamges not being usable
### Perf
- **index**: move Amemoia's button to fallback smaller button
- **FriendLink***: add AVIF format to buttons
- **index**: change Amemoia's button to FriendLinkLow
## v0.2.0 (2025-05-30) ## v0.2.0 (2025-05-30)
### Feat ### Feat

View file

@ -3,9 +3,8 @@ import { defineConfig } from "astro/config";
import { remarkModifiedTime } from "./remark-modified-time.mjs"; import { remarkModifiedTime } from "./remark-modified-time.mjs";
import preact from "@astrojs/preact"; import preact from "@astrojs/preact";
import tailwindcss from "@tailwindcss/vite"; import tailwind from "@astrojs/tailwind";
import tailwind from "@tailwindcss/vite"; import node from "@astrojs/node";
// import node from "@astrojs/node";
import icon from "astro-icon"; import icon from "astro-icon";
@ -13,47 +12,42 @@ import mdx from "@astrojs/mdx";
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
output: process.env.DOCKER_BUILD ? "server" : "static", output: process.env.DOCKER_BUILD ? "server" : "static",
site: "https://aria.coffee", site: "https://aria.coffee",
integrations: [preact(), tailwind(), icon(), mdx()], integrations: [preact(), tailwind(), icon(), mdx()],
image: { image: {
domains: [ domains: [
"buymymojo.net", "buymymojo.net",
"aria.coffee", "aria.coffee",
"github.com", "github.com",
"githubusercontent.com", "githubusercontent.com",
"avatars.githubusercontent.com", "avatars.githubusercontent.com",
"camo.githubusercontent.com", "camo.githubusercontent.com",
"user-images.githubusercontent.com", "user-images.githubusercontent.com",
"private-user-images.githubusercontent.com", "private-user-images.githubusercontent.com",
"alyxia.dev", "alyxia.dev",
"nanoshinono.me", "nanoshinono.me",
"ata.moe", "ata.moe",
"buh.moe", "buh.moe",
"hayden.moe", "hayden.moe",
"onz.ee", "onz.ee",
"notnite.com", "notnite.com",
// "erisdump.neocities.org", "erisdump.neocities.org",
"espi.me", "espi.me",
"alula.me", "alula.me",
"sapphic.moe", "sapphic.moe",
"calayucu.com", "calayucu.com",
"meow-d.github.io", "meow-d.github.io",
"girlthi.ng", "girlthi.ng",
"lenooby09.tech", "lenooby09.tech",
"ackwell.au", "ackwell.au",
"ari.express" "ari.express"
], ],
}, },
markdown: {
markdown: { remarkPlugins: [remarkModifiedTime],
remarkPlugins: [remarkModifiedTime], },
},
vite: {
plugins: [tailwindcss()],
},
}); });
// Bellow is for when dedicated server is wanted? // Bellow is for when dedicated server is wanted?
@ -62,4 +56,4 @@ export default defineConfig({
// //
// adapter: node({ // adapter: node({
// mode: "standalone", // mode: "standalone",
// }) // })

View file

@ -1,7 +1,7 @@
{ {
"name": "astro", "name": "astro",
"type": "module", "type": "module",
"version": "1.0.1", "version": "0.2.0",
"scripts": { "scripts": {
"dev": "astro dev", "dev": "astro dev",
"build": "astro check && astro build && ./compress-images.sh", "build": "astro check && astro build && ./compress-images.sh",
@ -14,14 +14,14 @@
"@astrojs/mdx": "^4.3.0", "@astrojs/mdx": "^4.3.0",
"@astrojs/node": "^9.2.2", "@astrojs/node": "^9.2.2",
"@astrojs/preact": "^4.1.0", "@astrojs/preact": "^4.1.0",
"@astrojs/rss": "^4.0.12", "@astrojs/rss": "^4.0.11",
"@tailwindcss/vite": "^4.1.10", "@astrojs/tailwind": "^5.1.5",
"astro": "^5.9.3", "astro": "^5.8.1",
"astro-icon": "^1.1.5", "astro-icon": "^1.1.5",
"dayjs": "^1.11.13", "dayjs": "^1.11.13",
"preact": "^10.26.9", "preact": "^10.26.8",
"sharp": "^0.34.2", "sharp": "^0.33.5",
"tailwindcss": "^4.1.10", "tailwindcss": "^3.4.17",
"typescript": "^5.8.3" "typescript": "^5.8.3"
}, },
"devDependencies": { "devDependencies": {
@ -29,8 +29,8 @@
"@iconify-json/hugeicons": "^1.2.5", "@iconify-json/hugeicons": "^1.2.5",
"@iconify-json/mdi": "^1.2.3", "@iconify-json/mdi": "^1.2.3",
"@iconify-json/meteor-icons": "^1.2.1", "@iconify-json/meteor-icons": "^1.2.1",
"@iconify-json/tabler": "^1.2.19", "@iconify-json/tabler": "^1.2.18",
"@iconify-json/token": "^1.2.17", "@iconify-json/token": "^1.2.16",
"@tailwindcss/typography": "^0.5.16", "@tailwindcss/typography": "^0.5.16",
"vite": "^6.3.5" "vite": "^6.3.5"
} }

1220
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,3 @@
onlyBuiltDependencies: onlyBuiltDependencies:
- '@tailwindcss/oxide'
- esbuild - esbuild
- sharp - sharp

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -1,4 +0,0 @@
untrusted comment: signature from minisign secret key
RUQLW3LQVJ3g5u/ChnEWuONApIe8d9nCP6kiHKz+UXvW/JQoS3BeUCGtPfX5RlwQmLKbz8wBczpW6k/480uJQIJNvSZgR9BNgAM=
trusted comment: timestamp:1749466165 file:49776EAC872B884B_public.asc hashed
yS19/KNdSRtbt7kviP/0mmRKXdrQ94wHd7uyhck7qrvbcpnbZFbr4SDdOsI4A8tv5cKC1lRH2SfxmPoZ+zx8BA==

View file

@ -1,2 +0,0 @@
untrusted comment: minisign public key E6E09D54D0725B0B
RWQLW3LQVJ3g5jOGPxsNwENlFnXHFG9UZra0owAp5Ny+bcnX7NTq2nXv

View file

@ -1,39 +0,0 @@
# keys and addrs 2025-06-09
>Email: hello@aria.coffee
>Website: aria.coffee
>Main Git: https://git.aria.coffee/aria
>Backup Git(GitHub): https://github.com/BuyMyMojo
>Alt Git: https://git.witchcraft.systems/Aria
>bsky: https://bsky.app/profile/did:plc:bzrn33tcfgjxnsanvg6py3xn
>bsky alt (pds.witchcraft.systems): https://bsky.app/profile/did:plc:valun42etpm73we7bgyh64ge
>PGP fingerprint: 7EBD 3E0C 7D3D 5C7D 5CA8 A03F 4977 6EAC 872B 884B
>PGP Key: https://aria.coffee/static/keys/49776EAC872B884B_public.asc
>PGP Keyservers: https://keyserver.ubuntu.com & https://keys.openpgp.org
>SSH key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBi5QCHIPTT6Uvq2SLxWUKxcN7RgdtrgJxVs2muVUbqe
aria-minisign.pub:
```
untrusted comment: minisign public key E6E09D54D0725B0B
RWQLW3LQVJ3g5jOGPxsNwENlFnXHFG9UZra0owAp5Ny+bcnX7NTq2nXv
```
Crypto Wallets:
>XMR: 48NZQ5rYpiNEjNtsWKbyniVY3FpJ9kLVA815cxfSMPF5gvjrBiHH9x5JLr3aBYhvKvENCdhrYgzQ9LhBnR5NoinWDCGBzNm
>BTC: bc1qeqz2fswpn4hjjy373gyvjgkq63hv7mknwd6cau
>LTC: LW4tGWNzYQ21eJ8G2LZaLqroYU67nSNwnY
>ETH/USDC/USDT: 0xDd947270bCE2bBB3a3E3eCc4eA5095c14aa9ec58

View file

@ -1,50 +0,0 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
# keys and addrs 2025-06-09
>Email: hello@aria.coffee
>Website: aria.coffee
>Main Git: https://git.aria.coffee/aria
>Backup Git(GitHub): https://github.com/BuyMyMojo
>Alt Git: https://git.witchcraft.systems/Aria
>bsky: https://bsky.app/profile/did:plc:bzrn33tcfgjxnsanvg6py3xn
>bsky alt (pds.witchcraft.systems): https://bsky.app/profile/did:plc:valun42etpm73we7bgyh64ge
>PGP fingerprint: 7EBD 3E0C 7D3D 5C7D 5CA8 A03F 4977 6EAC 872B 884B
>PGP Key: https://aria.coffee/static/keys/49776EAC872B884B_public.asc
>PGP Keyservers: https://keyserver.ubuntu.com & https://keys.openpgp.org
>SSH key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBi5QCHIPTT6Uvq2SLxWUKxcN7RgdtrgJxVs2muVUbqe
aria-minisign.pub:
```
untrusted comment: minisign public key E6E09D54D0725B0B
RWQLW3LQVJ3g5jOGPxsNwENlFnXHFG9UZra0owAp5Ny+bcnX7NTq2nXv
```
Crypto Wallets:
>XMR: 48NZQ5rYpiNEjNtsWKbyniVY3FpJ9kLVA815cxfSMPF5gvjrBiHH9x5JLr3aBYhvKvENCdhrYgzQ9LhBnR5NoinWDCGBzNm
>BTC: bc1qeqz2fswpn4hjjy373gyvjgkq63hv7mknwd6cau
>LTC: LW4tGWNzYQ21eJ8G2LZaLqroYU67nSNwnY
>ETH/USDC/USDT: 0xDd947270bCE2bBB3a3E3eCc4eA5095c14aa9ec58
-----BEGIN PGP SIGNATURE-----
iHUEARYKAB0WIQTnt7jSDIdTwHf5sXEZq3qkYrirOwUCaEa6hQAKCRAZq3qkYrir
OzjdAQCQmMnBsfPmCUWJud9huHyyaFbln82gaChf2X3FIJNtbQD9Hn3GY5VLqGnu
c42JefQdRAJDrRcQJO6IBQZj+o5l1QY=
=wOJ3
-----END PGP SIGNATURE-----

View file

@ -1,4 +0,0 @@
untrusted comment: signature from minisign secret key
RUQLW3LQVJ3g5iokC7ikt1OLDd85X7RtAArA+PpdrC/1a5AzLlwInQI9115ZwLG1sFx8IJF0XRPhuUo0fC84tGb7ETrMFfjl8A0=
trusted comment: timestamp:1749465973 file:keys_and_addrs-2025-06-09.md hashed
T1vZ0SuVqmcM2H3Uc3zum6CodwiDSl5jEj9yp6BK1OBKn3uul4G+kuh4y7cZFxisCMPNyfF2pZsxSxVpMV06Bg==

View file

@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props; const { name, image, target } = Astro.props;
--- ---
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a> <a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['webp']} /></a>
<style> <style>
img { img {
image-rendering: pixelated; image-rendering: pixelated;

View file

@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props; const { name, image, target } = Astro.props;
--- ---
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a> <a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['webp']} /></a>
<style> <style>
img { img {
image-rendering: pixelated; image-rendering: pixelated;

View file

@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props; const { name, image, target } = Astro.props;
--- ---
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a> <a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
<style> <style>
img { img {
image-rendering: pixelated; image-rendering: pixelated;

View file

@ -1,16 +0,0 @@
---
import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props;
---
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
<style>
img {
image-rendering: pixelated;
min-width: 88px;
width: 176px;
min-height: 31px;
height: 62px;
padding: 4px;
}
</style>

View file

@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props; const { name, image, target } = Astro.props;
--- ---
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a> <a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
<style> <style>
img { img {
image-rendering: pixelated; image-rendering: pixelated;

View file

@ -1,16 +0,0 @@
---
import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props;
---
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
<style>
img {
image-rendering: pixelated;
min-width: 88px;
width: 176px;
min-height: 31px;
height: 62px;
padding: 4px;
}
</style>

View file

@ -13,7 +13,7 @@ const blog = defineCollection({
description: z.string(), description: z.string(),
author: z.string(), author: z.string(),
tags: z.array(z.string()), tags: z.array(z.string()),
draft: z.boolean().optional().default(false), draft: z.boolean(),
}), }),
}); });

View file

@ -7,8 +7,6 @@ import BaseLayout from "../layouts/BaseLayout.astro";
import FriendLink from "../components/FriendLinkHigh.astro"; import FriendLink from "../components/FriendLinkHigh.astro";
import FriendLinkMid from "../components/FriendLinkMid.astro"; import FriendLinkMid from "../components/FriendLinkMid.astro";
import FriendLinkLow from "../components/FriendLinkLow.astro"; import FriendLinkLow from "../components/FriendLinkLow.astro";
import FriendLinkLowAnimated from "../components/FriendLinkLowAnimated.astro";
import FriendLinkMidAnimated from "../components/FriendLinkMidAnimated.astro";
const pageTitle = "Aria"; const pageTitle = "Aria";
const currentDate = new Date(); const currentDate = new Date();
@ -44,14 +42,11 @@ const age = seconds / 31556952;
<li>PGP public key fingerprint: <code>7EBD 3E0C 7D3D 5C7D 5CA8 A03F 4977 6EAC 872B 884B</code></li> <li>PGP public key fingerprint: <code>7EBD 3E0C 7D3D 5C7D 5CA8 A03F 4977 6EAC 872B 884B</code></li>
<li>PGP public key: <a href="/static/keys/49776EAC872B884B_public.asc" download="49776EAC872B884B_public.asc"><code>49776EAC872B884B_public.asc</code></a> <sub><a href="https://archive.org/details/49776EAC872B884B_public.asc" target="_blank">archive link</a></sub></li> <li>PGP public key: <a href="/static/keys/49776EAC872B884B_public.asc" download="49776EAC872B884B_public.asc"><code>49776EAC872B884B_public.asc</code></a> <sub><a href="https://archive.org/details/49776EAC872B884B_public.asc" target="_blank">archive link</a></sub></li>
<li>SSH public key: <a href="https://git.aria.coffee/aria.keys" target="_blank">on my personal git serrver</a> or <a href="https://git.witchcraft.systems/aria.keys" target="_blank">on witchcraft systems' git server</a></li> <li>SSH public key: <a href="https://git.aria.coffee/aria.keys" target="_blank">on my personal git serrver</a> or <a href="https://git.witchcraft.systems/aria.keys" target="_blank">on witchcraft systems' git server</a></li>
<li>minisign key: <a href="/static/keys/aria-minisign.pub" download="aria-minisign.pub"><code>aria-minisign.pub</code></a></li>
<li>Email: <a href="mailto:hello@aria.coffee"><code>hello@aria.coffee</code></a> (supports <a href="https://delta.chat/en/" target="_blank">deltachat</a>!)</li> <li>Email: <a href="mailto:hello@aria.coffee"><code>hello@aria.coffee</code></a> (supports <a href="https://delta.chat/en/" target="_blank">deltachat</a>!)</li>
<li>Keyoxide: use my <a href="https://keyoxide.org/hello@aria.coffee" target="_blank">email</a> or my <a href="https://keyoxide.org/7EBD3E0C7D3D5C7D5CA8A03F49776EAC872B884B" target="_blank">PGP key fingerprint</a></li> <li>Keyoxide: use my <a href="https://keyoxide.org/hello@aria.coffee" target="_blank">email</a> or my <a href="https://keyoxide.org/7EBD3E0C7D3D5C7D5CA8A03F49776EAC872B884B" target="_blank">PGP key fingerprint</a></li>
</ul> </ul>
<br /> <br />
<sub>There is new signed note with all my info here: <a href="/static/messages/keys_and_addrs-2025-06-09.md" target="_blank">message</a> + <a href="/static/messages/keys_and_addrs-2025-06-09.md.minisig" target="_blank">minisign sig</a> + <a href="/static/messages/keys_and_addrs-2025-06-09.md.asc" target="_blank">gpg signed</a> <sub><a href="https://archive.org/download/keys_and_addrs-2025-06-09.md_202506" target="_blank">archive link</a></sub></li></sub> <sub>There is a PGP signed note with all my info <a href="/static/messages/keys_and_addrs.txt" target="_blank">here</a> <sub><a href="https://archive.org/details/keys_and_addrs" target="_blank">archive link</a></sub></li></sub>
<br />
<sub>There is a PGP signed note with all my info <sub>(except minisign pub key)</sub> <a href="/static/messages/keys_and_addrs.txt" target="_blank">here</a> <sub><a href="https://archive.org/details/keys_and_addrs" target="_blank">archive link</a></sub></li></sub>
</Partition> </Partition>
<Partition> <Partition>
<h1>Socials:</h1> <h1>Socials:</h1>
@ -78,9 +73,9 @@ const age = seconds / 31556952;
target="https://ata.moe" target="https://ata.moe"
/> />
</div> </div>
<FriendLinkLow <FriendLink
name="Amemoia" name="Amemoia"
image="/static/img/88x31/BuhMoe.png" image="https://buh.moe/resources/buttons/88x31.gif"
target="https://buh.moe/" target="https://buh.moe/"
/> />
<FriendLink <FriendLink
@ -98,7 +93,7 @@ const age = seconds / 31556952;
image="https://notnite.com/buttons/notnite.png" image="https://notnite.com/buttons/notnite.png"
target="https://notnite.com/" target="https://notnite.com/"
/> />
<FriendLinkLowAnimated <FriendLinkLow
name="0x5066" name="0x5066"
image="https://erisdump.neocities.org/buttons/88x31_2.gif" image="https://erisdump.neocities.org/buttons/88x31_2.gif"
target="https://erisdump.neocities.org" target="https://erisdump.neocities.org"
@ -129,12 +124,12 @@ const age = seconds / 31556952;
target="https://meow-d.github.io/" target="https://meow-d.github.io/"
/> />
<div class="outline-dashed flex outline-3 mx-1"> <div class="outline-dashed flex outline-3 mx-1">
<FriendLinkMidAnimated <FriendLink
name="~thermia" name="~thermia"
image="https://girlthi.ng/~thermia/img/88x31/thermia.gif" image="https://girlthi.ng/~thermia/img/88x31/thermia.gif"
target="https://girlthi.ng/~thermia/" target="https://girlthi.ng/~thermia/"
/> />
<FriendLinkMidAnimated <FriendLink
name="girlthi.ng" name="girlthi.ng"
image="https://girlthi.ng/~thermia/img/88x31/girlthing.gif" image="https://girlthi.ng/~thermia/img/88x31/girlthing.gif"
target="https://girlthi.ng/" target="https://girlthi.ng/"

View file

@ -1,5 +1,3 @@
@import "tailwindcss";
/* @font-face { /* @font-face {
font-family: "Noto Sans"; font-family: "Noto Sans";
src: local("Noto Sans"), url("/static/fonts/NotoSansDisplay-Regular.ttf") src: local("Noto Sans"), url("/static/fonts/NotoSansDisplay-Regular.ttf")