From 0b10121e203568769bdafdafc539797e90dd91d5 Mon Sep 17 00:00:00 2001 From: aisuneko Date: Sun, 4 Sep 2022 11:04:28 +0800 Subject: [PATCH] release v1.1 --- README.md | 11 +++++++++-- src/__init__.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c2ce933..0b928b6 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ Batch download pages from MediaWiki sites (All pages or pages of a category) as ## Install / Run `pip install mwpdfify` -...or clone repo and `pip install .` + +...or clone repo and `pip install .` + ...or directly download and run `src/mwpdfify.py` There are two PDF rendering backends to choose from: `pdfkit` (default) or `weasyprint`. Use `pip install -r requirements.txt` to install both or choose one yourself. If using the former remember to also install `wkhtmltopdf` on your system. @@ -40,9 +42,14 @@ options: ``` ## Known issues - `&printable=yes` is deprecated in recent versions of MediaWiki (while no substitute API solutions are provided) so there might be layout issues when used with certain wikis; *especially* Fandom wikis as they also contain ads. +- Recursively download pages from subcategories of a category is currently not supported. ## Changelog -- v1.0 (2022/09/03): Initial release +- v1.1 (2022/09/04): + - Changed address handling logic + - Bug fixes +- v1.0 (2022/09/03): + - Initial release ## License LGPLv3 diff --git a/src/__init__.py b/src/__init__.py index 9bc1644..778de05 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1 @@ -__version__ = 1.0 \ No newline at end of file +__version__ = 1.1 \ No newline at end of file