Download
jcs
/wikipedia
/README
(View History)
jcs README: 1.1 final | Latest amendment: 58 on 2023-11-06 |
1 | Wikipedia Reader |
2 | Written by joshua stein <jcs@jcs.org> - http://jcs.org/wikipedia |
3 | |
4 | Wikipedia Reader is free software; see the LICENSE file for |
5 | copyright/licensing. |
6 | |
7 | This reader requires access to Wikipedia's API which is currently only |
8 | available over TLS. To work around this, the program relies on |
9 | a proxy that will forward requests made over HTTP to Wikipedia's server |
10 | over HTTPS. The default proxy for this is |
11 | http-wikipedia.jcsdotorg.workers.dev, which is a free proxy hosted on |
12 | Cloudflare. To use your own proxy with nginx, use a configuration like this:: |
13 | |
14 | server { |
15 | listen *:80; |
16 | location / { |
17 | proxy_pass https://en.wikipedia.org/; |
18 | } |
19 | } |
20 | |
21 | Once set up, the host used by the reader can be changed in the Settings menu. |
22 | |
23 | Changelog: |
24 | |
25 | 1.1 - 2023-11-06 |
26 | - Add support for opening multiple windows |
27 | - When clicking a hyperlink with the Command key down, open the link in |
28 | a new window |
29 | - Try allocating more memory to resize internal buffers when parsing |
30 | rather than just giving up right away |
31 | |
32 | 1.0 - 2023-10-17 |
33 | - Initial release |