Compare commits

..

2 Commits

Author SHA1 Message Date
99ad87f994 Build [v1.10.10] 2026-04-15 20:26:30 +03:00
49d50e0849 Build [v1.10.9] 2026-04-15 19:57:06 +03:00
4 changed files with 11 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
{
"version": "1.10.8",
"last_build": "2026-04-15-1948",
"version": "1.10.10",
"last_build": "2026-04-15-2026",
"codename": "AccessibleUI",
"commit": "79e3152c"
"commit": "49d50e08"
}

View File

@@ -773,9 +773,9 @@ export default function Home() {
<Minus size={24} />
</button>
<div className="text-center">
<span className="text-xs font-black tabular-nums">{zoom.toFixed(1)}x</span>
<span className="text-[10px] text-primary/80 font-bold uppercase tracking-tight">Zoom</span>
</div>
<span className="text-xs font-black tabular-nums">{adjustQty}</span>
<span className="text-[10px] text-primary/80 font-bold uppercase tracking-tight">Units</span>
</div>
<button
onClick={() => setAdjustQty(adjustQty + 1)}
className="w-12 h-12 rounded-full border border-slate-800 flex items-center justify-center text-slate-400 active:bg-slate-800"
@@ -845,8 +845,7 @@ export default function Home() {
<X size={20} />
</button>
</div>
<div className="overflow-y-auto w-full pr-2 space-y-3 pb-4">
<div className="overflow-y-auto w-full pr-2 space-y-3 pb-4">
{boxMatches.map(item => (
<button
key={item.id}
@@ -858,19 +857,13 @@ export default function Home() {
className="w-full text-left bg-slate-950/50 hover:bg-slate-800 border border-slate-800/80 p-4 rounded-2xl flex items-center gap-4 transition-all active:scale-[0.98] group"
>
<div className="flex-1 min-w-0">
<p className="text-sm font-black text-white italic text-center">Protocol Detected</p>
<p className="text-xs text-slate-400 font-bold uppercase tracking-widest text-center mt-1">Select identity from label matrix</p>
<p className="text-sm font-black text-white">{item.name}</p>
<p className="text-xs text-slate-400 font-bold uppercase tracking-widest mt-1">Part #: {item.part_number || 'N/A'}</p>
</div>
<ChevronRight size={18} className="text-slate-600 group-hover:text-primary" />
</button>
))}
</div>
<button
onClick={handleLogin}
className="w-full bg-primary text-white font-black py-5 rounded-[1.5rem] shadow-2xl shadow-primary/20 hover:shadow-primary/30 active:scale-95 transition-all uppercase text-xs tracking-widest border border-primary/20"
>
Initialize Session
</button>
</div>
</div>
)}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long