Add third-party F-Droid repos as app sources#16
Merged
Conversation
Adds a registry (db/seed/data/fdroid-repos.ts) of 11 developer-run F-Droid-format repos: Guardian Project, microG, Molly, Cromite, Bitwarden, Threema Libre, Session, Briar, SimpleX, NewPipe, Calyx. fetch.ts downloads each index-v2.json best-effort (a down repo is skipped, not fatal), and the existing F-Droid parser handles them — third-party sources link to the repo's human-facing page and carry a full Obtainium FDroidRepo config so install deep links work. Brings in ~19 apps not on F-Droid/IzzyOnDroid (Signal, Orbot, Tor Browser, microG, Molly, Bitwarden, Session, Firefox Klar) and adds official developer repos as install sources for existing apps. Also stops import upserts from bumping updated_at when nothing actually changed, so sitemap <lastmod> stays honest across reseeds. Claude-Session: https://claude.ai/code/session_019KKBeXoo8rQv8oRiA6GJnv
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
unclouded | 043098f | Commit Preview URL Branch Preview URL |
Jul 05 2026, 02:37 AM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds 11 developer-run F-Droid-format repos as app sources, driven by a single registry file (
db/seed/data/fdroid-repos.ts): Guardian Project, microG, Molly, Cromite, Bitwarden, Threema Libre, Session, Briar, SimpleX, NewPipe, Calyx Institute.seed:fetchdownloads each repo'sindex-v2.jsonbest-effort — a down repo (Cromite is 502 right now) is skipped with a warning instead of failing the whole fetchFDroidRepoconfig in metadata, so the existing deep-link generator produces working install links with zero changes(app_id, source)unique constraintWhy
Verified via dry-run parse: brings in ~19 apps not on F-Droid/IzzyOnDroid at all — Signal, Orbot, Tor Browser, microG (all 3 components), Molly, Bitwarden, Session, Firefox Klar — and adds official developer repos as additional install sources for existing apps (Briar, SimpleX, Threema Libre, NewPipe).
Also in here
Import upserts previously set
updated_at = excluded.updated_atunconditionally, so every reseed bumped every row and made sitemap<lastmod>dishonest. Nowupdated_atonly moves when a field actually changes (SQLiteIS NOTcomparisons on the effective post-COALESCE values).After merge
Deploy the worker first (icon allowlist + badges), then run
seed:fetch && seed:import, thenseed:embeddingsso the new apps appear in search.🤖 Generated with Claude Code
https://claude.ai/code/session_019KKBeXoo8rQv8oRiA6GJnv