This repository has been archived by the owner on Oct 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
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
4 changed files
with
49 additions
and
3 deletions.
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,34 @@ | ||
# kotatsu-dl | ||
Manga downloader with ui | ||
# Kotatsu-dl | ||
|
||
Cross-platform desktop application to download manga from various services | ||
|
||
![AUR version](https://img.shields.io/aur/version/kotatsu-dl-git) ![License](https://img.shields.io/github/license/nv95/Kotatsu) [![Discord](https://img.shields.io/discord/898363402467045416?color=5865f2&label=discord)](https://discord.gg/NNJ5RgVBC5) | ||
|
||
![Screenshot](metadata/scr1.png) | ||
|
||
### Installation | ||
|
||
#### Arch linux | ||
|
||
Package `kotatsu-dl-git` is available on AUR: | ||
|
||
```shell | ||
yay -S kotatsu-dl-git | ||
``` | ||
|
||
#### Windows or other Linux distro | ||
|
||
Just download an appropriate archive from the [latest release](https://github.com/nv95/kotatsu-dl/releases/latest). | ||
|
||
### License | ||
[![GNU GPLv3 Image](https://www.gnu.org/graphics/gplv3-127x51.png)](http://www.gnu.org/licenses/gpl-3.0.en.html) | ||
|
||
Kotatsu is Free Software: You can use, study share and improve it at your | ||
will. Specifically you can redistribute and/or modify it under the terms of the | ||
[GNU General Public License](https://www.gnu.org/licenses/gpl.html) as | ||
published by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
### Disclaimer | ||
|
||
The developers of this application does not have any affiliation with the content providers available. |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ plugins { | |
} | ||
|
||
group = 'org.koitharu' | ||
version = '0.1' | ||
version = '0.2' | ||
|
||
repositories { | ||
mavenCentral() | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
set -e | ||
rm -rf ./build/libs | ||
./gradlew jar | ||
rm -rf ./build/dist | ||
JAR_FILE=$(find ./build/libs -name '*.jar') | ||
VERSION=$(echo "$JAR_FILE" | grep -o -e "[0-9.]*[0-9]") | ||
mkdir -p ./build/dist/{windows,linux} | ||
cp -p "$JAR_FILE" ./build/dist/windows | ||
cp -p ./kotatsu-dl.bat ./build/dist/windows | ||
cp -p "$JAR_FILE" ./build/dist/linux | ||
cp -p ./kotatsu-dl.sh ./build/dist/linux | ||
tar -czvf "./build/dist/kotatsu-dl-$VERSION-linux.tar.gz" ./build/dist/linux | ||
zip -r "./build/dist/kotatsu-dl-$VERSION-windows.zip" ./build/dist/windows |