mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
Merge branch 'release-11.8.1'
This commit is contained in:
commit
4fed4d8f51
6 changed files with 15 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 11.8.0
|
||||
current_version = 11.8.1
|
||||
commit = True
|
||||
tag = False
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
nzbToMedia v11.8.0
|
||||
nzbToMedia v11.8.1
|
||||
==================
|
||||
|
||||
Provides an [efficient](https://github.com/clinton-hall/nzbToMedia/wiki/Efficient-on-demand-post-processing) way to handle postprocessing for [CouchPotatoServer](https://couchpota.to/ "CouchPotatoServer") and [SickBeard](http://sickbeard.com/ "SickBeard") (and its [forks](https://github.com/clinton-hall/nzbToMedia/wiki/Failed-Download-Handling-%28FDH%29#sick-beard-and-its-forks))
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
Change_LOG / History
|
||||
|
||||
V11.8.1 12/29/2018
|
||||
|
||||
Fix cleanup for nzbToMedia installed as a git submodule
|
||||
|
||||
V11.8.0 12/28/2018
|
||||
|
||||
Add version information
|
||||
|
|
|
@ -109,6 +109,7 @@ def clean(*paths):
|
|||
with WorkingDirectory(module_path()) as cwd:
|
||||
if cwd.working_directory != cwd.original_directory:
|
||||
print('Changing to directory:', cwd.working_directory)
|
||||
|
||||
print('\n-- Cleaning bytecode --')
|
||||
try:
|
||||
result = clean_bytecode()
|
||||
|
@ -116,7 +117,8 @@ def clean(*paths):
|
|||
print(error)
|
||||
else:
|
||||
print(result or 'No bytecode to clean')
|
||||
if paths:
|
||||
|
||||
if paths and os.path.exists('.git'):
|
||||
print('\n-- Cleaning folders: {} --'.format(paths))
|
||||
try:
|
||||
result = clean_folders(*paths)
|
||||
|
@ -124,8 +126,12 @@ def clean(*paths):
|
|||
print(error)
|
||||
else:
|
||||
print(result or 'No folders to clean\n')
|
||||
else:
|
||||
print('Directory is not a git repository')
|
||||
|
||||
if cwd.working_directory != cwd.original_directory:
|
||||
print('Returning to directory: ', cwd.original_directory)
|
||||
|
||||
print('\n-- Cleanup finished --\n')
|
||||
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ from core.nzbToMediaUtil import (
|
|||
from core.transcoder import transcoder
|
||||
from core.databases import mainDB
|
||||
|
||||
__version__ = '11.8.0'
|
||||
__version__ = '11.8.1'
|
||||
|
||||
# Client Agents
|
||||
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']
|
||||
|
|
2
setup.py
2
setup.py
|
@ -18,7 +18,7 @@ def read(*names, **kwargs):
|
|||
|
||||
setup(
|
||||
name='nzbToMedia',
|
||||
version='11.8.0',
|
||||
version='11.8.1',
|
||||
license='GPLv3',
|
||||
description='Efficient on demand post processing',
|
||||
long_description="""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue