Compare commits
3 Commits
v0.7.1
...
94ef814fa7
| Author | SHA1 | Date | |
|---|---|---|---|
| 94ef814fa7 | |||
| 78a168ca5c | |||
| 3b9dd6788d |
+2
-2
@@ -10,8 +10,8 @@ dist
|
||||
|
||||
# Secrets — never commit
|
||||
.gitea-token
|
||||
# Retired: no longer read by the build (baked update token removed), but the
|
||||
# local file still holds a live token until it's revoked — keep it ignored.
|
||||
# Retired: the baked update token was removed from the build and its service
|
||||
# account revoked; kept ignored so a stray local .update-token can never be committed.
|
||||
.update-token
|
||||
|
||||
# VS Code user settings (workspace settings/.vscode/launch.json are committed)
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "aerofetch",
|
||||
"version": "0.7.1",
|
||||
"version": "0.7.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "aerofetch",
|
||||
"version": "0.7.1",
|
||||
"version": "0.7.2",
|
||||
"license": "UNLICENSED",
|
||||
"dependencies": {
|
||||
"@electron-toolkit/utils": "^4.0.0",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "aerofetch",
|
||||
"version": "0.7.1",
|
||||
"version": "0.7.2",
|
||||
"description": "A yt-dlp frontend for Windows",
|
||||
"main": "./out/main/index.js",
|
||||
"author": "AeroFetch",
|
||||
|
||||
+7
-6
@@ -4,15 +4,16 @@
|
||||
* timeouts, caps, tickers) and from user settings (settings.ts). Retarget a
|
||||
* fork's update source by editing these three values.
|
||||
*
|
||||
* The update source is a PUBLIC, releases-only repo — it holds no source, just
|
||||
* the published installers — so anonymous reads work and the updater sends no
|
||||
* auth at all. Keeping releases separate from the (private) source repo is what
|
||||
* lets the client stay tokenless: there is no secret in the bundle to leak. A
|
||||
* private fork retargets its updater by editing these constants and rebuilding.
|
||||
* The update source is the main AeroFetch repo itself, made PUBLIC — so anonymous
|
||||
* reads work and the updater sends no auth at all; there is no secret in the bundle
|
||||
* to leak. (A prior design split releases into a separate releases-only repo so the
|
||||
* source could stay private; that's retired now that the source repo is public
|
||||
* itself — one fewer moving part.) A private fork retargets its updater by editing
|
||||
* these constants and rebuilding.
|
||||
*/
|
||||
export const UPDATE_HOST = 'https://gitea.netbird.zimspace.uk:5938'
|
||||
export const UPDATE_OWNER = 'debont80'
|
||||
export const UPDATE_REPO = 'AeroFetch-releases'
|
||||
export const UPDATE_REPO = 'AeroFetch'
|
||||
export const RELEASE_API = `${UPDATE_HOST}/api/v1/repos/${UPDATE_OWNER}/${UPDATE_REPO}/releases/latest`
|
||||
|
||||
// --- ffmpeg dependency source ------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user