diff --git a/VERSION.json b/VERSION.json index 89a57e8d..76911222 100644 --- a/VERSION.json +++ b/VERSION.json @@ -1,8 +1,9 @@ { - "version": "1.2.5", - "last_build": "2026-04-11-1200", - "commit": "c8f1a", + "version": "1.2.6", + "last_build": "2026-04-11-1206", + "commit": "d9e2a", "changelog": [ + "v1.2.6: Hotfix - Added missing icon imports (Layers, ChevronDown)", "v1.2.5: Synchronized icons across UI (Layers for Categories, Package for Item Types)", "v1.2.4: Offline LDAP auth support and UI affordance improvements (Dropdown chevrons, soft password dots)", "v1.2.3: System-wide UI consistency (standardized font sizes, removed uppercase)", diff --git a/dev_docs/ARCHIVE_LOGS.md b/dev_docs/ARCHIVE_LOGS.md index 89a6aac2..82cfc3cc 100644 --- a/dev_docs/ARCHIVE_LOGS.md +++ b/dev_docs/ARCHIVE_LOGS.md @@ -1,12 +1,12 @@ -### [2026-04-11 11:58] v1.2.5: UI Icon Synchronization -**Purpose:** Unified iconography across the system for better visual association. Substituted `Tag` with `Layers` for all Category references and added the green `Package` icon to all item listing instances. Refined AI Onboarding and Admin panels for total consistency. +### [2026-04-11 12:05] v1.2.6: Hotfix - Missing Icon Imports +**Purpose:** Fixed `ReferenceError: Layers is not defined` and `ChevronDown is not defined` errors by adding missing imports in `admin/page.tsx` and `app/page.tsx`. **Modified Files:** -- `frontend/app/inventory/page.tsx` - `frontend/app/admin/page.tsx` -- `frontend/components/AdminOverlay.tsx` -- `frontend/components/AIOnboarding.tsx` +- `frontend/app/page.tsx` - `VERSION.json` +### [2026-04-11 11:58] v1.2.5: UI Icon Synchronization + ### [2026-04-11 11:45] v1.2.4: Offline Auth & UX Polish ### [2026-04-11 11:30] v1.2.3: System-Wide UI Homogenization diff --git a/frontend/app/.#page.tsx b/frontend/app/.#page.tsx deleted file mode 120000 index ca868174..00000000 --- a/frontend/app/.#page.tsx +++ /dev/null @@ -1 +0,0 @@ -danielbedeleanu@Daniels-MacBook-Pro-14-M1.local.30836 \ No newline at end of file diff --git a/frontend/app/admin/page.tsx b/frontend/app/admin/page.tsx index e8f7ac27..bb0bd27e 100644 --- a/frontend/app/admin/page.tsx +++ b/frontend/app/admin/page.tsx @@ -20,7 +20,9 @@ import { Server, Globe, Wifi, - WifiOff + WifiOff, + Layers, + ChevronDown } from 'lucide-react'; import { toast } from 'react-hot-toast'; import { cn } from '@/lib/utils'; diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx index 49d4e384..86c09134 100644 --- a/frontend/app/page.tsx +++ b/frontend/app/page.tsx @@ -20,6 +20,7 @@ import { Wifi, WifiOff, ChevronRight, + ChevronDown, Edit2, RefreshCw, CloudOff, @@ -476,7 +477,7 @@ export default function Home() {
Tap to start scanning
-Scan barcodes to {mode.toUpperCase().replace('_', ' ')} items
+Scan labels to {mode.replace('_', ' ')} items