mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-17 04:01:13 +00:00
Restyle Settings and standard modals around a streamlined left-rail layout, clearer section hierarchy, advanced settings disclosures, and stronger update states. Add persistent update visibility with quieter once-daily update notifications, plus Remote Link and Space Agent actions in the canvas rail. Refresh the tunnel experience as a normal Remote Link modal with clearer copy, QR/mobile affordances, and safer state handling.
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<html>
|
|
<head>
|
|
<title>Check for updates</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div x-data>
|
|
<template x-if="$store.settings">
|
|
<div>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<a href="#section-self-update">
|
|
<img src="/public/update_checker.svg" alt="Self Update" />
|
|
<span>Self Update</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#section-update-advanced">
|
|
<img src="/public/backup_restore.svg" alt="Backup & Restore" />
|
|
<span>Advanced Settings</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div id="section-self-update" class="section">
|
|
<x-component path="settings/backup/self-update.html"></x-component>
|
|
</div>
|
|
|
|
<div id="section-update-advanced" class="section" x-data="{ advOpen: false }">
|
|
<div class="settings-advanced-section">
|
|
<button type="button" class="settings-advanced-toggle" @click="advOpen = !advOpen">
|
|
<span class="material-symbols-outlined settings-advanced-toggle-icon"
|
|
:style="advOpen ? 'transform:rotate(90deg)' : ''">chevron_right</span>
|
|
<span>Advanced Settings</span>
|
|
</button>
|
|
|
|
<div class="settings-advanced-body" x-show="advOpen" x-transition.opacity>
|
|
<x-component path="settings/backup/backup_restore.html"></x-component>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</body>
|
|
</html>
|