aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-11-17 22:18:34 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-11-17 22:18:34 +0000
commit2c3fea83a36483c0cad1be3a113b6dd256856f31 (patch)
treee0d24c59a8e5d66880273db164b5278594e8ec73
parentMerge branch 'feature/sciencedirect' (diff)
downloadpaper2remarkable-2c3fea83a36483c0cad1be3a113b6dd256856f31.tar.gz
paper2remarkable-2c3fea83a36483c0cad1be3a113b6dd256856f31.zip
Bump version and update changelog and readmev0.8.2
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md5
-rw-r--r--paper2remarkable/__version__.py2
3 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5df04eb..e41c4c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## Version 0.8.2
+
+* Add provider for ScienceDirect
+* Add man page to package
+* Add short flag, -f, for --filename
+
## Version 0.8.1
* Add experimental fix for lazy loaded images in HTML
diff --git a/README.md b/README.md
index 0c7694c..be1879a 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,7 @@ reMarkable from any of the following sources:
* [PMLR](http://proceedings.mlr.press/)
* [PubMed Central](https://www.ncbi.nlm.nih.gov/pmc/)
* [SagePub](https://journals.sagepub.com/)
+* [ScienceDirect](https://www.sciencedirect.com/)
* [SemanticScholar](https://www.semanticscholar.org/)
* [SpringerLink](https://link.springer.com/)
* [Taylor & Francis](https://www.tandfonline.com/)
@@ -148,8 +149,8 @@ Github][github-url].
## Usage
The full help of the script is as follows. Hopefully the various command line
-flags are self-explanatory, but if you'd like more information, please open an
-issue [on GitHub][github-url].
+flags are self-explanatory, but if you'd like more information see the [man
+page](docs/man.md) (``man p2r``) or open an issue [on GitHub][github-url].
```
usage: p2r [-h] [-b] [-c] [-d] [-e] [-n] [-p REMARKABLE_DIR] [-r] [-k] [-v]
diff --git a/paper2remarkable/__version__.py b/paper2remarkable/__version__.py
index 090df0c..6955111 100644
--- a/paper2remarkable/__version__.py
+++ b/paper2remarkable/__version__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-VERSION = (0, 8, 1)
+VERSION = (0, 8, 2)
__version__ = ".".join(map(str, VERSION))