From 1bdf321d81a733a4ae9547f655501ddf92de0343 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Sun, 23 Feb 2020 16:10:47 +0000 Subject: Bump version and update changelog and readme --- CHANGELOG.md | 8 ++++++++ README.md | 6 ++++-- paper2remarkable/__version__.py | 2 +- 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)) -- cgit v1.2.3