Skip to content

Privacy

VMark respects your privacy. Here's exactly what happens — and what doesn't.

What VMark Sends

VMark includes an auto-update checker that periodically contacts our server to see if a new version is available. This is the only network request VMark makes.

Each check sends exactly these fields — nothing more:

DataExamplePurpose
IP address203.0.113.42Inherent in any HTTP request — we can't not receive it
OSdarwin, windows, linuxTo serve the correct update package
Architectureaarch64, x86_64To serve the correct update package
App version0.5.10To determine if an update is available
Machine hasha3f8c2... (64-char hex)Anonymous device counter — SHA-256 of hostname + OS + arch; not reversible

The full URL looks like:

GET https://log.vmark.app/update/latest.json?target=darwin&arch=aarch64&version=0.5.10
X-Machine-Id: a3f8c2b1d4e5f6078a9b0c1d2e3f4a5b6c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1

You can verify this yourself — the endpoint is in tauri.conf.json (search for "endpoints"), and the hash is in lib.rs (search for machine_id_hash).

What VMark Does NOT Send

  • Your documents or their contents
  • File names or paths
  • Usage patterns or feature analytics
  • Personal information of any kind
  • Crash reports
  • Keystroke or editing data
  • Reversible hardware identifiers or fingerprints
  • The machine hash is a one-way SHA-256 digest — it cannot be reversed to recover your hostname or any other input

How We Use the Data

We aggregate the update check logs to produce the live statistics shown on our homepage:

MetricHow it's calculated
Unique devicesCount of distinct machine hashes per day/week/month
Unique IPsCount of distinct IP addresses per day/week/month
PingsTotal number of update check requests
PlatformsCount of pings per OS + architecture combination
VersionsCount of pings per app version

These numbers are published openly at log.vmark.app/api/stats. Nothing is hidden.

Important caveats:

  • Unique IPs undercount real users — multiple people behind the same router/VPN count as one
  • Unique devices provide more accurate counts, but a hostname change or fresh OS install generates a new hash
  • Pings overcount real users — one person may check multiple times per day

Data Retention

  • Logs are stored on our server in standard access log format
  • Log files rotate at 1 MB and only the 3 most recent files are kept
  • Logs are not shared with anyone
  • There is no account system — VMark doesn't know who you are
  • The machine hash is not linked to any account, email, or IP address — it is a pseudonymous device counter only
  • We do not use tracking cookies, fingerprinting, or any analytics SDK

Open Source Transparency

VMark is fully open source. You can verify everything described here:

Disabling Update Checks

If you prefer to disable automatic update checks entirely, you can block log.vmark.app at the network level (firewall, /etc/hosts, or DNS). VMark will continue to work normally without it — you just won't receive update notifications.