From 2c97fdd1ae69e190a19425bc7f4479e7c19a3c64 Mon Sep 17 00:00:00 2001 From: jlarriba Date: Wed, 1 Jul 2020 13:06:44 +0200 Subject: [PATCH] README --- README.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c19b826..733044a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,30 @@ # astounding -A multiplatform GUI for the reMarkable tablet +A multiplatform GUI for the reMarkable tablet, it tries to address the lack of a GUI to manage the book collection via the reMarkable Cloud, so Linux is its primary target. + +Currently it is able to upload epub and pdf, export pdf (without annotations), display books and folders, navigate and delete books and folders + +Double click on each book will export the pdf. Double click on each folder will open it. For the moment, only uploads to the root folder is allowed. + +# Usage +Java 11 is required to be installed. OpenJDK11 will do fine. + +Download the corresponding release from the [Github releases page](https://github.com/jlarriba/astounding/releases). + +``` +$ java -jar astounding.jar +``` + +# Build +Building requires Java 11. OpenJFX is downloaded via Maven so no need to install the SDK. + + ``` + $ mvn clean package + $ mvn javafx:run + ``` + +If the fatjar wants to be build, use the fatJar profile while building: + +``` +$ mvn clean package -PfatJar +``` +