mirror of
https://git.aria.coffee/BuyMyAria/aria.coffee.git
synced 2025-08-01 04:19:57 +00:00
Compare commits
7 commits
82102d3625
...
40cd9c0554
Author | SHA1 | Date | |
---|---|---|---|
40cd9c0554 | |||
8288677938 | |||
9303258e98 | |||
e104605a11 | |||
6d3ea5cd4b | |||
59598b03f7 | |||
e5cf30613d |
6 changed files with 645 additions and 598 deletions
|
@ -4,6 +4,7 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
||||||
|
## v1.1.0 (2025-07-04)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- add matomo & bump versions
|
||||||
|
- **pay-me**: add nano address
|
||||||
|
- **blog**: make draft bool optional
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- **astro config**: remove eris from image download
|
||||||
|
- **index**: remove "SSH" from minisign key text
|
||||||
|
|
||||||
## v1.0.1 (2025-06-09)
|
## v1.0.1 (2025-06-09)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// @ts-check
|
// @ts-check
|
||||||
import { defineConfig } from "astro/config";
|
import { defineConfig } from "astro/config";
|
||||||
|
import matomo from 'astro-matomo';
|
||||||
import { remarkModifiedTime } from "./remark-modified-time.mjs";
|
import { remarkModifiedTime } from "./remark-modified-time.mjs";
|
||||||
|
|
||||||
import preact from "@astrojs/preact";
|
import preact from "@astrojs/preact";
|
||||||
|
@ -15,7 +16,27 @@ import mdx from "@astrojs/mdx";
|
||||||
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(),
|
||||||
|
matomo({
|
||||||
|
enabled: import.meta.env.PROD, // Only load in production
|
||||||
|
host: "https://analytics.aria.coffee/",
|
||||||
|
// setCookieDomain: "*.ara.coffee",
|
||||||
|
// trackerUrl: "js/", // defaults to matomo.php
|
||||||
|
// srcUrl: "js/", // defaults to matomo.js
|
||||||
|
siteId: 1,
|
||||||
|
heartBeatTimer: 5,
|
||||||
|
// disableCookies: true,
|
||||||
|
debug: false,
|
||||||
|
// viewTransition: {
|
||||||
|
// contentElement: "main"
|
||||||
|
// }
|
||||||
|
}),
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
image: {
|
image: {
|
||||||
domains: [
|
domains: [
|
||||||
|
|
16
package.json
16
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "astro",
|
"name": "aria.coffee",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.0.1",
|
"version": "1.1.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",
|
||||||
|
@ -12,16 +12,18 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "^0.9.4",
|
"@astrojs/check": "^0.9.4",
|
||||||
"@astrojs/mdx": "^4.3.0",
|
"@astrojs/mdx": "^4.3.0",
|
||||||
"@astrojs/node": "^9.2.2",
|
"@astrojs/node": "^9.3.0",
|
||||||
"@astrojs/preact": "^4.1.0",
|
"@astrojs/preact": "^4.1.0",
|
||||||
"@astrojs/rss": "^4.0.12",
|
"@astrojs/rss": "^4.0.12",
|
||||||
"@tailwindcss/vite": "^4.1.10",
|
"@tailwindcss/vite": "^4.1.11",
|
||||||
"astro": "^5.9.3",
|
"aria.coffee": "link:",
|
||||||
|
"astro": "^5.11.0",
|
||||||
"astro-icon": "^1.1.5",
|
"astro-icon": "^1.1.5",
|
||||||
|
"astro-matomo": "^1.9.0",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"preact": "^10.26.9",
|
"preact": "^10.26.9",
|
||||||
"sharp": "^0.34.2",
|
"sharp": "^0.34.2",
|
||||||
"tailwindcss": "^4.1.10",
|
"tailwindcss": "^4.1.11",
|
||||||
"typescript": "^5.8.3"
|
"typescript": "^5.8.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -30,7 +32,7 @@
|
||||||
"@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.19",
|
||||||
"@iconify-json/token": "^1.2.17",
|
"@iconify-json/token": "^1.2.18",
|
||||||
"@tailwindcss/typography": "^0.5.16",
|
"@tailwindcss/typography": "^0.5.16",
|
||||||
"vite": "^6.3.5"
|
"vite": "^6.3.5"
|
||||||
}
|
}
|
||||||
|
|
1184
pnpm-lock.yaml
generated
1184
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -103,11 +103,11 @@ const age = seconds / 31556952;
|
||||||
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"
|
||||||
/>
|
/>
|
||||||
<FriendLink
|
<!-- <FriendLink
|
||||||
name="Espi"
|
name="Espi"
|
||||||
image="https://espi.me/img/webring/espi.png"
|
image="https://espi.me/img/webring/espi.png"
|
||||||
target="https://www.espi.me"
|
target="https://www.espi.me"
|
||||||
/>
|
/> -->
|
||||||
<FriendLink
|
<FriendLink
|
||||||
name="Alula"
|
name="Alula"
|
||||||
image="https://alula.me/webring/alula.png"
|
image="https://alula.me/webring/alula.png"
|
||||||
|
@ -115,7 +115,7 @@ const age = seconds / 31556952;
|
||||||
/>
|
/>
|
||||||
<FriendLink
|
<FriendLink
|
||||||
name="Sapphic"
|
name="Sapphic"
|
||||||
image="https://sapphic.moe/buttons/friends/sapphic.png"
|
image="https://sapphic.moe/buttons/sapphic.png"
|
||||||
target="https://sapphic.moe/"
|
target="https://sapphic.moe/"
|
||||||
/>
|
/>
|
||||||
<FriendLink
|
<FriendLink
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue