jcs
/wikipedia
/amendments
/52
LICENSE+README: Add
jcs made amendment 52 about 1 year ago
--- LICENSE Mon Oct 16 18:57:39 2023
+++ LICENSE Mon Oct 16 19:05:41 2023
@@ -0,0 +1,17 @@
+Wikipedia Reader is free software released under the terms of the ISC
+license:
+
+Copyright (c) 2022-2023 joshua stein <jcs@jcs.org>
+
+Permission to use, copy, modify, and distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
+AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
+OR PERFORMANCE OF THIS SOFTWARE.
--- README Mon Oct 16 19:03:56 2023
+++ README Mon Oct 16 19:03:56 2023
@@ -0,0 +1,26 @@
+Wikipedia Reader
+Written by joshua stein <jcs@jcs.org> - 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.0 - 2023-10-17
+ - Initial release