feat(icon)+fix(audio): 앱 아이콘 적용 + 트레이 아이콘 + 마이크 테스트 조기 종료 수정
- 앱 아이콘: icon.svg 마스터(d3ro 브랜드 — 메탈 섀시+오렌지 웨이브) → png/ico 생성 스크립트(generate-icons.mjs, sharp) + electron-builder win/mac 연결 - 트레이: createEmpty() 빈 아이콘 → 실제 앱 아이콘 (getAppIconPath) - 마이크 테스트: 초기 무음 level:0을 종료로 오인하던 조기 종료 버그 — AUDIO.TEST_LEVEL에 done 플래그 신설(SSOT), STOP 버튼이 실제 캡처 중지, testDevice 실패 시 상태 롤백
This commit is contained in:
parent
26b3fd1f63
commit
cbed451209
12 changed files with 184 additions and 11 deletions
|
|
@ -43,6 +43,7 @@ asarUnpack:
|
|||
# electron 기본 아이콘 사용(아이콘 준비되면 win.icon 라인 추가).
|
||||
# ────────────────────────────────────────────────────────────────────
|
||||
win:
|
||||
icon: build/icon.ico
|
||||
target:
|
||||
- target: nsis
|
||||
arch:
|
||||
|
|
@ -52,6 +53,8 @@ win:
|
|||
# macOS
|
||||
# ────────────────────────────────────────────────────────────────────
|
||||
mac:
|
||||
# icns는 electron-builder가 build/icon.png(1024)에서 자동 생성
|
||||
icon: build/icon.png
|
||||
category: public.app-category.productivity
|
||||
# 파일명 공백 금지 — GitLab Generic Package Registry가 공백을 불허해
|
||||
# latest-mac.yml의 url과 레지스트리 업로드명이 어긋나면 업데이트 다운로드 404.
|
||||
|
|
@ -98,6 +101,12 @@ linux:
|
|||
# 공통 리소스 번들
|
||||
# ────────────────────────────────────────────────────────────────────
|
||||
extraResources:
|
||||
# 앱 아이콘 (트레이/런타임용 — paths.ts getAppIconPath)
|
||||
- from: build/icon.ico
|
||||
to: icons/icon.ico
|
||||
- from: build/icon.png
|
||||
to: icons/icon.png
|
||||
|
||||
# 효과음 (플랫폼 공통)
|
||||
- from: resources/sounds/
|
||||
to: sounds/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue