aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-02-23 16:10:47 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-02-23 16:10:47 +0000
commit1bdf321d81a733a4ae9547f655501ddf92de0343 (patch)
tree8cab81a4d44ad1d1eaf72c2950249200e0baacda
parentFix typo (diff)
downloadpaper2remarkable-1bdf321d81a733a4ae9547f655501ddf92de0343.tar.gz
paper2remarkable-1bdf321d81a733a4ae9547f655501ddf92de0343.zip
Bump version and update changelog and readmev0.5.4
-rw-r--r--CHANGELOG.md8
-rw-r--r--README.md6
-rw-r--r--paper2remarkable/__version__.py2
3 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8147f83..fc9d5fe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## Version 0.5.4
+
+* Add the option to not crop the file at all
+ ([#28](https://github.com/GjjvdBurg/paper2remarkable/pull/30)).
+* Add the option to right-align the file so the menu doesn't overlap
+ ([#28](https://github.com/GjjvdBurg/paper2remarkable/pull/31)).
+* Bugfix for validation for the JMLR provider
+
## Version 0.5.3
* Significantly speed up the program
diff --git a/README.md b/README.md
index aa884eb..18753af 100644
--- a/README.md
+++ b/README.md
@@ -63,12 +63,12 @@ Optionally, you can:
Here's the full help of the script:
```text
-usage: p2r [-h] [-b] [-c] [-d] [-n] [-p REMARKABLE_DIR] [-v] [-V]
+usage: p2r [-h] [-b] [-c] [-d] [-n] [-p REMARKABLE_DIR] [-r] [-k] [-v] [-V]
[--filename FILENAME] [--gs GS] [--pdftoppm PDFTOPPM]
[--pdftk PDFTK] [--rmapi RMAPI]
input
-Paper2reMarkable version 0.5.3
+Paper2reMarkable version 0.5.4
positional arguments:
input URL to a paper or the path of a local PDF file
@@ -83,6 +83,8 @@ optional arguments:
-p REMARKABLE_DIR, --remarkable-path REMARKABLE_DIR
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
-V, --version Show version and exit
--filename FILENAME Filename to use for the file on reMarkable
diff --git a/paper2remarkable/__version__.py b/paper2remarkable/__version__.py
index da6d107..28ed0b8 100644
--- a/paper2remarkable/__version__.py
+++ b/paper2remarkable/__version__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-VERSION = (0, 5, 3)
+VERSION = (0, 5, 4)
__version__ = ".".join(map(str, VERSION))