From 31f61cc056f12b2da54e21eb8348548f8d09a7e4 Mon Sep 17 00:00:00 2001 From: Ricky Stretch Date: Mon, 9 Mar 2026 15:13:44 -0400 Subject: [PATCH] v0.3.2 bug fixes --- .env.example | 2 +- backend/package.json | 2 +- build.sh | 2 +- frontend/package.json | 2 +- frontend/src/index.css | 10 ++++++++++ 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.env.example b/.env.example index 45fdc46..d9c559c 100644 --- a/.env.example +++ b/.env.example @@ -7,7 +7,7 @@ TZ=UTC # Copy this file to .env and customize # Image version to run (set by build.sh, or use 'latest') -JAMA_VERSION=0.3.1 +JAMA_VERSION=0.3.2 # Default admin credentials (used on FIRST RUN only) ADMIN_NAME=Admin User diff --git a/backend/package.json b/backend/package.json index 53c1cf8..23686b7 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "jama-backend", - "version": "0.3.1", + "version": "0.3.2", "description": "TeamChat backend server", "main": "src/index.js", "scripts": { diff --git a/build.sh b/build.sh index 378257e..cc41eb7 100644 --- a/build.sh +++ b/build.sh @@ -13,7 +13,7 @@ # ───────────────────────────────────────────────────────────── set -euo pipefail -VERSION="${1:-0.3.1}" +VERSION="${1:-0.3.2}" ACTION="${2:-}" REGISTRY="${REGISTRY:-}" IMAGE_NAME="jama" diff --git a/frontend/package.json b/frontend/package.json index 1f347dc..7b4baf1 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "jama-frontend", - "version": "0.3.1", + "version": "0.3.2", "private": true, "scripts": { "dev": "vite", diff --git a/frontend/src/index.css b/frontend/src/index.css index ef9dac8..74c9784 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -358,7 +358,17 @@ a { color: inherit; text-decoration: none; } background: var(--surface); border-color: var(--border); } +[data-theme="dark"] .mention-item { + color: var(--text-primary); +} [data-theme="dark"] .mention-item:hover, [data-theme="dark"] .mention-item.active { background: var(--primary-light); + color: var(--primary); +} +[data-theme="dark"] .mention-role { + color: var(--text-tertiary); +} +[data-theme="dark"] .mention-avatar { + background: var(--primary); }