Increased version number

pull/87/head 1.2.4
desimaniac 6 years ago
parent 4b30d72d2c
commit a5066bc81b

@ -950,10 +950,10 @@ Options:
Commands: Commands:
movie Add a single movie to Radarr. movie Add a single movie to Radarr.
movies Add multiple movies to Radarr. movies Add multiple movies to Radarr.
run Run in automatic mode. run Run Traktarr in automatic mode.
show Add a single show to Sonarr. show Add a single show to Sonarr.
shows Add multiple shows to Sonarr. shows Add multiple shows to Sonarr.
trakt_authentication Authenticate traktarr. trakt_authentication Authenticate Traktarr.
``` ```
### Movie (Single Movie) ### Movie (Single Movie)

@ -18,7 +18,7 @@ notify = None
# Click # Click
@click.group(help='Add new shows & movies to Sonarr/Radarr from Trakt.') @click.group(help='Add new shows & movies to Sonarr/Radarr from Trakt.')
@click.version_option('1.2.3', prog_name='traktarr') @click.version_option('1.2.4', prog_name='Traktarr')
@click.option( @click.option(
'--config', '--config',
envvar='TRAKTARR_CONFIG', envvar='TRAKTARR_CONFIG',
@ -45,7 +45,7 @@ def app(config, logfile):
# Load logger # Load logger
from misc.log import logger from misc.log import logger
log = logger.get_logger('traktarr') log = logger.get_logger('Traktarr')
# Load notifications # Load notifications
from notifications import Notifications from notifications import Notifications
@ -59,13 +59,13 @@ def app(config, logfile):
# Trakt OAuth # Trakt OAuth
############################################################ ############################################################
@app.command(help='Authenticate traktarr.') @app.command(help='Authenticate Traktarr.')
def trakt_authentication(): def trakt_authentication():
from media.trakt import Trakt from media.trakt import Trakt
trakt = Trakt(cfg) trakt = Trakt(cfg)
if trakt.oauth_authentication(): if trakt.oauth_authentication():
log.info("Authentication information saved; please restart the application") log.info("Authentication information saved. Please restart the application.")
exit() exit()
@ -807,7 +807,7 @@ def automatic_movies(add_delay=2.5, sort='votes', no_search=False, notifications
return return
@app.command(help='Run in automatic mode.') @app.command(help='Run Traktarr in automatic mode.')
@click.option('--add-delay', '-d', default=2.5, help='Seconds between each add request to Sonarr / Radarr.', @click.option('--add-delay', '-d', default=2.5, help='Seconds between each add request to Sonarr / Radarr.',
show_default=True) show_default=True)
@click.option('--sort', '-s', default='votes', type=click.Choice(['votes', 'rating', 'release']), @click.option('--sort', '-s', default='votes', type=click.Choice(['votes', 'rating', 'release']),
@ -896,7 +896,7 @@ if __name__ == "__main__":
print("") print("")
f = Figlet(font='graffiti') f = Figlet(font='graffiti')
print(f.renderText('traktarr')) print(f.renderText('Traktarr'))
print(""" print("""
######################################################################### #########################################################################

Loading…
Cancel
Save