Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
Add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Koitharu committed Mar 26, 2022
1 parent 5fbc0a3 commit 8036da6
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 3 deletions.
36 changes: 34 additions & 2 deletions README.md
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.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = 'org.koitharu'
version = '0.1'
version = '0.2'

repositories {
mavenCentral()
Expand Down
Binary file added metadata/scr1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions mkdist.sh
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

0 comments on commit 8036da6

Please sign in to comment.