Commit Graph

1050 Commits

Author SHA1 Message Date
Qihan 6921f4d937 Create 怎么快速备战会考.mdx 2026-06-13 23:51:04 +08:00
Qihan 9695ea527a Update README.md 2026-06-13 23:34:37 +08:00
Qihan 6bd5069cee Update README.md 2026-06-13 23:34:11 +08:00
Qihan ebe3f466ac Update README.md 2026-06-13 23:33:23 +08:00
Qihan 272fea0482 Update README.md 2026-06-13 21:29:51 +08:00
Qihan e5b354cda7 Update about.md 2026-06-13 18:32:00 +08:00
Qihan 95989771ad Update index.astro 2026-06-13 17:47:37 +08:00
Qihan 249deef4dd Update astro-paper.config.ts 2026-06-13 17:37:24 +08:00
Qihan 62f1ddf63d Update astro-paper.config.ts 2026-06-13 17:33:43 +08:00
Qihan 549ca86db6 Update Footer.astro 2026-06-13 17:23:00 +08:00
Qihan 9b4a9a1831 Update Footer.astro 2026-06-13 17:17:11 +08:00
Qihan dd163c47dd Update index.astro 2026-06-13 17:07:30 +08:00
Qihan 5fca8b46cb Rename zh.ts to en.ts 2026-06-13 16:49:16 +08:00
Qihan 9ccfe889b4 Delete src/i18n/lang/en.ts 2026-06-13 16:47:59 +08:00
Qihan 4e4d537ac3 Create zh.ts 2026-06-13 16:44:34 +08:00
Qihan 5f94fff0c8 Update Footer.astro 2026-06-13 16:37:42 +08:00
Qihan 9a13d54964 Update Footer.astro 2026-06-13 16:33:30 +08:00
Qihan abb9ded945 Delete src/content/posts directory 2026-06-13 16:30:25 +08:00
Qihan c010909e2a Update Footer.astro 2026-06-13 16:29:12 +08:00
Qihan acc334b648 Create 你好,世界.md 2026-06-13 15:45:58 +08:00
Qihan c5883a6db3 Delete src/content/posta 2026-06-13 15:44:10 +08:00
Qihan fc3526a8aa Create posta 2026-06-13 15:43:57 +08:00
Qihan 51b63ebfa1 Delete src/content/posts/_color-schemes directory 2026-06-13 15:43:06 +08:00
Qihan c8cb70a758 Delete src/content/posts/_releases directory 2026-06-13 15:42:54 +08:00
Qihan 79ebd6437c Delete src/content/posts/examples/terminal-development.md 2026-06-13 15:41:57 +08:00
Qihan f74f7f40fc Delete src/content/posts/examples/tailwind-typography.md 2026-06-13 15:41:50 +08:00
Qihan b05c8859b5 Delete src/content/posts/examples/portfolio-website-development.md 2026-06-13 15:41:41 +08:00
Qihan 28094127d7 Delete src/content/posts/examples/example-draft-post.md 2026-06-13 15:41:12 +08:00
Qihan a2a966fe74 Delete src/content/posts/setting-dates-via-git-hooks.md 2026-06-13 15:36:28 +08:00
Qihan 5af2d074c3 Delete src/content/posts/how-to-update-dependencies.md 2026-06-13 15:36:20 +08:00
Qihan 91ece26a4c Delete src/content/posts/how-to-integrate-giscus-comments.md 2026-06-13 15:36:11 +08:00
Qihan 9fae94b2ed Delete src/content/posts/how-to-configure-astropaper-theme.mdx 2026-06-13 15:35:36 +08:00
Qihan dd27de2aff Delete src/content/posts/how-to-add-latex-equations-in-blog-posts.md 2026-06-13 15:35:28 +08:00
Qihan 859e945f36 Delete src/content/posts/dynamic-og-images.md 2026-06-13 15:35:19 +08:00
Qihan 8f076aaf89 Delete src/content/posts/customizing-astropaper-theme-color-schemes.mdx 2026-06-13 15:35:08 +08:00
Qihan f108517889 Delete src/content/posts/adding-new-post.mdx 2026-06-13 15:34:57 +08:00
Qihan a00de7ee87 Update about.md 2026-06-13 15:27:17 +08:00
Qihan ace2c32c54 Update about.md 2026-06-13 15:24:12 +08:00
Qihan b57caa3637 Update about.md 2026-06-13 15:23:59 +08:00
satnaing 4c33a60529 bump: version 6.0.0 → 6.1.0 2026-06-06 15:50:50 +07:00
Sat Naing e0506cb41e feat: add callout support (#655)
* feat: toggle .dark class on theme change

* feat: add callouts with rehype-callouts plugin

* docs: update blog posts with callouts
2026-06-06 09:09:08 +07:00
kOaDT 98f15ee3bc feat: add accessible image lightbox for post images (#654)
* feat: add accessible image lightbox for post images

* fix: iOS scroll lock, backdrop blur, dvh image sizing for lightbox

* feat: add vanilla pinch-to-zoom to image lightbox

* fix: improve touch event handling and scaling logic in image lightbox

---------

Co-authored-by: satnaing <satnaingdev@gmail.com>
2026-06-06 09:08:21 +07:00
Sat Naing 38c4f39fde chore: add recommended VSCode extensions for AstroPaper (#653) 2026-06-03 08:46:32 +07:00
せいはな 470bfb528e fix: sanitize post title for valid CSS view-transition-name (#650) 2026-06-02 22:05:23 +07:00
cfresco-fb e062c79248 fix: iterate all weight matches in getFontPathByWeight (#645)
* fix: iterate all weight matches in getFontPathByWeight

When fontData has multiple entries for the same weight with different format sets, Array.find() stops at the first match even if that entry does not contain the requested format. The fix uses a for...of loop that returns only when both weight AND format match. 

* fix: add fallback to first src entry and trailing newline

- Use `?? font.src[0]` as fallback when no src entry matches the
  requested format, as suggested in code review
- Add missing trailing newline at end of file

Fixes #644
2026-06-02 21:47:12 +07:00
Sat Naing ca42b6b218 build(deps): bump astro and other dependencies (#651)
* build(deps): bump astro and its related dependencies

* build(deps): bump dependencies to latest versions
2026-06-02 08:22:00 +07:00
Erison Silva 1329c6082d build: use pnpm official Docker image and update CI/Docker setup (#639)
- Replace docker-compose.yml (node:lts) with compose.yaml (ghcr.io/pnpm/pnpm:11.3.0)
  - Bump pnpm to 11.3.0 and add --frozen-lockfile in CI
  - Add pnpm-workspace.yaml to allow esbuild and sharp builds
  - Update .gitignore for pnpm store and compose override file
2026-05-29 20:48:05 +07:00
Orancat 68b452289a fix: update incorrect RSS link (#649) 2026-05-29 08:54:17 +07:00
dependabot[bot] 3dd4bd54da build(deps): bump fast-xml-builder from 1.1.5 to 1.2.0 (#643)
Bumps [fast-xml-builder](https://github.com/NaturalIntelligence/fast-xml-builder) from 1.1.5 to 1.2.0.
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-builder/blob/main/CHANGELOG.md)
- [Commits](https://github.com/NaturalIntelligence/fast-xml-builder/compare/v1.1.5...v1.2.0)

---
updated-dependencies:
- dependency-name: fast-xml-builder
  dependency-version: 1.2.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 18:23:38 +07:00
dependabot[bot] a4e3b84318 build(deps): bump devalue from 5.7.1 to 5.8.1 (#638)
Bumps [devalue](https://github.com/sveltejs/devalue) from 5.7.1 to 5.8.1.
- [Release notes](https://github.com/sveltejs/devalue/releases)
- [Changelog](https://github.com/sveltejs/devalue/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/devalue/compare/v5.7.1...v5.8.1)

---
updated-dependencies:
- dependency-name: devalue
  dependency-version: 5.8.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 18:15:38 +07:00