diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-04-08 21:21:52 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-04-08 21:21:52 +0100 |
| commit | 90e97824287c192d3d99cae2981cbd35905cb91d (patch) | |
| tree | a4324e320239feeb3049fc4d4334007f1fb7d6da | |
| parent | Be more robust against spaces in pdf file (diff) | |
| download | paper2remarkable-90e97824287c192d3d99cae2981cbd35905cb91d.tar.gz paper2remarkable-90e97824287c192d3d99cae2981cbd35905cb91d.zip | |
Bump version and update changelogv0.6.1
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | paper2remarkable/__version__.py | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 924abb0..cd62d25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Version 0.6.1 + +* Bugfix that makes removing the arXiv stamp more robust. + ## Version 0.6.0 * The Dockerfile has been updated to use a more recent version of Cairo @@ -216,6 +216,10 @@ docker run --rm -v "${HOME}/.rmapi:/home/user/.rmapi:rw" p2r -v https://arxiv.or docker run --rm -v "${HOME}/.rmapi:/home/user/.rmapi:rw" -v "$(pwd):/home/user:r" p2r -v localfile.pdf ``` +For transferring local files using the Docker image, you may find [this helper +function](https://github.com/GjjvdBurg/paper2remarkable/issues/34#issuecomment-610852258) +useful. + You can also create an [alias](http://tldp.org/LDP/abs/html/aliases.html) in your ``~/.bashrc`` file to abstract away the Docker commands: diff --git a/paper2remarkable/__version__.py b/paper2remarkable/__version__.py index ea46c5a..98ffeff 100644 --- a/paper2remarkable/__version__.py +++ b/paper2remarkable/__version__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (0, 6, 0) +VERSION = (0, 6, 1) __version__ = ".".join(map(str, VERSION)) |
