/** * Build/host configuration (CC11): the deploy-specific constants that identify * WHERE this build talks to, separated from runtime tunables (constants.ts — * timeouts, caps, tickers) and from user settings (settings.ts). Retarget a * fork's update source by editing these three values. * * IMPORTANT: the update repo's releases must be ANONYMOUSLY readable — i.e. a * public repo on a Gitea instance that permits anonymous API + downloads. * AeroFetch never ships a token; on a sign-in-required instance the update * check simply reports that it couldn't reach the server. */ export const UPDATE_HOST = 'https://gitea.netbird.zimspace.uk:5938' export const UPDATE_OWNER = 'debont80' export const UPDATE_REPO = 'AeroFetch' export const RELEASE_API = `${UPDATE_HOST}/api/v1/repos/${UPDATE_OWNER}/${UPDATE_REPO}/releases/latest`