Thomas Steiner
Thomas Steiner
Well, technically, there is the concept of ```chrome://apps```, so you could argue. But I don’t have a better check neither.
Check if the browser understands Web App Manifests as the universally agreed-on requirement for add to home screen: ```javascript document.createElement('link').relList.supports('manifest') ```
FWIW, I settled with [this](https://github.com/tomayac/pwa-feature-detector/blob/40cc5638c5c171e9bc30224c116a9297a37dd0c5/src/main.js#L6-L7) solution for PWA Feature Detector: ```javascript document.createElement('link').relList.supports('manifest') && 'onbeforeinstallprompt' in window ``` This makes sure the browser understands what a *Web App Manifest* is, and...
I guess you’re right in your observation, yes. I feel like right now there’s just no one right or wrong approach, more an approximation of what one personally considers a...
Hi Gus, The updates currently only happen when you restart the server, but not when the server is kept running. I agree this is not clear by reading the docs....
> Is it when I restart the machine or the geoname service that the dump is updated? When you restart the Node.js server the library checks if it needs to...
For https://github.com/tomayac/local-reverse-geocoder/issues/24#issuecomment-1251062343, I have just published `v0.12.2` that makes sure the overridden cities name is reflected properly.
Thanks for the report! Do you have time to work on a fix for this issue?
Sounds like a great idea. Are you up for implementing this?
> I really like @tomayac's solution on his personal blog: screenshot each page with Puppeteer and use that as the summary card image. - The [script](https://github.com/tomayac/blogccasion/blob/master/_11ty/createScreenshots.js) in question. - The...