68 lines
3.9 KiB
Markdown
Raw Normal View History

# Tachidesk
2021-01-22 11:13:25 +03:30
A free and open source manga reader that runs extensions built for [Tachiyomi](https://tachiyomi.org/).
2021-01-22 11:25:11 +03:30
Tachidesk is as multi-platform as you can get. Any platform that runs java and/or has a modern browser can run it.
2021-01-22 00:34:49 +03:30
Ability to read and write Tachiyomi compatible backups and syncing is a planned feature.
## How do I run the thing?
2021-01-23 00:23:40 +03:30
#### Prerequisites
You should have java 8 or newer and a modern browser installed. Also an internet connection is required as almost everything this app does is downloading stuff.
2021-01-22 00:23:53 +03:30
#### Running pre-built jar packages
Download the latest (or a working more stable) release from [the repo branch](https://github.com/AriaMoradi/Tachidesk/tree/repo) or obtain it from [the releases section](https://github.com/AriaMoradi/Tachidesk/releases).
2021-01-22 00:23:53 +03:30
2021-01-22 01:40:47 +03:30
Double click on the jar file or run `java -jar Tachidesk-latest.jar` or `java -jar Tachidesk-vX.Y.Z-rxxx.jar`
2021-01-22 00:23:53 +03:30
The server will be running on `http://localhost:4567` open this url in your browser.
#### Running on Docker
Check [arbuilder's repo](https://github.com/arbuilder/Tachidesk-docker) out for more details and the dockerfile.
2021-01-23 00:23:40 +03:30
2021-01-22 00:23:53 +03:30
## Building from source
### Get Android stubs jar
2021-01-19 21:40:44 +03:30
#### Manual download
Download [android.jar](https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar) and put it under `AndroidCompat/lib`.
#### Building from source(needs `bash`, `curl`, `base64`, `zip` to work)
2021-01-22 00:23:53 +03:30
Run `scripts/getAndroid.sh` from project's root directory to download and rebuild the jar file from Google's repository.
2021-01-20 03:17:43 +03:30
### building the jar
2021-01-22 01:40:47 +03:30
Run `./gradlew shadowJar` the resulting built jar file will be `server/build/Tachidesk-vX.Y.Z-rxxx.jar`.
2021-01-22 01:45:14 +03:30
## Running for development purposes
2021-01-22 00:23:53 +03:30
### `server` module
Run `./gradlew :server:run -x :webUI:copyBuild --stacktrace` to run the server
### `webUI` module
How to do it is described in `webUI/react/README.md` but for short,
2020-12-24 22:36:39 +03:30
first cd into `webUI/react` then run `yarn` to install the node modules(do this only once)
2020-12-24 15:46:42 +03:30
then `yarn start` to start the client if a new browser window doesn't start automatically,
then open `http://127.0.0.1:3000` in a modern browser. This is a `create-react-app` project
and supports HMR and all the other goodies you'll need.
2021-01-22 00:23:53 +03:30
## Is this application usable? Should I test it?
2021-01-23 00:23:40 +03:30
If you'd ask me, I'd tell you If you want to read your manga **online** from tachiyomi or in one place and bypass all the ads, you can use Tachidesk.
2021-01-23 00:28:32 +03:30
There are almost no quality of life features, including no library, no downloading for offline enjoyment and sadly no MangaDex search.
2021-01-23 00:23:40 +03:30
Anyways, for more info checkout [finished milestone #1](https://github.com/AriaMoradi/Tachidesk/issues/2) and [milestone #2](https://github.com/AriaMoradi/Tachidesk/projects/1) to see what's implemented.
2020-12-25 03:35:23 +03:30
## How does it work?
This project has two components:
1. **server:** contains the implementation of [tachiyomi's extensions library](https://github.com/tachiyomiorg/extensions-lib) and uses an Android compatibility library to run apk extensions. All this concludes to serving a REST API to `webUI`.
2. **webUI:** A react SPA project that works with the server to do the presentation.
2021-01-21 13:41:03 +03:30
## Credit
2021-01-21 13:58:49 +03:30
The `AndroidCompat` module and `scripts/getAndroid.sh` was originally developed by [@null-dev](https://github.com/null-dev) for [TachiWeb-Server](https://github.com/Tachiweb/TachiWeb-server) and is licensed under `Apache License Version 2.0`.
2021-01-21 13:42:17 +03:30
Parts of [tachiyomi](https://github.com/tachiyomiorg/tachiyomi) is adopted into this codebase, also licensed under `Apache License Version 2.0`.
2021-01-21 13:41:03 +03:30
2021-01-26 23:11:20 +03:30
Changes to both codebases is licensed under `MPL v. 2.0` as the rest of this project.
2021-01-26 23:07:54 +03:30
2021-01-26 23:02:04 +03:30
You can obtain a copy of the license from http://www.apache.org/licenses/LICENSE-2.0
## License
2021-01-21 13:58:15 +03:30
Copyright (C) 2020-2021 Aria Moradi and contributors
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
2021-01-03 03:16:17 +03:30
file, You can obtain one at http://mozilla.org/MPL/2.0/.