Checking for a new version of an Elm app

Thanks, that’s an interesting idea of just reloading every N days rather than try to determine whether a reload is necessary, that might actually be the most appropriate thing for us. It’s also interesting that some people are checking the version on every API call. We actually have a requirement that inactive users must be logged out after a certain amount of time with no interaction, because some interactions don’t involve the API we send a “don’t-log-me-out” ping and we could easily use that to also check for a version update. The downside would mean that it wouldn’t work for non-logged-in users. Nice thread.