Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

---

## [1.4.1] - 2026-07-14

### Fixed
- **App version fallback** — backend `/api/check-update` now reads the running version from `package.json` when the `APP_VERSION` env var is not set (manual installs and dev environments no longer show a false "update available" prompt)

---

## [1.4.0] - 2026-07-13

Cyberpunk RED character sheets: the full Phase 3-5 sheet system, making CP:R the first feature-complete game system.
Expand Down
2 changes: 1 addition & 1 deletion backend/routes/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ module.exports = (db, io, { emitUpdate, recordAction }) => {
if (req.user.isTemporary) return res.status(403).json({ error: 'Primary admin only' });

const https = require('https');
const currentVersion = process.env.APP_VERSION || '1.1.8';
const currentVersion = process.env.APP_VERSION || require('../../package.json').version;

const options = {
hostname: 'hub.docker.com',
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend",
"private": true,
"version": "1.4.0",
"version": "1.4.1",
"type": "module",
"scripts": {
"dev": "vite --host",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mapsystem",
"version": "1.4.0",
"version": "1.4.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
Loading