Skip to content

Commit 1c8ff6c

Browse files
committed
Bump Version 0.3.0
1 parent e73c121 commit 1c8ff6c

File tree

12 files changed

+53
-29
lines changed

12 files changed

+53
-29
lines changed

.markdownlint.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

.prospector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
strictness: high
2-
autodetect: true
2+
autodetect: false
33
doc-warnings: true
44
test-warnings: true
55
member-warnings: true

CHANGELOG.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
# TorrentFileQt
22

3-
## Version 0.2.0
3+
## Version 0.3.0
4+
5+
- Added more fields the to "Edit" tab.
6+
- Added Drag and Drop for all tabs that only deal with torrent files.
7+
- Minor changes to GUI style look
8+
- Added support for creating magnet links
9+
- Improvements and Additions to unit testing suite.
10+
- Support for torrentfile version 0.7.0
11+
- improved updated Icons and readme information.
12+
- other bug fixes.
13+
14+
----------
415

5-
### Fixed
16+
## Version 0.2.0
617

718
- Bug Fixes
819
- lots of bug fixes
920
- upgraded support to newest torrentfile version 0.5.0
10-
11-
### Added
12-
1321
- pre-compiled executables for window.
1422
- Check Tab for re-checking torrent download completion
1523
- docstrings
@@ -19,8 +27,6 @@
1927

2028
## Version 0.1.0
2129

22-
### Added
23-
2430
- GUI front end to TorrentFile CLI
2531
- Unit testing framework
2632
- Initial code commits

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,15 @@ coverage: ## run coverage on project
8585
bash codacy.sh report -r coverage.xml
8686

8787
test: ## run tests quickly with the default Python
88+
pip install --upgrade --force-reinstall --no-cache -rrequirements.txt
8889
pytest tests --cov=torrentfileQt --cov=tests
8990

90-
push: clean lint coverage ## push changes to remote
91+
push: clean lint coverage test ## push changes to remote
9192
git add .
9293
git commit -m "$m"
9394
git push
9495

95-
release: clean test ## release to pypi
96+
release: clean test lint ## release to pypi
9697
python setup.py sdist bdist_wheel bdist_egg
9798
twine upload dist/*
9899

assets/icons/down-arrow16.png

-1.68 KB
Binary file not shown.

assets/icons/favicon.png

-30.8 KB
Binary file not shown.

assets/torrentfile.png

-29.5 KB
Binary file not shown.

coverage.xml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<coverage version="6.3.2" timestamp="1648616526971" lines-valid="1970" lines-covered="1969" line-rate="0.9995" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
2+
<coverage version="6.3.2" timestamp="1648619881940" lines-valid="1973" lines-covered="1973" line-rate="1" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
33
<!-- Generated by coverage.py: https://coverage.readthedocs.io -->
44
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
55
<sources>
@@ -703,17 +703,20 @@
703703
</class>
704704
</classes>
705705
</package>
706-
<package name="torrentfileQt" line-rate="0.9992" branch-rate="0" complexity="0">
706+
<package name="torrentfileQt" line-rate="1" branch-rate="0" complexity="0">
707707
<classes>
708708
<class name="__init__.py" filename="torrentfileQt/__init__.py" complexity="0" line-rate="1" branch-rate="0">
709709
<methods/>
710710
<lines>
711711
<line number="19" hits="1"/>
712712
<line number="21" hits="1"/>
713713
<line number="23" hits="1"/>
714-
<line number="24" hits="1"/>
714+
<line number="25" hits="1"/>
715715
<line number="26" hits="1"/>
716-
<line number="27" hits="1"/>
716+
<line number="29" hits="1"/>
717+
<line number="30" hits="1"/>
718+
<line number="32" hits="1"/>
719+
<line number="33" hits="1"/>
717720
</lines>
718721
</class>
719722
<class name="checkTab.py" filename="torrentfileQt/checkTab.py" complexity="0" line-rate="1" branch-rate="0">
@@ -1249,7 +1252,7 @@
12491252
<line number="409" hits="1"/>
12501253
</lines>
12511254
</class>
1252-
<class name="editorTab.py" filename="torrentfileQt/editorTab.py" complexity="0" line-rate="0.9952" branch-rate="0">
1255+
<class name="editorTab.py" filename="torrentfileQt/editorTab.py" complexity="0" line-rate="1" branch-rate="0">
12531256
<methods/>
12541257
<lines>
12551258
<line number="19" hits="1"/>
@@ -1436,7 +1439,7 @@
14361439
<line number="292" hits="1"/>
14371440
<line number="293" hits="1"/>
14381441
<line number="294" hits="1"/>
1439-
<line number="295" hits="0"/>
1442+
<line number="295" hits="1"/>
14401443
<line number="297" hits="1"/>
14411444
<line number="299" hits="1"/>
14421445
<line number="300" hits="1"/>

package.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
{"name": "torrentfileqt", "displayName": "TorrentfileQt", "version": "0.2.9", "description": "GUI torrentfile creator.", "repository": {"type": "git", "url": "git+https://github.com/alexpdev/TorrentfileQt.git"}, "keywords": ["GUI", "Bittorrent", "metafile"], "author": "alexpdev", "url": "https://github.com/alexpdev/torrentfileQt", "email": "alexpdev@protonmail.com", "license": "Apache", "bugs": {"url": "https://github.com/alexpdev/TorrentfileQt/issues"}, "homepage": "https://github.com/alexpdev/TorrentfileQt#readme"}
1+
{
2+
"name": "torrentfileqt",
3+
"displayName": "TorrentfileQt",
4+
"version": "0.3.0",
5+
"description": "GUI torrentfile creator.",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/alexpdev/TorrentfileQt.git"
9+
},
10+
"keywords": ["GUI", "Bittorrent", "metafile"],
11+
"author": "alexpdev",
12+
"url": "https://github.com/alexpdev/torrentfileQt",
13+
"email": "alexpdev@protonmail.com",
14+
"license": "Apache",
15+
"bugs": {
16+
"url": "https://github.com/alexpdev/TorrentfileQt/issues"
17+
},
18+
"homepage": "https://github.com/alexpdev/TorrentfileQt#readme"
19+
}

tests/test_edittab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ def test_editor_table_fields(wind, ttorrent):
111111
if txt in ["httpseeds", "url-list", "announce-list"]:
112112
wig, found = table.cellWidget(i, 1), found + 1
113113
for url in ['url8', 'url9']:
114-
wig.line_edit.setText(url)
115114
wig.add_button.click()
115+
wig.line_edit.setText(url)
116116
wig.combo.focusOutEvent(None)
117117
lst = [wig.combo.itemText(j) for j in range(wig.combo.count())]
118118
assert len([i for i in ['url8', 'url9'] if i in lst]) == 2

0 commit comments

Comments
 (0)