-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` | ||
|