feat(desktop): add Tauri updater (GitHub Releases), updater UI button, hide PowerShell windows; fix Windows inventory arrays and activation; improve metrics parsing; branding rename to Raven across app; avoid localhost fallback in auth-server; inject APP_URL/AUTH_URL in stack

This commit is contained in:
Esdras Renan 2025-10-10 20:39:39 -03:00
parent eb5f39100f
commit 418599ef62
18 changed files with 127 additions and 34 deletions

View file

@ -59,7 +59,7 @@ export function PortalShell({ children }: PortalShellProps) {
<span className="text-xs font-semibold uppercase tracking-[0.28em] text-neutral-500">
Portal do cliente
</span>
<span className="text-lg font-semibold text-neutral-900">Sistema de chamados</span>
<span className="text-lg font-semibold text-neutral-900">Raven</span>
</div>
<nav className="flex items-center gap-3 text-sm font-medium">
{navItems.map((item) => {
@ -112,7 +112,7 @@ export function PortalShell({ children }: PortalShellProps) {
</main>
<footer className="border-t border-slate-200 bg-white/70">
<div className="mx-auto flex w-full max-w-6xl items-center justify-between px-6 py-4 text-xs text-neutral-500">
<span>&copy; {new Date().getFullYear()} Sistema de chamados</span>
<span>&copy; {new Date().getFullYear()} Raven</span>
<span>Suporte: suporte@sistema.dev</span>
</div>
</footer>