feat(release): prepare 1.1.0 candidate

This commit is contained in:
Yun Chan 2026-08-29 18:33:45 +09:00
parent 5a34f66981
commit 5205dcdfa9
736 changed files with 115667 additions and 12203 deletions

View file

@ -1,7 +1,7 @@
// src/main/services/UpdateService.ts
// electron-updater 기반 자동 업데이트. 싱글톤 + EventEmitter.
//
// feed: D3RO Official Release Feed `https://d3ro.chanpaca.net/releases/1.0.0`
// feed: public GitLab Generic Registry `d3ro-voice/latest`
// 기능:
// 1. 사용자 인가 기반 다운로드 (autoDownload=false)
// 2. 이번 버전 건너뛰기 (Skip This Version) 지원
@ -172,7 +172,7 @@ class UpdateService extends EventEmitter {
/** 1단계: 신규 업데이트 발견 시 다운로드 인가 요청 다이얼로그 */
private async _promptUserConsent(
version: string,
releaseNotes?: string | any[]
releaseNotes?: string | ReadonlyArray<{ version: string; note: string | null }> | null
): Promise<void> {
if (this._promptShown || this._downloading) return
this._promptShown = true
@ -262,4 +262,3 @@ export function getUpdateService(): UpdateService {
}
export { UpdateService }