From a480a78ba79ba45b26579a0c4c51872daae3d418 Mon Sep 17 00:00:00 2001 From: Ricky Stretch Date: Tue, 17 Mar 2026 15:55:34 -0400 Subject: [PATCH] v0.9.54 functionality bug fixes --- .env.example | 2 +- backend/package.json | 2 +- build.sh | 2 +- frontend/package.json | 2 +- frontend/src/components/SchedulePage.jsx | 4 ++-- frontend/src/pages/Chat.jsx | 8 +++++++- 6 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.env.example b/.env.example index 50ab360..70f2b1f 100644 --- a/.env.example +++ b/.env.example @@ -10,7 +10,7 @@ PROJECT_NAME=jama # Image version to run (set by build.sh, or use 'latest') -JAMA_VERSION=0.9.53 +JAMA_VERSION=0.9.54 # App port — the host port Docker maps to the container PORT=3000 diff --git a/backend/package.json b/backend/package.json index 65e5872..7deb8fb 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "jama-backend", - "version": "0.9.53", + "version": "0.9.54", "description": "TeamChat backend server", "main": "src/index.js", "scripts": { diff --git a/build.sh b/build.sh index a6ec91d..fc11dc3 100644 --- a/build.sh +++ b/build.sh @@ -13,7 +13,7 @@ # ───────────────────────────────────────────────────────────── set -euo pipefail -VERSION="${1:-0.9.53}" +VERSION="${1:-0.9.54}" ACTION="${2:-}" REGISTRY="${REGISTRY:-}" IMAGE_NAME="jama" diff --git a/frontend/package.json b/frontend/package.json index 76e48f0..1b78732 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "jama-frontend", - "version": "0.9.53", + "version": "0.9.54", "private": true, "scripts": { "dev": "vite", diff --git a/frontend/src/components/SchedulePage.jsx b/frontend/src/components/SchedulePage.jsx index 19d11b4..4882d5f 100644 --- a/frontend/src/components/SchedulePage.jsx +++ b/frontend/src/components/SchedulePage.jsx @@ -641,7 +641,7 @@ function MonthView({ events, selectedDate, onSelect, onSelectDay }) { } // ── Main Schedule Page ──────────────────────────────────────────────────────── -export default function SchedulePage({ isToolManager, isMobile }) { +export default function SchedulePage({ isToolManager, isMobile, onProfile, onHelp, onAbout }) { const { user } = useAuth(); const toast = useToast(); @@ -744,7 +744,7 @@ export default function SchedulePage({ isToolManager, isMobile }) { {setSelDate(d);setPanel('calendar');}} eventDates={eventDates}/>
- +
)} diff --git a/frontend/src/pages/Chat.jsx b/frontend/src/pages/Chat.jsx index 70cf2b2..f8d3a18 100644 --- a/frontend/src/pages/Chat.jsx +++ b/frontend/src/pages/Chat.jsx @@ -340,6 +340,9 @@ export default function Chat() { isToolManager={isToolManager} isMobile={isMobile} features={features} + onProfile={() => setModal('profile')} + onHelp={() => setModal('help')} + onAbout={() => setModal('about')} /> - {modal === 'settings' && setModal(null)} onFeaturesChanged={setFeatures} />} + {modal === 'profile' && setModal(null)} />} + {modal === 'settings' && setModal(null)} onFeaturesChanged={setFeatures} />} {modal === 'groupmanager' && setModal(null)} />} + {modal === 'about' && setModal(null)} />} + {modal === 'help' && setModal(null)} dismissed={helpDismissed} />} ); }