source: Klonkt/CHANGELOG.md@ 2d66d66

main
Last change on this file since 2d66d66 was 2d66d66, checked in by Robin <roboburr@…>, 8 weeks ago

Feature: revoke connected OAuth apps from the account page

You issue C2S bearer tokens (Shaer, etc.) but had no way to see or revoke them.
The account page now has a 'Connected apps' section listing every authorization
(app name via the client join, site, scope, last used) with a Revoke button.
Already-issued tokens appear because they were always stored (hashed) with the
user/client/site; the bearer is never kept, so revocation is keyed on the safe
token_hash and scoped to the owner (you cannot revoke someone else's).

  • OAuthService.listAuthorizations(userId) / revokeAuthorization(userId, hash).
  • account.js: authorizations passed to the page; POST /account/oauth/revoke.
  • account.ejs: the section + styles; i18n NL/EN/DE. Visible to viewers too (revoking your own app access is a safety action).

83 tests green. Live-verified: two apps listed on /account, revoke one -> it is
gone and the other stays, token count drops in the DB.

Co-Authored-By: Claude Opus 4.8 <noreply@…>

  • Property mode set to 100644
File size: 20.6 KB
RevLine 
[eb5f978]1# Changelog — Klonkt
[90259da]2
[eb5f978]3All notable changes to Klonkt. Newest at the top.
[054b603]4Versions follow [SemVer](https://semver.org/).
[90259da]5
6## [Unreleased]
7
[d49b60b]8### Added
[2d66d66]9- **Revoke connected apps from your account page.** A "Connected apps" section
10 lists every app you authorized over OAuth (name, site, scope, last used) with
11 a Revoke button. Tokens you already granted show up too, since they were
12 always stored (hashed); the bearer itself is never kept, so revocation is keyed
13 on the token hash.
[4407c67]14- **The account owner can read their own followers and following over C2S.** The
15 `followers` and `following` collections stay count-only for the public
16 (privacy), but a request carrying a C2S bearer scoped to that site now returns
17 the real actor URIs, so an app (Shaer) can build a friends list. Anonymous
18 callers are unchanged.
[d49b60b]19- **App access via OAuth 2.0 (ActivityPub Client-to-Server, phase 1).** Klonkt
20 now speaks the standard AP C2S auth handshake so native and web clients (the
21 Shaer apps first) can connect: dynamic client registration (RFC 7591), a
22 PKCE authorization-code flow with a consent screen that picks which of your
23 sites the app may post as, and bearer tokens (stored hashed, single-use
24 codes). The actor document advertises the OAuth and uploadMedia endpoints and
25 `/.well-known/oauth-authorization-server` (RFC 8414) exposes the metadata, so
26 clients discover everything instead of hardcoding paths. Public clients + PKCE
[dd568e7]27 only, no client secrets.
28- **The outbox accepts posts from apps (C2S, phase 1 complete).** A
29 bearer-authenticated `POST` to `/ap/users/:slug/outbox` now drives your account
30 from a client: publish a note, reply, like, boost, follow, and undo any of
31 those. Activities are translated onto the same delivery machinery the web UI
32 uses; a bare Note is wrapped in a Create per the spec; content is sanitized;
33 the token is scoped to one site so it can't post as another. Note: this is
34 ActivityPub C2S, which the Shaer apps speak. Mastodon clients (Ivory etc.) use
35 Mastodon's own API and are not supported by this.
[d49b60b]36
[c867b7b]37### Fixed
[bf72108]38- **OAuth consent now hands off reliably to native apps.** After Allow/Deny, a
39 redirect to a native custom scheme (e.g. `com.klonkt.shaer:/oauth`) was a plain
40 302, which mobile browsers silently drop. The consent step now serves a tiny
41 interstitial for non-http redirect URIs that auto-forwards and offers an "Open
42 the app" tap link (a tap reliably launches the app on Android; iOS's web-auth
43 session intercepts either way). Web (http/https) clients still get a 302.
[c867b7b]44- **Visitors can reply to the site owner's own comments.** The "reply via the
45 fediverse" button only appeared on comments from others; the site's own
46 comments in a thread offered visitors nothing, so you could not respond to
47 the author from your own instance.
48
[05cd954]49## [1.5.0] · 2026-07-18
50
[010e073]51### Added
[f1a23b8]52- **Messages: your replies and notifications on one page.** A single Messages
53 tab replaces Replies and Notifications. One stream with filter chips (All,
54 Conversations, Activity, Sent): your own sent replies join the conversation
55 (with edit and delete), likes and boosts on the same post group into one line,
56 private replies carry a lock badge, and items new since your last visit get a
57 dot. The interact bookmarklet moved along. Old /fediverse and /notifications
58 links redirect to /messages.
[010e073]59- **Connect: your following and followers on one page.** A single Connect tab
60 replaces the separate Following and Followers pages, showing each connection's
61 direction (following →, follower ←, mutual ↔) and, for accounts you deliver to,
62 when they were last reached. Accounts you can no longer reach move to a
63 collapsed "Unreachable" section for cleanup. Old /following and /followers
64 links redirect to /connect.
[67c1f24]65- **Moderate incoming replies on your own posts.** As the site owner you can now
66 remove a reply from your thread (it stays removed: re-delivery and
67 thread-filling are blocked by a tombstone) and report it to its author's
68 server, straight from the thread. This also works for private replies, which
69 cannot be handled via the fediverse interact flow.
[010e073]70
[9dbb175]71### Fixed
[7d19465]72- **A boosted video post keeps its video in the Circle.** Boosting a video-only
73 post (Loops.video) stored it without its media, so the Circle showed a bare
74 text tile instead of a video thumbnail; re-boosting could even wipe the video
75 from an already-cached copy. Boosts now carry the full typed media, and a
76 refresh never erases cached media.
[92a2c46]77- **The interact page title follows your language.** "Interacteer via de
78 fediverse" was hardcoded Dutch in the browser tab, even on an English site.
79- **The Apple Music icon looks like the Apple logo again.** The old icon was a
80 garbled shape.
81- **Statistics columns no longer jump around in the 30 and 90 day views.**
82 Columns without a date label collapsed slightly; every column now keeps its
83 label line.
[3778ddb]84- **Private replies no longer show on the public post page.** A followers-only
85 or direct (DM) reply to your post was rendered in the public thread for
86 everyone. Incoming replies now record their fediverse addressing; the public
87 thread only shows public and unlisted replies. Private ones still reach you in
88 notifications, with the post they belong to.
[9dbb175]89- **Bare video/audio embeds no longer overflow their column.** A `.webm` /
90 `.mp4` / `.mp3` player now fits the content width like the iframe embeds do;
91 the width rule previously covered only `iframe`.
92
[87d2787]93## [1.4.0] · 2026-07-14
94
95### Added
96- **Followers list with delivery health.** A new Fediverse tab shows who follows
97 you and when each account was last reached, so dead accounts stand out and you
98 can remove them after a check.
99- **Bare media links play inline.** A plain `.webm`, `.mp4` or `.mp3` link now
100 renders a native player instead of a dead link.
101- **Hashtags, links and mentions are clickable on your site too.** `#tags`, URLs
102 and `@mentions` in a post become links on the site itself, not only on the
103 federated copy. Mentions are resolved once when you save, so pages stay fast.
104
105### Fixed
106- **Replies, comment deletes and reply edits always arrive.** They used to be
107 dropped when a server was briefly unreachable; they now go through the retry
108 queue like posts do.
109- **Video thumbnails for more videos.** Covers from videos with their metadata at
110 the end of the file (Loops.video, phone exports) now get a thumbnail instead of
111 none.
112- **A video-only cover shows a poster on the post page.** It no longer renders
113 blank in the Solo view.
114- **The installed app no longer shows old data on a shaky start.** A cold launch
115 on a poor connection refreshes instead of showing a stale page.
116- **The Updates page follows your branch.** On the stable branch you no longer
117 see main's changes flagged as "latest".
118
[8e7f0ec]119## [1.3.5] — 2026-07-04
120
[0a93c15]121### Fixed
122- **Polls keep their cover art when boosted.** A poll with music or an embed was
123 federating without its cover, so a boosted poll showed a blank tile; the cover
124 now travels with it.
[da71f9d]125- **The Android app's Updates page shows what's actually installable.** It read
126 the newest release branch, which could be ahead of the phone build for a short
127 while — pressing update then reinstalled the same version. It now reads the
128 version of the phone bundle itself.
[0a93c15]129
[6ec0433]130## [1.3.4] — 2026-07-04
131
[236e11b]132### Fixed
133- **Boosts that lost their cover get it back automatically.** Posts you boosted
134 before the cover fix were cached without their artwork; they are refreshed
[14f54a7]135 once on the next restart. If a post's home server is briefly unreachable at
136 that moment, it is retried on the next restarts instead of being skipped for
137 good. Boosting a post again now also refreshes its cached copy (cover,
138 content) — from the feed as well as the interact page.
[236e11b]139
[b7e382f]140## [1.3.3] — 2026-07-03
141
[006a3be]142### Fixed
143- **Boosted music posts keep their cover.** When you boosted a track from
144 someone you don't follow, the cover art went missing; it now shows, just like
145 for people you do follow.
146
[8b5c076]147## [1.3.2] — 2026-07-02
148
[422b20d]149### Fixed
150- **The Updates page now works in the Android app.** It now shows the newest
151 available version, and the update button downloads and installs it right on
152 your phone (your posts and settings are kept).
153
[7d61ab8]154## [1.3.1] — 2026-07-02
155
[421046c]156### Fixed
157- **Music keeps playing in the background on Android.** When a track ended while
158 your phone was locked or the app was in the background, the next track would
159 start and stop again after a second. The player now feeds the whole queue as
160 one continuous stream, so auto-advancing to the next track no longer counts
161 as "new" playback that the browser is allowed to pause.
162
[a369029]163## [1.3.0] — 2026-07-02
164
[1bc0886]165### Added
[3b4095f]166- **Choose a light or dark share card.** The auto-generated share image follows your site theme;
167 under Admin → SEO you can now force it light or dark.
[fe97cc3]168- **A mention is now a notification.** When someone on the fediverse mentions you in a post —
169 even one that isn't a reply to you — it shows up in your fediverse notifications with a link
170 to the original.
[8cf8b5f]171- **Cover art on openly shared audio.** A track shared openly on the fediverse now carries its
172 cover art (or the post cover), so audio players that support artwork show it instead of a blank tile.
[1c2dcba]173- **Report a post to the fediverse.** From a fediverse post you can now report it to the moderators
[737ea05]174 of its own home server, with an optional reason — and if someone reports your site, the report
175 shows up in your fediverse notifications.
[0688b5f]176- **Set a post's language.** Choose the language you wrote a post in — on the fediverse it enables
177 timeline language filtering and the translate button.
[d18c60e]178- **Alt text for images.** Give your cover image a description (and inline images keep their own
179 alt text) — it federates to the fediverse and lets screen readers describe the picture.
[f1956d7]180- **Mention people in a post.** Typing `@user@server` in a post now links to their profile and
181 notifies them on the fediverse — even if they don't follow you — just like a mention in a reply.
[1bc0886]182- **Short videos in the feed autoplay and loop.** An animated cover or a short (≤30s) clip in the
183 News feed now plays automatically and loops muted, like a GIF; longer videos keep their controls.
[55a73f0]184- **Vote on fediverse polls.** A poll from an account you follow now shows in the News feed with its
185 options and current results, and you can cast your vote — it federates back like any Mastodon vote.
[0403187]186- **Create your own polls.** A post can now carry a poll (single or multiple choice, with a set
187 duration). It federates as a real fediverse poll, so your Mastodon followers can vote from their own
188 app; the live results show on the post and the poll closes itself when the time is up.
[1bc0886]189
[c06816e]190### Changed
191- **Sharing audio openly is now one-way.** Once a track is shared openly on the fediverse the file
192 has spread, so "closing" it again would be false security — the editor now locks the choice after
193 opening and warns you before you tick it.
194
[e00c0e9]195### Fixed
[e67828e]196- **Remote videos show a preview frame.** A video in the News feed or a Circle tile (e.g. from
197 Loops or PeerTube) used to appear as a black box until you pressed play; it now shows a real
198 poster frame. (Longer videos keep their player controls by design — only clips under 30 seconds
199 autoplay like a GIF.)
[fc229f5]200- **Mentions, hashtags and links inside brackets now work.** A mention like `(@user@server)`, a
201 `(#hashtag)` or a bracketed URL federated as plain text — and the mentioned person was never
202 notified. They now link (and notify) like their unbracketed forms.
[e00c0e9]203- **Plain web addresses become links on the fediverse.** A bare URL typed in a post or reply now
204 federates as a clickable link instead of plain text.
205
[131e266]206## [1.2.0] — 2026-07-01
207
208### Added
209- **PeerTube videos in the feed.** A PeerTube link in a post now shows an inline player in the News
210 feed, like YouTube, Spotify and SoundCloud already did.
211- **Light share images.** Sites whose default theme is Light now get a matching light Open Graph card
212 when a page is shared, instead of always a dark one.
213- **Leave your own visits out of the stats.** As the admin you can now exclude your own IP address
214 from your site statistics, for a truer picture of real visitors.
215- **Right-click "Save" is turned off on covers, images and videos** — a light bit of friction so the
216 artwork isn't one click from being saved (it's friction, not protection).
217
[1b1cc89]218### Fixed
[131e266]219- **Animated video covers now render correctly everywhere.** In the Circle and the grid they could
220 show up as a broken image or a blank tile; they now display as a proper looping video that fills the
221 square, centred. Right-clicking a cover gives the normal link menu instead of the browser's video controls.
[1b1cc89]222- **Following someone no longer gets stuck.** A follow whose first delivery fails (the other server
223 briefly unreachable) is now retried automatically with backoff, instead of staying on "pending" forever.
224- **Boosted posts show their real text** in the Circle, instead of a "RE: <link>" prefix.
[131e266]225- **Hardened fediverse handling** — stricter signature checks on incoming activity, blocks now also
226 cover a boost of a blocked author, and pinned-post syncing no longer races when you save several times quickly.
[1b1cc89]227
[b1edba0]228## [1.1.0] — 2026-06-30
229
230### Added
231- **Animated covers play smoothly everywhere.** Upload an animated WebP as a cover and Klonkt also
232 makes a muted, looping video of it. iOS Safari — where animated WebP is janky — gets the smooth
233 video, every other browser keeps the crisp WebP, and on the fediverse the cover federates as a
234 video that plays in Mastodon and its apps. Shown on the post, the grid, the feed and related posts.
235- **Media library (Admin → Media).** See every uploaded image, where each one is used, copy its URL,
236 and clean up unused files in one click — including the leftover video/poster of an animated cover.
237 Images, Audio and Playlists now share one tab bar.
238- **Share button** at the bottom of every post (native share sheet, or copy link).
239- **Replace a track's audio file** without re-creating the track.
240- **Music on the fediverse (first step).** Audio posts now carry schema.org *MusicRecording* /
241 *MusicAlbum* data, and a per-post toggle can share a hosted track as a real fediverse audio
242 attachment that plays in followers' feeds.
243
244### Changed
245- **Cleaner embeds on Mastodon.** A post with a YouTube/Spotify/SoundCloud link now lets Mastodon
246 show its player card; link-only tracks share their streaming links. The cover still shows in other
247 Klonkt feeds. (On your own site nothing changes — the player and cover render as before.)
248- **Circles stay in sync the fediverse way** — edits and missed posts catch up automatically via
249 standard ActivityPub, so a Circle no longer drifts out of date.
250- **Everything Klonkt federates is now valid AS2 / JSON-LD**, guarded by a test, so stricter servers
251 accept it.
252- The track list is sorted **newest-first**.
253
254### Fixed
255- **Animated WebP covers are no longer frozen to a single frame** (the crop editor and the thumbnailer
256 left them static).
257- **Link-only tracks** (Spotify/YouTube, no uploaded file) can be inserted into a post again.
258- **Link previews** (og:image / Twitter card) now use absolute image URLs, so they show on Signal,
259 WhatsApp and other scrapers.
260- Several **fediverse delivery fixes**: covers/links no longer turn into a black tile on Mastodon,
261 raw audio files don't clutter a post that already has a player, and dead links from a renamed
262 remote post heal themselves.
263- The **mobile feed** loads full-resolution covers; long titles wrap instead of overflowing.
264- **Self-hosting updates** are more reliable: re-running the installer keeps your channel, and the
265 updater no longer restarts or claims an update when you're already up to date.
266
[054b603]267## [1.0.0] — 2026-06-30
268
[eb5f978]269### Added
[98fe58a]270- **Klonkt is now on the fediverse (ActivityPub).** Your site is a real fediverse
271 account: people on Mastodon — or another Klonkt — can follow you, and your posts
272 reach their feeds. You can follow accounts and read their posts in a **News** feed,
273 get **notifications**, and **like, boost and reply** to posts. Incoming activity is
274 verified, so fake replies, likes and followers are rejected.
275- **Anyone can reply, like or boost your posts from the fediverse** — visitors interact
276 from their own account (they just enter their server); no account on your site needed.
277- **Circles**: follow other Klonkt sites and show each other's public posts in your
278 Circle — decentralised, with no central platform.
279- **Sensitive (NSFW) posts** with your own content-warning text: blurred with
280 click-to-reveal across the site, and shown as a content warning on the fediverse.
281- **Block** an account or an entire domain you'd rather not hear from.
282- Search now also finds **tracks** (by title, artist and album), playable straight from
283 the results with a link to the post they appear in — and post search matches as you type.
284- **Live theme preview** in Admin → site settings: accent, theme and palette update
285 instantly, before you save.
286- Uploaded images are automatically optimised to **WebP** for faster pages.
287- A roomier **mobile writing experience**: tap to open a distraction-free fullscreen
288 editor, with the formatting toolbar staying in view above the keyboard.
[127f87e]289- **Long posts collapse in the News feed** with a *read more* toggle, so a long post no
290 longer fills the whole screen — tap to expand or collapse it.
[054b603]291- **See everyone in a Circle**: when a Circle has more than five sites, the member count
292 opens a popup that lists them all, so a big Circle no longer hides its members.
[0850535]293
[eb5f978]294### Changed
[98fe58a]295- **Palettes revised to 8**: the neutral **Klonkt** (gold accent) is the new default,
296 plus seven full-colour themes — Forest, Ocean, Teal, Lilac, Sunset, Candy and Amber.
[054b603]297- **Your profile federates more completely**: the links on your profile, the date you
298 joined and the accounts you follow now travel along to other servers, so your profile
299 looks complete when someone views it from Mastodon or elsewhere.
300- **Cover images and avatars are sharper** — resized on the server instead of being
301 squeezed by the browser.
[0850535]302
[eb5f978]303### Removed
[98fe58a]304- **Hub mode** — Klonkt is now **solo or Circles**; you build a collective or label
305 through **Circles** (federated, standalone sites).
306- **Native comments and Google login** — replies, likes and boosts now run entirely
307 through the fediverse.
308- **Local favourites (♥)** — replaced by the ⭐ fediverse like.
[1720482]309
[eb5f978]310### Fixed
[127f87e]311- **Hashtags and mentions now work in every language and script** (e.g. Japanese, Cyrillic,
312 Arabic), both on your site and when federating — not just the Latin alphabet.
[0a58300]313- **Switching a site to solo (federation off) works again.** Turning the fediverse off could
314 make the whole site return “page not found” instead of just disabling federation; it now
315 cleanly switches federation off while the rest of the site keeps working. (Self-hosters:
316 update to pick up the fix.)
317- The Fediverse and Notifications items now disappear from the menu when federation is off,
318 instead of lingering.
[98fe58a]319- The mini-player jumps and scrolls to the track that's playing — also from an album or
320 playlist — and keeps it highlighted.
321- Empty album/playlist covers now fall back to the first track's cover.
322- A profile photo that broke in the header after the WebP switch now repairs itself.
323- Many **mobile post-editor** fixes: reliable scrolling, a formatting toolbar that stays
324 put, no page jumps when you tap a button, and a Save bar that sits just above the keyboard.
[054b603]325- **Boosts now reach the original poster** — their server registers the boost and notifies
326 them, just like a boost from Mastodon — and a boost is retried if a server is briefly
327 unreachable instead of being sent once and forgotten.
328- **Unfollowing an account now takes effect on the other server** (it could previously fail
329 to register, leaving you still following on their side).
[90259da]330
331## [1.0.0-beta.2] — 2026-06-19
332
[98fe58a]333First release where we actively track the version (shown in the footer — click it for
334this page).
[90259da]335
[eb5f978]336### Added
337- Release tracking: the version number in the footer links to this changelog page.
338- Eight premium features (Patreon-gated): newsletter/mailing list, download-for-email,
339 release scheduling + fan-only previews, EPK/press kit, pro statistics, link-in-bio +
340 click stats, embeddable player, and show agenda + notify-me.
341- Newsletter signup field in the footer (on/off in Admin → Settings).
[98fe58a]342- SMTP settings configurable in Admin → Settings (no more config-file edit needed), with
343 a test-mail button.
[90259da]344
[eb5f978]345### Changed
[98fe58a]346- Tidier settings forms (stacked labels, full-width inputs).
[eb5f978]347- EPK/press kit shows the top 10 most-listened tracks.
348- Nicer 404 page (mobile-friendly) and clearer login error messages.
[90259da]349
[eb5f978]350### Fixed
[98fe58a]351- The site-wide audio player wasn't loading any tracks.
352- Button text became unreadable on hover.
[eb5f978]353- Date pickers now follow the theme.
[98fe58a]354- Back/forward navigation no longer shows a doubled header.
Note: See TracBrowser for help on using the repository browser.