| 1 | <html> |
| 2 | <head> |
| 3 | <title>Update Checker</title> |
| 4 | </head> |
| 5 | |
| 6 | <body> |
| 7 | <div x-data="{ get settings() { return $store.settings.settings } }"> |
| 8 | <template x-if="settings"> |
| 9 | <div> |
| 10 | <div class="section-title">Update Checker</div> |
| 11 | <div class="section-description"> |
| 12 | Update checker periodically checks for new releases of Agent Zero and will notify when an update is recommended.<br>No personal data is sent to the update server, only randomized+anonymized unique ID and current version number, which help us evaluate the importance of the update in case of critical bug fixes etc. |
| 13 | </div> |
| 14 | |
| 15 | <div class="field"> |
| 16 | <div class="field-label"> |
| 17 | <div class="field-title">Enable Update Checker</div> |
| 18 | <div class="field-description">Enable update checker to notify about newer versions of Agent Zero.</div> |
| 19 | </div> |
| 20 | <div class="field-control"> |
| 21 | <label class="toggle"> |
| 22 | <input type="checkbox" x-model="settings.update_check_enabled" /> |
| 23 | <span class="toggler"></span> |
| 24 | </label> |
| 25 | </div> |
| 26 | </div> |
| 27 | </div> |
| 28 | </template> |
| 29 | </div> |
| 30 | </body> |
| 31 | </html> |