Build [v1.10.10]

This commit is contained in:
2026-04-15 20:26:30 +03:00
parent 49d50e0849
commit 99ad87f994
3 changed files with 7 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
{
"version": "1.10.9",
"last_build": "2026-04-15-1957",
"version": "1.10.10",
"last_build": "2026-04-15-2026",
"codename": "AccessibleUI",
"commit": "757e9a7a"
"commit": "49d50e08"
}

View File

@@ -845,7 +845,6 @@ export default function Home() {
<X size={20} />
</button>
</div>
<div className="overflow-y-auto w-full pr-2 space-y-3 pb-4">
{boxMatches.map(item => (
<button
@@ -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