refactor: rename project from dgray.io to kashilo.com

This commit is contained in:
2026-02-10 18:43:49 +01:00
parent 4e77ce92f3
commit 9069404942
60 changed files with 260 additions and 260 deletions

View File

@@ -319,14 +319,14 @@ class AuthModal extends HTMLElement {
}
downloadBackup() {
const content = `dgray.io Account Backup
const content = `kashilo.com Account Backup
========================
Your UUID (keep this secret!):
${this.generatedUuid}
Login URL:
https://dgray.io/#/login
https://kashilo.com/#/login
Created: ${new Date().toISOString()}
@@ -337,7 +337,7 @@ WARNING: If you lose this UUID, you cannot recover your account!
const url = URL.createObjectURL(blob)
const a = document.createElement('a')
a.href = url
a.download = `dgray-backup-${this.generatedUuid.slice(0, 8)}.txt`
a.download = `kashilo-backup-${this.generatedUuid.slice(0, 8)}.txt`
a.click()
URL.revokeObjectURL(url)
}