Michael Fogleman
Michael Fogleman
Try quitting and restarting Feed Notifier? It's only able to detect the monitor configuration on startup.
The code does check screen size for each popup, but it seems that wxPython is caching these values. https://github.com/fogleman/FeedNotifier/blob/master/popups.py#L14
You can set the default feeds here: https://github.com/fogleman/FeedNotifier/blob/master/defaults.py#L42
Feel free to submit a pull request. Thanks!
The font should be your default Windows font. You can try setting it explicitly here: https://github.com/fogleman/FeedNotifier/blob/master/controls.py#L51 The HTML-based themes are no longer used.
Not a bad idea, but note that you can check "Infinite Duration" in the preferences to prevent the pop-ups from disappearing until you click on them.
That is a good idea. Currently I've been using my "choppy" software to do it after creating the mesh with hmm: https://github.com/fogleman/choppy (of course in these cases, the mask is...
Correct, this is cartesian only. I have a different project (below) that can do an entire planet, but nothing that does ellipsoid tiles. https://github.com/fogleman/demsphere
`hmm` does load as 16-bit, not 8-bit: https://github.com/fogleman/hmm/blob/master/src/heightmap.cpp#L19 To get 32-bits would require extra effort.
You might need to convert to a 16-bit PNG first, not sure. https://github.com/fogleman/hmm/blob/master/src/stb_image.h#L7356