From fda7a38e4bc0fb1dd2754fbb701c668e8e24e2c7 Mon Sep 17 00:00:00 2001 From: Gab Date: Wed, 12 May 2021 15:19:08 -0400 Subject: [PATCH] Fixed typo preventing from using indexer in the command line --- changelog.txt | 3 +++ raincoat/raincoat.py | 2 +- raincoat/shared.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index 6da3d4e..024d826 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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. diff --git a/raincoat/raincoat.py b/raincoat/raincoat.py index db7031e..2c344c2 100644 --- a/raincoat/raincoat.py +++ b/raincoat/raincoat.py @@ -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: diff --git a/raincoat/shared.py b/raincoat/shared.py index 0a84850..2a884cd 100644 --- a/raincoat/shared.py +++ b/raincoat/shared.py @@ -1,7 +1,7 @@ # Globals def init(): global VERSION - VERSION = "0.9" + VERSION = "1.0" global APP_NAME APP_NAME = "Raincoat" global TORRENTS diff --git a/setup.py b/setup.py index 0494453..cb1df6f 100644 --- a/setup.py +++ b/setup.py @@ -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.",