2020-08-27 20:52:17 +03:00
# VueTorrent
2020-05-24 12:50:21 +03:00
2021-01-23 14:24:37 +03:00
The sleekest looking WebUI for qBittorrent made with Vue.js!
2020-05-24 12:50:21 +03:00
> Vue, qBitorrent, Vuetify
## Screenshots
2020-10-30 20:02:10 +03:00
![Desktop screenshot ](https://imgur.com/hpjuVYb.png )
2020-09-28 18:50:24 +03:00
2020-10-30 20:02:10 +03:00
| | | |
| :--------------------------------: | :--------------------------------: | :--------------------------------: |
2020-11-07 15:05:31 +03:00
| ![](https://imgur.com/Zcm98H3.png) | ![](https://imgur.com/OujrH0f.png) | ![](https://imgur.com/3FZTXPL.png) |
2020-10-30 20:02:10 +03:00
| ![](https://imgur.com/QYpNCXs.png) | ![](https://imgur.com/6j5wxhl.png) | ![](https://imgur.com/jnzDKjW.png) |
2020-09-28 18:50:24 +03:00
2020-10-30 20:02:10 +03:00
< p align = "center" >
2021-01-23 14:04:31 +03:00
< img src = "https://imgur.com/K1gJQir.png" width = "300" alt = "Mobile screenshot" >
2020-05-24 12:50:21 +03:00
< / p >
## Installation
2021-01-23 14:24:37 +03:00
### Manual
2020-05-22 14:19:28 +03:00
2021-01-23 14:24:37 +03:00
- Visit the [Releases ](https://github.com/WDaan/VueTorrent/releases ) page!
- Download the latest `release.zip`
- Unzip the downloaded file
- Point your alternate WebUI location to the `vuetorrent` folder in qBittorrent settings
2020-10-18 13:12:16 +03:00
2021-01-23 14:24:37 +03:00
### From Source
2020-10-18 13:12:16 +03:00
2021-01-23 14:24:37 +03:00
- Head to the [`latest_release` ](https://github.com/WDaan/VueTorrent/tree/latest-release ) branch
- Clone branch using
2020-10-30 20:02:10 +03:00
- `git clone --single-branch --branch latest-release https://github.com/WDaan/VueTorrent.git`
2021-01-23 14:24:37 +03:00
- Pull changes every once in a while, using `git pull`
### NGINX install
You can use NGINX reverse proxy to use VueTorrent, without making any change to qBittorrent.
Simply download and unzip the folder to a location (`/opt` here) and paste this code into your NGINX config file.
```nginx
server {
server_name vue.torrent;
location / {
root /opt/vuetorrent/public/;
}
location /api {
proxy_pass http://127.0.0.1:8081;
http2_push_preload on;
client_max_body_size 10M;
}
}
```
2020-05-24 12:50:21 +03:00
## Development
2021-01-23 14:24:37 +03:00
- 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)
2020-10-18 13:41:18 +03:00
2020-05-24 12:50:21 +03:00
## Features
2021-01-23 13:59:02 +03:00
- Torrents
2021-01-23 14:24:37 +03:00
- add / remove / pause / resume / rename torrents
- selectively download files
2021-01-23 13:59:02 +03:00
- view info / trackers / peers / content / tags & categories
2021-01-23 14:24:37 +03:00
- search for new torrents straight from the WebUI!
2021-01-23 13:59:02 +03:00
- search filtering powered by Fuse.js!
2020-10-28 16:44:40 +03:00
- Keyboard shortcuts!
2021-01-23 14:24:37 +03:00
- select all torrents with < kbd > Ctrl</ kbd > -< kbd > A</ kbd >
2020-10-30 20:02:10 +03:00
- delete selected with delete button
2021-01-23 14:24:37 +03:00
- select with < kbd > Ctrl</ kbd > +click or from right-click menu
- < kbd > Shift</ kbd > -click to select from one torrent
2021-01-23 13:59:02 +03:00
- System
2021-01-23 14:24:37 +03:00
- see session stats (down / upload speed, session uploaded / downloaded, free space)
- beautiful transfer graphs
- change the most common settings
2021-01-23 13:59:02 +03: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
2021-01-23 14:24:37 +03:00
- works with qBittorrent v4.2 and later
2020-05-24 12:50:21 +03:00
## Contributing
2020-10-18 13:12:16 +03:00
I'll gladly accept help/pull requests & advice!
2020-05-24 12:50:21 +03:00
2021-01-23 13:59:02 +03:00
## FAQ
### Unacceptable file type, only regular file is allowed.
- Running FreeNAS? check out [#101 ](/../../issues/101 )
- On an older version? check out [#90 ](/../../issues/90 )
- Other? check out [#10 ](/../../issues/10 )
### Disable/Uninstall
2021-01-23 14:24:37 +03:00
2021-01-23 13:59:02 +03:00
When you use VueTorrent, it gets installed as a [PWA ](https://web.dev/progressive-web-apps/ ) so that it can feel more like an app.
2021-01-23 14:24:37 +03:00
2021-01-23 13:59:02 +03:00
If you disable or uninstall VueTorrent, sometimes you'll see fragments of the VueTorrent PWA stick around, due to the nature of how PWAs work.
2021-01-23 14:24:37 +03:00
2021-01-23 13:59:02 +03:00
Here's how to fix it:
2021-01-23 14:24:37 +03:00
- Open up your browser's inspector (on Chrome, click the ︙ menu, then go to More tools > Developer tools)
- Select the "Application" tab. Select the "Clear storage" submenu, and then press the `Clear site data` button.
2021-01-23 13:59:02 +03:00
2020-05-24 12:50:21 +03:00
## Support
2020-10-30 20:02:10 +03:00
- Open up an issue 😛
2020-05-24 12:50:21 +03:00
2020-10-30 20:02:10 +03: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 >
2020-05-24 12:50:21 +03:00
## Credits
2021-01-23 14:24:37 +03:00
- Other alternate WebUI written in Vue [`CzBiX qb-web` ](https://github.com/CzBiX/qb-web )