diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-11-11 20:09:42 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-11-11 20:09:42 +0000 |
| commit | f2981af016370e04ec1e8cc886a64b9017970210 (patch) | |
| tree | 9f72d4163d67a9c6526c14c17b8aa33f8ce5f89c | |
| parent | Merge branch 'feature/experimental' (diff) | |
| download | paper2remarkable-f2981af016370e04ec1e8cc886a64b9017970210.tar.gz paper2remarkable-f2981af016370e04ec1e8cc886a64b9017970210.zip | |
Bump version and update changelogv0.8.1
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | README.md | 18 | ||||
| -rw-r--r-- | paper2remarkable/__version__.py | 2 |
3 files changed, 16 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f4867fb..5df04eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Version 0.8.1 + +* Add experimental fix for lazy loaded images in HTML + ## Version 0.8.0 * Add provider for Nature @@ -152,24 +152,28 @@ flags are self-explanatory, but if you'd like more information, please open an issue [on GitHub][github-url]. ``` -usage: p2r [-h] [-b] [-c] [-d] [-n] [-p REMARKABLE_DIR] [-r] [-k] [-v] [-V] - [--filename FILENAME] [--gs GS] [--pdftoppm PDFTOPPM] [--pdftk PDFTK] - [--qpdf QPDF] [--rmapi RMAPI] +usage: p2r [-h] [-b] [-c] [-d] [-e] [-n] [-p REMARKABLE_DIR] [-r] [-k] [-v] + [-V] [--filename FILENAME] [--gs GS] [--pdftoppm PDFTOPPM] + [--pdftk PDFTK] [--qpdf QPDF] [--rmapi RMAPI] input [input ...] -Paper2reMarkable version 0.7.3 +Paper2reMarkable version 0.8.1 positional arguments: - input One or more URLs to a paper or paths to local PDF files + input One or more URLs to a paper or paths to local PDF + files optional arguments: -h, --help show this help message and exit -b, --blank Add a blank page after every page of the PDF -c, --center Center the PDF on the page, instead of left align -d, --debug debug mode, doesn't upload to reMarkable - -n, --no-upload don't upload to the reMarkable, save the output in current working dir + -e, --experimental enable experimental features + -n, --no-upload don't upload to the reMarkable, save the output in + current working dir -p REMARKABLE_DIR, --remarkable-path REMARKABLE_DIR - directory on reMarkable to put the file (created if missing, default: /) + directory on reMarkable to put the file (created if + missing, default: /) -r, --right Right align so the menu doesn't cover it -k, --no-crop Don't crop the pdf file -v, --verbose be verbose diff --git a/paper2remarkable/__version__.py b/paper2remarkable/__version__.py index 2b9f826..090df0c 100644 --- a/paper2remarkable/__version__.py +++ b/paper2remarkable/__version__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (0, 8, 0) +VERSION = (0, 8, 1) __version__ = ".".join(map(str, VERSION)) |
