Wikipedia Reader Written by joshua stein - http://jcs.org/wikipedia Wikipedia Reader is free software; see the LICENSE file for copyright/licensing. This reader requires access to Wikipedia's API which is currently only available over TLS. To work around this, the program relies on a proxy that will forward requests made over HTTP to Wikipedia's server over HTTPS. The default proxy for this is http-wikipedia.jcsdotorg.workers.dev, which is a free proxy hosted on Cloudflare. To use your own proxy with nginx, use a configuration like this:: server { listen *:80; location / { proxy_pass https://en.wikipedia.org/; } } Once set up, the host used by the reader can be changed in the Settings menu. Changelog: 1.1 - 2023-11-06 - Add support for opening multiple windows - When clicking a hyperlink with the Command key down, open the link in a new window - Try allocating more memory to resize internal buffers when parsing rather than just giving up right away 1.0 - 2023-10-17 - Initial release