aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--README.md6
-rw-r--r--paper2remarkable/__version__.py2
3 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 79ea620..a888340 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## Version 0.5.0
+
+* Add support for articles from the web using the ``--html`` flag
+ ([#23](https://github.com/GjjvdBurg/paper2remarkable/pull/23))
+* Add ``--version`` command to command line interface
+* Fix cropping bug that resulted in occassional rotated pages
+
## Version 0.4.6
* Add support for older arXiv URL scheme
diff --git a/README.md b/README.md
index 1429483..b12dbf6 100644
--- a/README.md
+++ b/README.md
@@ -61,18 +61,19 @@ Optionally, you can:
Here's the full help of the script:
```text
-usage: p2r [-h] [-b] [-c] [-d] [-n] [-p REMARKABLE_DIR] [-v]
+usage: p2r [-h] [-t] [-b] [-c] [-d] [-n] [-p REMARKABLE_DIR] [-v] [-V]
[--filename FILENAME] [--gs GS] [--pdfcrop PDFCROP] [--pdftk PDFTK]
[--rmapi RMAPI]
input
-Paper2reMarkable version 0.4.0
+Paper2reMarkable version 0.5.0
positional arguments:
input URL to a paper or the path of a local PDF file
optional arguments:
-h, --help show this help message and exit
+ -t, --html URL is to a HTML article instead of a PDF
-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
@@ -82,6 +83,7 @@ optional arguments:
directory on reMarkable to put the file (created if
missing, default: /)
-v, --verbose be verbose
+ -V, --version Show version and exit
--filename FILENAME Filename to use for the file on reMarkable
--gs GS path to gs executable (default: gs)
--pdfcrop PDFCROP path to pdfcrop executable (default: pdfcrop)
diff --git a/paper2remarkable/__version__.py b/paper2remarkable/__version__.py
index 6540db2..7f3b8c6 100644
--- a/paper2remarkable/__version__.py
+++ b/paper2remarkable/__version__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-VERSION = (0, 4, 6)
+VERSION = (0, 5, 0)
__version__ = ".".join(map(str, VERSION))