1.0.6

🔨 Fixes and Improvements to existing code:

  • Fixed a bug I reintroduced when I made tags span multiple posts (for Threads) that did not account for dashes in tags.
  • Added some cleanup
  • Fixed a bug that break-all wrapped “normal” links. word-wrap: break-all should only apply to linkified URL.

🎁 Features:

  • Added git (see below) and Changelog handling

1.0.5

🔨 Fixes and Improvements to existing code:

  • Helper-ized duplicate post list filtering logic
  • better Thread handling for “Threads” (“+ Continue”)
  • Fixed scattered Attachment filtering
  • (Somewhat) fixed an anti-pattern of O(n) in attachment handling. SQLite support for JSON is limited, so we’re caching data, which isn’t 100% ideal, but enough for a personal site with < 10000 posts.
  • DRY post tag and vision tag patterns. sync_tags_to_post(post, tags_input, content, clear_existing=False)
  • Cleaned up direct-message formatting repeats.
  • Fixed copy-paste laziness in reactions
  • “Bio” (front page) is now a bog standard reusable Wiki page, no longer a special page. Write as any Wiki page, name bio.md or bio-lang.md and it’ll render on HomeView.
  • Language filters, Reply filters, and Pagination now use partials instead of being repeated across the site.
  • Massive DE/EN fixes (everything is now DE/EN, I hope)

1.0.3

🔨 Fixes:

  • fixed linkify() because bleach does not work
  • removed bleach
  • fixed tagging to be unified - now all tags, be they used inside the content or explicitly added, are sent to the fediverse as mentions, so Mastodon can show them below a post.
  • removed auto_boost for replies - boosting our own replies is extra annoying behavior

1.0.2

🎁 Features:

  • List pages (NotesView, TagView, CategoryView) now have a toggle to show or hide replies.

Git Log

🔧 6b35ae8 2025-12-24 Fixed a bug that applied break-all to all links, not just linkified URL
🔧 e89a9a0 2025-12-23 Fixed a bug in Hashtag processing that was a regression error I introduced when I made tags multi-post, tags survive dashes now
📈 1757d44 2025-12-18 Improvements to <title> for single/details
♻️ 8b44c57 2025-12-17 Massive amounts of DRY and Language fixes, see Changelog 1.0.5
🔧 ecf596c 2025-12-16 Fixed Typewriter for mobile devices, shrunk Hule.png and made it WebP, sped up site significantly
📦 b5f9a0c 2025-12-16 Slighty changed HomeView styling to be more distinct
f5bfb14 2025-12-16 added 'show replies' toggle to lists
🔧 c17a038 2025-12-16 fixed linkify() because bleach does not work, removed bleach, fixed tagging to be unified, removed auto_boost for replies