Changeset 90259da in Klonkt for src/server.js


Ignore:
Timestamp:
06/19/2026 09:09:45 AM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
5c27e8e
Parents:
323abb0
Message:

feat: release tracking — version in footer links to /changelog

  • CHANGELOG.md as source of truth; version bump 1.0.0-beta.1 -> beta.2.
  • Public /changelog page renders the changelog (marked) + shows the federation proto alongside the app version.
  • Footer version ("Klonkt Beta vX") is now a link to /changelog.

Circles: app version is independent of KLONKT_PROTO (federation proto,
now 2) — a version bump does not affect federation. The /changelog page
shows the proto explicitly so each release makes it clear which
federation version the instance speaks.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/server.js

    r323abb0 r90259da  
    6161import showsRoutes from './routes/shows.js';
    6262import adminShowsRoutes from './routes/admin-shows.js';
     63import changelogRoutes from './routes/changelog.js';
    6364
    6465if (!process.env.SESSION_SECRET) {
     
    283284app.use('/', embedRoutes); // /embed inbedbare audiospeler (premium)
    284285app.use('/', showsRoutes); // /shows agenda + notify-me (premium)
     286app.use('/', changelogRoutes); // /changelog publieke release-/wijzigingen-pagina
    285287app.use('/', postsRoutes);
    286288
Note: See TracChangeset for help on using the changeset viewer.