Telemetry

What Card Harbor's telemetry sees, and what it never sees.

Card Harbor is a small, unsigned Windows app from an independent developer, not a company you already have a reason to trust. Asking you to install something that runs full-screen over your scanner, your storage layout, and your TCGplayer account is a real ask. The least this page can do is tell you exactly what the app phones home about, in plain language, checked line by line against the actual source code rather than written from memory.

What is sent

Card Harbor uses PostHog for lightweight usage analytics and error reporting. Every event below is a real event name that exists in the app's source. The automatic ones, everything except the feedback form at the bottom of this list, carry no card names, prices, images, or anything else about your inventory.

Every install gets a random, anonymous ID that PostHog generates and stores in the app's local storage, the same way a browser would. Nothing ties that ID to a name: it identifies a device, not a person. Card Harbor also does not use cookies for this; file-based app loads don't carry them reliably, so identity lives in local storage instead.

PostHog also sees the IP address every one of these requests comes from, the same as any website you visit. The app does not ask PostHog to discard it, so treat your approximate location as part of what is sent.

What is never sent

Your card inventory itself is not telemetry data: no automatic event ever carries the contents of your inventory. It lives in a SQLite database in your local app data folder, and nothing in that database leaves your machine. Specifically, the automatic events above never include (a feedback report you send by hand is the one exception, and only for the log tail described there):

Session replay is also off. The app's PostHog setup explicitly disables session recording, so nothing records or reconstructs what was on your screen. Page views and URLs aren't tracked either, partly because a packaged app's internal URLs are meaningless as analytics and partly because they can contain your Windows username, which the app redacts wherever it might otherwise leak into an error report.

How to see for yourself

None of this depends on taking the developer's word for it. PostHog is the named analytics vendor for both the app and this website, the event names above are exactly what's in the app's source, and the ID attached to them is an anonymous device ID. For the complete formal policy, see the Privacy Policy.