The other half of the audio-substrate decision (spikes S2+S3 green, minted
endpoints landed in the previous commit): stop bundling a third-party
kernel driver the host no longer needs.
installer the VB-CABLE task, payload, silent-install run and the
donationware notice are gone; a suppressible notice tells
a Steam-less box that audio needs Steam INSTALLED (never
running) and that installing it later just works. A cable
from an older install is still deliberately not removed.
packer + CI -VbCableDir/VBCABLE_DIR, the staged-payload check and the
runner provisioning download are gone; SBOM drops the
redistributed-driver component.
winget the VB-Audio bundling-grant agreement becomes the honest
Steam requirement (surfaced on the unattended path where
no wizard is on screen).
docs windows-host/uninstall/security/echo say what actually
ships: no kernel-mode driver of our own, endpoints minted
from Valve's vendor-signed drivers, VB-CABLE mentioned
only as the historical fallback that keeps working.
host wording the mic-open guidance and module headers lead with Steam;
the NAME ladder itself is untouched — demoting 'cable
input' was considered and rejected (on a box where minting
transiently fails, the SSM would outrank an installed
cable, steal the silent sink, and make audio host-audible).
64 lines
3.4 KiB
YAML
64 lines
3.4 KiB
YAML
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json
|
|
#
|
|
# Installer manifest for the Windows host (packaging/windows/punktfunk-host.iss -> Inno Setup 6).
|
|
#
|
|
# The host is a machine-wide, elevated install: it registers a SYSTEM service, installs the
|
|
# pf-vdisplay + gamepad drivers, and opens firewall ports. There is no per-user scope.
|
|
PackageIdentifier: unom.PunktfunkHost
|
|
PackageVersion: 0.19.2
|
|
|
|
InstallerType: inno
|
|
Scope: machine
|
|
# PrivilegesRequired=admin in the .iss -> Setup raises its own UAC prompt.
|
|
ElevationRequirement: elevatesSelf
|
|
# Windows 11 22H2 floor: pf-vdisplay is built against IddCx 1.10 with no runtime downgrade, so on
|
|
# anything older the device fails to start with Code 10 (see the MinVersion gate in the .iss).
|
|
MinimumOSVersion: 10.0.22621.0
|
|
|
|
InstallModes:
|
|
# interactive keeps the FULL wizard — every task checkbox and the web-console password page.
|
|
# `winget install unom.PunktfunkHost --interactive`.
|
|
- interactive
|
|
- silent
|
|
- silentWithProgress
|
|
|
|
InstallerSwitches:
|
|
# Spelled out rather than relying on winget's built-in `inno` defaults, so the unattended
|
|
# behaviour is reviewable here. No /MERGETASKS: a silent install deliberately takes the SAME
|
|
# task defaults the wizard shows, so the product does not differ by install channel. The
|
|
# disclosures the wizard puts on screen are carried by Agreements/InstallationNotes in the
|
|
# locale manifest instead.
|
|
#
|
|
# To CHANGE individual tasks, callers pass Inno's /MERGETASKS via --override: a bare name adds a
|
|
# task, a `!` prefix removes one. GameStream is opt-in (its plane pairs over plain HTTP), so
|
|
# enabling it unattended is the additive form:
|
|
# winget install unom.PunktfunkHost --override "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /MERGETASKS=gamestream"
|
|
# and dropping a default-on task is the negated form, e.g. /MERGETASKS=!trayicon
|
|
# Task names: installdriver, installgamepad, installhdrlayer,
|
|
# gamestream, allowpublicfw, startservice, trayicon
|
|
Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
|
|
SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP-
|
|
# <LOGPATH> is winget's OWN token and the only spelling it substitutes (see the schema this file
|
|
# declares: "…<LOGPATH> token can be included in the switch value so that winget will replace the
|
|
# token with user provided path"). It was written |LOGPATH| — not a token, so winget passed the
|
|
# literal string through and Inno rejected it: `|` is not legal in a Windows filename, giving
|
|
# "Error creating log file: The filename, directory name, or volume label syntax is incorrect."
|
|
# That aborted the install in EVERY mode, interactive included, for any caller that asks for a
|
|
# log — UniGetUI does so by default, which is how it was reported.
|
|
Log: /LOG="<LOGPATH>"
|
|
|
|
# Inno writes its ARP entry under <AppId>_is1; this is what correlates an installed host with the
|
|
# package for `winget list` / `winget upgrade`. Must track AppId in the .iss.
|
|
ProductCode: '{7C9E6A52-1F4B-4E8D-A3C7-2B5D8F1E0A93}_is1'
|
|
# Inno upgrades in place (UsePreviousAppDir=yes) — do not uninstall first, that would run the
|
|
# [UninstallRun] service/driver teardown between versions.
|
|
UpgradeBehavior: install
|
|
|
|
Installers:
|
|
- Architecture: x64
|
|
InstallerUrl: https://git.unom.io/unom/punktfunk/releases/download/v0.19.2/punktfunk-host-setup-0.19.2.exe
|
|
InstallerSha256: 96964117125BFD5AC4556987DAFAA3966A4A57BBC29C838803857852D595BF4D
|
|
|
|
ManifestType: installer
|
|
ManifestVersion: 1.6.0
|