Skip to content

Commit

Permalink
Fixed typo preventing from using indexer in the command line
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabisonfire committed May 12, 2021
1 parent fbc5476 commit fda7a38
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
=== 1.0 ===
- Fixed a minor typo preventing from using indexer parameter in the command line.

=== 0.9 ===
- Added a --download option to grab top result automatically
- Added an `insecure` feature to allow self-signed certificates.
Expand Down
2 changes: 1 addition & 1 deletion raincoat/raincoat.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def set_overrides():
shared.RESULTS_LIMIT = args.limit

if args.indexer is not None:
shared.JACKETT_INDEXER = args.key
shared.JACKETT_INDEXER = args.indexer

# Set default sorting
if args.sort is None:
Expand Down
2 changes: 1 addition & 1 deletion raincoat/shared.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Globals
def init():
global VERSION
VERSION = "0.9"
VERSION = "1.0"
global APP_NAME
APP_NAME = "Raincoat"
global TORRENTS
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def run(self):

setuptools.setup(
name="raincoat-jackett",
version="0.9",
version="1.0",
author="Gabisonfire",
author_email="gabisonfire@github.com",
description="Raincoat is a tool to search torrents using Jackett and send them to your client.",
Expand Down

0 comments on commit fda7a38

Please sign in to comment.