Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upper #80

Merged
merged 6 commits into from
Aug 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 0 additions & 54 deletions .prospector.yml

This file was deleted.

23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# TorrentFileQt

## Version 0.3.6

- Edits throughout the full source code.
- Added the style manager class for qss
- included two menu options that control font size
- made changing themes and adding new themese easier
- changed the torrent file creator to run in a Qthread.
- added a status bar to show runtime messages
- adjusted the widget sizes on the recheck tab
- changed the table widgets to be QToolBars in the editor tab
- fixed all of the issues with unit tests
- switched from prospector to tox for CI and DevOps
- added `__main__.py` and the entry point.
- updated manifest
- updated packaging information and switched to pyproject.toml
- other minor bug fixes

* * *

## Version 0.3.0

- Added more fields the to "Edit" tab.
Expand All @@ -11,7 +30,7 @@
- improved updated Icons and readme information.
- other bug fixes.

----------
* * *

## Version 0.2.0

Expand All @@ -23,7 +42,7 @@
- docstrings
- screenshots for reame

----------
* * *

## Version 0.1.0

Expand Down
4 changes: 0 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
include CHANGELOG.md
include LICENSE
include Makefile
include requirements.txt


graft torrentfileQt


recursive-include torrentfileQt *
recursive-include torrentfileQt/assets *
global-exclude *.py[cod]
prune **/__pycache__
33 changes: 17 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

![torrentfileQt.png](./assets/torrentfileQt.png)

---------
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/065ca999772a434ba1aadae05f8b6bc7)](https://www.codacy.com/gh/alexpdev/torrentfileQt/dashboard?utm_source=github.com&utm_medium=referral&utm_content=alexpdev/torrentfileQt&utm_campaign=Badge_Grade)
* * *

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/065ca999772a434ba1aadae05f8b6bc7)](https://www.codacy.com/gh/alexpdev/torrentfileQt/dashboard?utm_source=github.com&utm_medium=referral&utm_content=alexpdev/torrentfileQt&utm_campaign=Badge_Grade)
[![codecov](https://codecov.io/gh/alexpdev/torrentfileQt/branch/main/graph/badge.svg?token=S5Q9CRD6C2)](https://codecov.io/gh/alexpdev/torrentfileQt)
![PyPI - License](https://img.shields.io/pypi/l/torrentfileQt?color=orange&style=plastic)
![PyPI - Downloads](https://img.shields.io/pypi/dw/torrentfileQt?style=plastic)
Expand All @@ -15,39 +16,39 @@ TorrentFileQt is a GUI Frontend for [TorrentFile CLI](https://github.com/alexpde

## Features

- Create .torrent files
- Display detailed information for a .torrent file
- Bittorrent v1, v2 and hybrid .torrent files supported
- Check if a .torrent file contents are in filesystem
- Check progress or percentage complete for .torrent file
- Edit torrent files.
- Create .torrent files
- Display detailed information for a .torrent file
- Bittorrent v1, v2 and hybrid .torrent files supported
- Check if a .torrent file contents are in filesystem
- Check progress or percentage complete for .torrent file
- Edit torrent files.

## Requirements

- Pyside6
- torrentfile
- Pyside6
- torrentfile

## ScreenShots

![createtorrent.png](./assets/screenshots/create-tab.png)

---------
* * *

![checktorrent.png](./assets/screenshots/recheck-tab.png)

---------
* * *

![edittorrent.png](./assets/screenshots/edit-tab.png)

---------
* * *

![torrentinfo.png](./assets/screenshots/info-tab.png)

---------
* * *

## Install

- From git:
- From git:

```bash
git clone https://github.com/alexpdev/torrentfileQt.git
Expand All @@ -57,7 +58,7 @@ pip install .
torrentfileQt
```

- From PyPi
- From PyPi

```bash
pip install torrentfileQt
Expand Down
Loading