fa78b13cac
Adds theme presets (Toffee/Slate/Evergreen/Lavender) with a "follow system" mode and high-contrast awareness, a first-run welcome screen, and the Windows analog of Android's share sheet for a Win32 app: an aerofetch:// protocol handler plus an Explorer "Send to AeroFetch" entry, both routed through a single-instance lock so a second launch hands its link to the already-running window instead of opening a duplicate. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
2.0 KiB
YAML
59 lines
2.0 KiB
YAML
appId: com.aerofetch.app
|
|
productName: AeroFetch
|
|
copyright: yt-dlp frontend
|
|
|
|
# Lets a browser/another app hand AeroFetch a link via aerofetch://download?url=<encoded>
|
|
# (src/main/deeplink.ts) — the closest Windows analog to Android's share-to-app intent.
|
|
# The NSIS installer registers this at install time; main/index.ts's
|
|
# app.setAsDefaultProtocolClient call additionally covers the portable build and dev.
|
|
protocols:
|
|
- name: AeroFetch
|
|
schemes:
|
|
- aerofetch
|
|
|
|
directories:
|
|
buildResources: build
|
|
output: dist
|
|
|
|
files:
|
|
- '!**/.vscode/*'
|
|
- '!src/*'
|
|
- '!electron.vite.config.{js,ts,mjs,cjs}'
|
|
- '!{.eslintignore,.eslintrc.cjs,.eslintrc.js,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
|
|
- '!{.env,.env.*,.npmrc,pnpm-lock.yaml,package-lock.json}'
|
|
- '!{tsconfig.json,tsconfig.node.json,tsconfig.web.json,tsconfig.tsbuildinfo}'
|
|
|
|
# yt-dlp.exe + ffmpeg.exe ship outside the asar archive so they can be spawned
|
|
# directly. They land in <install>/resources/bin, reachable via process.resourcesPath.
|
|
extraResources:
|
|
- from: resources/bin
|
|
to: bin
|
|
filter:
|
|
- '**/*'
|
|
|
|
win:
|
|
# Two artifacts:
|
|
# - nsis → regular installer (Start-menu shortcut + uninstaller). Per-user
|
|
# (installs to %LOCALAPPDATA%), so it needs NO admin rights.
|
|
# - portable → single self-contained .exe. No install, no admin; runs from a
|
|
# USB stick / Downloads folder on a locked-down public PC.
|
|
target:
|
|
- nsis
|
|
- portable
|
|
# Never request admin elevation.
|
|
requestedExecutionLevel: asInvoker
|
|
# icon: build/icon.ico # add before release
|
|
|
|
portable:
|
|
artifactName: ${productName}-${version}-portable.${ext}
|
|
# Fixed extraction dir name so repeated launches reuse it instead of re-extracting.
|
|
unpackDirName: AeroFetch
|
|
requestExecutionLevel: user
|
|
|
|
nsis:
|
|
oneClick: false
|
|
perMachine: false
|
|
allowToChangeInstallationDirectory: true
|
|
deleteAppDataOnUninstall: false
|
|
# Flip perMachine to true for an all-users install to Program Files (requires admin).
|