feat: integrate StarLight updates and improve font settings and skin editor loading
Some checks failed
Axolotl desktop CI / guardrails (push) Has been cancelled
Axolotl desktop CI / desktop (macos-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (ubuntu-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (windows-latest) (push) Has been cancelled
Axolotl desktop CI / website (push) Has been cancelled
Repository checks / typos (push) Has been cancelled
Repository checks / tombi (push) Has been cancelled
Rust checks / shear (push) Has been cancelled
Sync source to CNB / Sync Git ref (push) Has been cancelled

This commit is contained in:
2026-09-19 18:14:41 +08:00
parent a47d309103
commit a477b1fb9a
24 changed files with 665 additions and 74 deletions

View File

@ -42,4 +42,22 @@ for (const platform of requiredPlatforms) {
}
}
for (const platform of ['linux-aarch64', 'linux-x86_64']) {
const artifact = manifest.apt?.[platform]
if (
!artifact ||
typeof artifact.sha256 !== 'string' ||
!/^[0-9a-f]{64}$/i.test(artifact.sha256) ||
!Number.isSafeInteger(artifact.size) ||
artifact.size <= 0
) {
throw new Error(`Missing Debian update for ${platform}`)
}
const url = new URL(artifact.url)
if (url.protocol !== 'https:') {
throw new Error(`Unexpected Debian update URL for ${platform}: ${artifact.url}`)
}
}
console.log(`Verified signed ${source} updater manifest for ${expectedVersion}`)