From 1f186d6d2a3fc66e87b441c895d58e76e4bbcd80 Mon Sep 17 00:00:00 2001 From: joshua Date: Fri, 7 Aug 2026 00:47:54 +0200 Subject: [PATCH] Bump version to 1.5.2 Co-Authored-By: Claude Sonnet 5 --- CHANGELOG.md | 12 ++++++++++++ backend/package.json | 2 +- frontend/package.json | 2 +- package.json | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e72c51a..8ea8c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project follows [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [1.5.2] - 2026-08-07 + +### Fixed + +- Stat card labels on the Admin and Supervisor dashboards (e.g. "Registrations (past month)") were getting cut off mid-word on mobile, where a cramped 2-column grid left too little room for the text. The mobile layout now shows one card per row, and labels wrap onto two lines instead of truncating. +- The "Revenue trend" and "Top performing events" cards on the Admin and Supervisor dashboards could render outside the viewport on mobile: a wide events table (long titles, four columns) forced the containing grid column past the screen width instead of scrolling internally. Long event titles are now truncated in the table, and the page properly contains horizontal overflow. +- The navbar Logout button sat about 2px lower than the other nav links (Home/Events/Contact/Dashboard) because it was missing the same underline-spacing classes those links use. + +### Added + +- Tab/mode switcher buttons on the Payments, At the door, Manual registration, Email attendees, WhatsApp attendees, and Cashup detail pages now show icons, matching the icons already used for the same tabs in each page's help guide. + ## [1.5.1] - 2026-08-06 ### Fixed diff --git a/backend/package.json b/backend/package.json index faa4a91..f70c603 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "event-management-backend", - "version": "1.5.1", + "version": "1.5.2", "description": "Event Management System Backend", "main": "src/index.js", "scripts": { diff --git a/frontend/package.json b/frontend/package.json index d5ac7cb..6600eb9 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "hope-events-frontend", - "version": "1.5.1", + "version": "1.5.2", "private": true, "scripts": { "dev": "next dev --turbopack", diff --git a/package.json b/package.json index 585f42a..c5d83d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hope-events", - "version": "1.5.1", + "version": "1.5.2", "main": "index.js", "scripts": { "dev:backend": "cd backend && npm run dev",