mirror of
https://gitlab.com/mildlyparallel/trashcan.git
synced 2023-04-08 19:00:19 +03:00
fix typo, hide dates on small screen, write about features
This commit is contained in:
11
README.md
11
README.md
@@ -5,6 +5,17 @@
|
||||
`trashcan` -- web based service for indexing scientific papers (or any other
|
||||
documents)
|
||||
|
||||
Features:
|
||||
|
||||
* Single lightweight backend service (C++ application) that can run on
|
||||
Raspberry PI (ver. 2)
|
||||
* Single page web interface. PDF files can be preview in the same browser window.
|
||||
* Documents metadata can be fetched using DOI, ArXiv or ISBN (Google Books)
|
||||
identifiers.
|
||||
* Documents can be categorized using user-defined tags.
|
||||
* Full-text search support. Documents contents is extracted with Apache Tika
|
||||
and indexed using SQLite FTS.
|
||||
|
||||
# Compilation
|
||||
|
||||
Requirements:
|
||||
|
||||
@@ -213,7 +213,7 @@ export default {
|
||||
|
||||
await this.$store.dispatch('papers/update', this.paper);
|
||||
|
||||
await this.update();
|
||||
await this.updatePaper();
|
||||
|
||||
this.saving = false;
|
||||
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
<span v-else>No author</span>
|
||||
</span>
|
||||
|
||||
<span class="ml-2 text--secondary">
|
||||
<span class="ml-2 text--secondary hidden-sm-and-down">
|
||||
Added on {{ moment.unix(paper.created_at).format('ddd, DD MMM YY') }}
|
||||
</span>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user