{"id":51106158,"url":"https://github.com/helmi/tfd-bridge","last_synced_at":"2026-06-24T14:01:30.009Z","repository":{"id":362939274,"uuid":"1260707902","full_name":"Helmi/tfd-bridge","owner":"Helmi","description":"TFD Bridge — local desktop companion for the TFD World of Warships community (Tauri v2 + Rust)","archived":false,"fork":false,"pushed_at":"2026-06-16T20:51:57.000Z","size":3716,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-16T22:23:32.237Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Helmi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-05T19:34:02.000Z","updated_at":"2026-06-16T20:52:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Helmi/tfd-bridge","commit_stats":null,"previous_names":["helmi/tfd-bridge"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/Helmi/tfd-bridge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmi%2Ftfd-bridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmi%2Ftfd-bridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmi%2Ftfd-bridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmi%2Ftfd-bridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Helmi","download_url":"https://codeload.github.com/Helmi/tfd-bridge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Helmi%2Ftfd-bridge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34735266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-24T14:01:28.855Z","updated_at":"2026-06-24T14:01:30.000Z","avatar_url":"https://github.com/Helmi.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TFD Bridge\n\nLocal desktop companion for the [TFD](https://engine.tfd.rocks) *World of Warships* community. It runs quietly in your system tray and bridges local game files to the TFD web app over loopback HTTP — so features that need your `replays/` folder work even when the browser can't reach it.\n\n\u003e Source is open here; **Windows installers are published on the [Releases page](https://github.com/Helmi/tfd-bridge/releases)**.\n\n## Why it exists\n\n[Battle Monitor](https://engine.tfd.rocks/monitor) needs your World of Warships `replays/` folder. Browsers can't read it in two common cases:\n\n- Steam installs live under `C:\\Program Files (x86)\\…`, where Chromium blocks the File System Access API.\n- Brave disables the directory picker by default.\n\nTFD Bridge reads the folder as a normal local process and serves it **read-only** over `http://127.0.0.1`, which the HTTPS web app can fetch (loopback is a trustworthy context, so it isn't mixed-content-blocked).\n\n## Install (Windows)\n\n1. Download the latest `TFD.Bridge_x.y.z_x64-setup.exe` from [Releases](https://github.com/Helmi/tfd-bridge/releases).\n2. Run it. The app is **not code-signed yet**, so Windows SmartScreen shows a warning — click **More info → Run anyway**.\n3. On first start, confirm your WoWS replays folder (auto-detected for Steam / Wargaming Game Center, or pick it manually).\n\nThe app then lives in the tray. **Left-click the tray icon** to open Battle Monitor; right-click for the menu. It keeps itself up to date automatically.\n\n## What it does\n\n- Detects your replays folder and serves it read-only on `127.0.0.1:43210` (falls back to `43211`–`43214`).\n- Watches the folder and keeps the listing fresh; serves live battles (`tempArenaInfo.json`) and archived replays in nested subfolders.\n- Optional **Launch on login**, set during onboarding or from the tray.\n- Can embed Battle Monitor in-app for browsers that can't run it.\n- Auto-updates from signed GitHub releases.\n\n## Security \u0026 privacy\n\n- Binds **loopback only** (`127.0.0.1`), **read-only**, with strict CORS to `https://engine.tfd.rocks`.\n- Serves only replay files (`*.wowsreplay`, `tempArenaInfo.json`); path traversal and symlink escapes are blocked.\n- No telemetry, no account — nothing leaves your machine except what the TFD web app fetches from loopback.\n- Update artifacts are ed25519-signed.\n\n## Build from source\n\nRequires Rust and the [Tauri v2](https://v2.tauri.app) prerequisites.\n\n```sh\ncargo build                # build the workspace\ncargo test                 # run the test suite\nbunx @tauri-apps/cli dev   # run the app locally\n```\n\nLayout: the bridge is `crates/bridge-core`, the desktop app is `src-tauri`, and the UI is static HTML/CSS in `ui/`.\n\n## License\n\n[MIT](LICENSE) © Helmi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmi%2Ftfd-bridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelmi%2Ftfd-bridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmi%2Ftfd-bridge/lists"}