VueTorrent/README.md

119 lines
5 KiB
Markdown
Raw Normal View History

2020-08-27 19:52:17 +02:00
# VueTorrent
2021-04-16 09:18:50 +02:00
2021-04-15 23:22:47 +09:00
<p>
<img align="right" width="200px" src="https://imgur.com/x6dKNB3.png">
2021-04-15 23:22:47 +09:00
<p>&nbsp;</p>
The sleekest looking WebUI for qBittorrent made with Vue.js!
> Vue, qBittorrent, Vuetify
2021-04-15 23:22:47 +09:00
</p>
<p>&nbsp;</p>
2021-04-15 16:25:10 +02:00
<p>&nbsp;</p>
2021-04-16 09:18:50 +02:00
<p align="center">
<a href="https://img.shields.io/github/stars/WDaan/VueTorrent" alt="stars">
<img src="https://img.shields.io/github/stars/WDaan/VueTorrent" /></a>
<a href="https://img.shields.io/github/forks/WDaan/VueTorrent" alt="Forks">
<img src="https://img.shields.io/github/forks/WDaan/VueTorrent" /></a>
2021-04-22 14:21:32 +02:00
<a href="https://img.shields.io/github/issues/WDaan/VueTorrent" alt="Issues">
2021-04-16 09:18:50 +02:00
<img src="https://img.shields.io/github/issues/WDaan/VueTorrent" /></a>
2021-04-22 14:21:32 +02:00
<a href="https://img.shields.io/github/issues-closed/wdaan/vuetorrent" alt="Issues Closed">
<img src="https://img.shields.io/github/issues-closed/WDaan/VueTorrent" /></a>
<a href="https://img.shields.io/github/issues-pr-closed/wdaan/VueTorrent" alt="Closed PR">
<img src="https://img.shields.io/github/issues-pr-closed/wdaan/VueTorrent" /></a>
2021-04-16 09:18:50 +02:00
<a href="https://img.shields.io/github/v/release/wdaan/vuetorrent" alt="Version">
<img src="https://img.shields.io/github/v/release/wdaan/vuetorrent" /></a>
<a href="https://img.shields.io/github/workflow/status/wdaan/vuetorrent/Test%20Core%20Components">
2021-04-22 14:21:32 +02:00
<img src="https://img.shields.io/github/workflow/status/wdaan/vuetorrent/Test%20Core%20Components" alt="Test Status"></a>
<a href="https://img.shields.io/github/downloads/wdaan/vuetorrent/total">
<img src="https://img.shields.io/github/downloads/wdaan/vuetorrent/total" alt="Downloads"></a>
2021-04-16 09:18:50 +02:00
</p>
## Screenshots
2021-01-29 11:42:20 +01:00
![Desktop screenshot](https://imgur.com/IUkaDnI.png)
2020-09-28 17:50:24 +02:00
2020-10-30 18:02:10 +01:00
| | | |
| :--------------------------------: | :--------------------------------: | :--------------------------------: |
2020-11-07 13:05:31 +01:00
| ![](https://imgur.com/Zcm98H3.png) | ![](https://imgur.com/OujrH0f.png) | ![](https://imgur.com/3FZTXPL.png) |
2020-10-30 18:02:10 +01:00
| ![](https://imgur.com/QYpNCXs.png) | ![](https://imgur.com/6j5wxhl.png) | ![](https://imgur.com/jnzDKjW.png) |
2020-09-28 17:50:24 +02:00
2020-10-30 18:02:10 +01:00
<p align="center">
2021-01-25 10:15:09 +01:00
<img src="https://imgur.com/weOOI7n.png" width="300" alt="Mobile screenshot">
</p>
## Installation
2021-01-23 16:54:37 +05:30
### Manual
2020-05-22 13:19:28 +02:00
2021-01-23 16:54:37 +05:30
- Visit the [Releases](https://github.com/WDaan/VueTorrent/releases) page!
- Download the latest `vuetorrent.zip`
2021-01-23 16:54:37 +05:30
- Unzip the downloaded file
- Point your alternate WebUI location to the `vuetorrent` folder in qBittorrent settings
2020-10-18 12:12:16 +02:00
2021-01-23 16:54:37 +05:30
### From Source
2020-10-18 12:12:16 +02:00
- Head to the [`latest-release`](https://github.com/WDaan/VueTorrent/tree/latest-release) branch
2021-01-23 16:54:37 +05:30
- Clone branch using
2020-10-30 18:02:10 +01:00
- `git clone --single-branch --branch latest-release https://github.com/WDaan/VueTorrent.git`
2021-01-23 16:54:37 +05:30
- Pull changes every once in a while, using `git pull`
### Lazy/Easy
- use [hotio's qbittorrent](https://hotio.dev/containers/qbittorrent/) docker image, that comes pre-packed with VueTorrent.
[Alternative methods - May work for older QBit versions](../../wiki/Alternative_Installation_Methods)
## Development
2021-01-23 16:54:37 +05:30
- Clone the repo
- `npm install`
- `npm run serve`
- `npm run lint` (to format the code)
- `docker-compose up -d` (to start qbittorrent docker => optional, you can edit `vue.config.js` as well)
- You now may open and access the WebUI under localhost with the default username `admin` and password `adminadmin`.
2020-10-18 12:41:18 +02:00
## Features
2021-01-23 11:59:02 +01:00
- Torrents
2021-01-23 16:54:37 +05:30
- add / remove / pause / resume / rename torrents
- selectively download files
2021-01-23 11:59:02 +01:00
- view info / trackers / peers / content / tags & categories
2021-01-23 16:54:37 +05:30
- search for new torrents straight from the WebUI!
2021-01-23 11:59:02 +01:00
- search filtering powered by Fuse.js!
2020-10-28 14:44:40 +01:00
- Keyboard shortcuts!
2021-01-23 16:54:37 +05:30
- select all torrents with <kbd>Ctrl</kbd>-<kbd>A</kbd>
2021-02-19 07:46:23 +01:00
- delete selected torrents with <kbd>delete</kbd>
- select with <kbd>Ctrl</kbd>+click
2021-01-23 16:54:37 +05:30
- <kbd>Shift</kbd>-click to select from one torrent
2021-01-23 11:59:02 +01:00
- System
2021-01-23 16:54:37 +05:30
- see session stats (down / upload speed, session uploaded / downloaded, free space)
- beautiful transfer graphs
- change the most common settings
2021-01-23 11:59:02 +01:00
- Extra features the default WebUI doesn't have
- mobile friendly! (can be installed as a PWA)
- Configureable Dashboard: choose which torrent properties are shown for both busy and completed torrents
2022-07-03 10:44:42 +02:00
- works with qBittorrent v4.4 and later
## Contributing
2020-10-18 12:12:16 +02:00
I'll gladly accept help/pull requests & advice!
[FAQ](../../wiki/FAQ)
2021-01-23 11:59:02 +01:00
## Support
Open up an issue 😛
but before you do that:
- confirm you're on the latest version of VueTorrent
- confirm there is no other issue mentioning the same problem
2020-10-30 18:02:10 +01:00
<a href="https://www.buymeacoffee.com/wdaan"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=wdaan&button_colour=FFDD00&font_colour=000000&font_family=Arial&outline_colour=000000&coffee_colour=ffffff"></a>
## Credits
2022-01-13 16:45:39 +01:00
- [qBittorrent](https://github.com/qbittorrent/qBittorrent)
2021-01-23 16:54:37 +05:30
- Other alternate WebUI written in Vue [`CzBiX qb-web`](https://github.com/CzBiX/qb-web)
2021-04-15 16:26:47 +02:00
- Many thanks [@m4ximuel](https://github.com/m4ximuel) for designing the icon & helping out with the project