An app for working with your documents in the reMarkable cloud
This project is entirely open source. If you encounter any issues, you can use the GitHub issues to let the contributors know!
An open-source app for working with your documents in the reMarkable cloud
You'll find builds under releases. The executable contains the app and an installer.
Using this app to access your reMarkable cloud may cause reMarkable to take action on your account. So use this app at your own discretion!
The app supports the api completely!
For information on how you can use moss check out the docs
Moss uses extism to support user extensions.
There are several examples available:
A brief instruction how to write your own extensions in the language of your choice can be found at the docs.
Here are some planned extensions We will create!
- Replace PDF function (the origin of this whole project)
- PDF Templates Store (with update support) PLANNED NATIVE SUPPORT
- nyaa.si ebook/pdf download
- Image(s) to PDF import
- Add Image to PDF function (from suggestion)
- Content Store (A hub of verified extensions and notebooks)
- Archiving (Automatically move documents to collection based on certain conditions like a tag or date)
- Aggregated rss news feed
- Wikipedia crawler
This section describes the steps for contributors on how to prepare their work environment
Moss is tested with python 3.9 (but this is no longer a must)
If you want to use your own cloud set it first in the config or in the gui
- Fork this repository and clone it with submodules like
git clone --recursive
- Setup a virtual environment or use the global one, with minimum python version
3.9
- Install the dependencies requirements.txt, rm_lines/requirements.txt, rm_api/requirements.txt
- Install system dependant requirements, from requirements-Linux.txt, requirements-Windows.txt or requirements-macOS.txt respectively
- Run the moss.py file
- Set up your cloud connection
- Wait for the initial sync
- Please note that if you are developing changes to the cache system, all cached files are stored in sync folder
- Please note that if you are adding any non python files they are stored in the
assets
folder - Please note that the use of the Defaults module class is highly recommended when working with files
- Make changes and test a new feature
The look and feel of this feature has to be paper-like - Make your pull request.
- Use the config.json or settings, you can set
debug
+ more totrue
in there! Or use the settings ;)
A few things will be checked
- Different screen resolution support
- Build & platform support
- API compatibility
- etc.