Tool for extracting some info from extension APKs.
Go to file
2021-01-20 03:17:43 +03:30
AndroidCompat android support! thanks to TachiWeb devs. 2021-01-02 04:57:20 +03:30
gradle/wrapper initial commit, eu.kanade.tachiyomi.srource packge build works 2020-12-23 17:52:05 +03:30
scripts android support! thanks to TachiWeb devs. 2021-01-02 04:57:20 +03:30
server add fatJar 2021-01-20 03:05:40 +03:30
webUI add fatJar 2021-01-20 03:05:40 +03:30
.gitattributes initial commit, eu.kanade.tachiyomi.srource packge build works 2020-12-23 17:52:05 +03:30
.gitignore add fatJar 2021-01-20 03:05:40 +03:30
build.gradle.kts android support! thanks to TachiWeb devs. 2021-01-02 04:57:20 +03:30
gradlew initial commit, eu.kanade.tachiyomi.srource packge build works 2020-12-23 17:52:05 +03:30
gradlew.bat initial commit, eu.kanade.tachiyomi.srource packge build works 2020-12-23 17:52:05 +03:30
LICENSE add readme and license, rename the server module 2020-12-24 15:31:21 +03:30
README.md Update README.md 2021-01-20 03:17:43 +03:30
settings.gradle.kts android support! thanks to TachiWeb devs. 2021-01-02 04:57:20 +03:30

Tachidesk

A not so much port of Tachiyomi to the web (and later Electron for the desktop experience)!

This project has two components:

  1. server: contains some of the original Tachiyomi code and serves a REST API
  2. webUI: A react project that works with the server to do the presentation

How do I run the thing?

Get Android stubs jar(do this only once)

Manual download

Download android.jar and put it under AndroidCompat/lib.

Building from source(needs bash, curl, base64, zip to work)

run scripts/getAndroid.sh from project's root directory to download and rebuild the jar file from Google's repository.

building the jar

run ./gradlew :server:fatJar the resulting jar file will be server/build/server-1.0-all.jar. Simply double click on it or run java -jar server-1.0-all.jar. The server will be running on http://localhost:4567 open this url in your browser.

running for development purposes

The Server

run ./gradlew :server:run -x :webUI:yarn_build --stacktrace to run the server

the webUI

how to do it is described in webUI/react/README.md but for short, first cd into webUI/react then run yarn to install the node modules(do this only once) 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.

Can I use this application?

Checkout the state of project to see what's implemented.

License

Copyright (C) 2020 Aria Moradi

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
file, You can obtain one at http://mozilla.org/MPL/2.0/.