mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -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]
|
[bumpversion]
|
||||||
current_version = 11.8.0
|
current_version = 11.8.1
|
||||||
commit = True
|
commit = True
|
||||||
tag = False
|
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))
|
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
|
Change_LOG / History
|
||||||
|
|
||||||
|
V11.8.1 12/29/2018
|
||||||
|
|
||||||
|
Fix cleanup for nzbToMedia installed as a git submodule
|
||||||
|
|
||||||
V11.8.0 12/28/2018
|
V11.8.0 12/28/2018
|
||||||
|
|
||||||
Add version information
|
Add version information
|
||||||
|
|
|
@ -109,6 +109,7 @@ def clean(*paths):
|
||||||
with WorkingDirectory(module_path()) as cwd:
|
with WorkingDirectory(module_path()) as cwd:
|
||||||
if cwd.working_directory != cwd.original_directory:
|
if cwd.working_directory != cwd.original_directory:
|
||||||
print('Changing to directory:', cwd.working_directory)
|
print('Changing to directory:', cwd.working_directory)
|
||||||
|
|
||||||
print('\n-- Cleaning bytecode --')
|
print('\n-- Cleaning bytecode --')
|
||||||
try:
|
try:
|
||||||
result = clean_bytecode()
|
result = clean_bytecode()
|
||||||
|
@ -116,7 +117,8 @@ def clean(*paths):
|
||||||
print(error)
|
print(error)
|
||||||
else:
|
else:
|
||||||
print(result or 'No bytecode to clean')
|
print(result or 'No bytecode to clean')
|
||||||
if paths:
|
|
||||||
|
if paths and os.path.exists('.git'):
|
||||||
print('\n-- Cleaning folders: {} --'.format(paths))
|
print('\n-- Cleaning folders: {} --'.format(paths))
|
||||||
try:
|
try:
|
||||||
result = clean_folders(*paths)
|
result = clean_folders(*paths)
|
||||||
|
@ -124,8 +126,12 @@ def clean(*paths):
|
||||||
print(error)
|
print(error)
|
||||||
else:
|
else:
|
||||||
print(result or 'No folders to clean\n')
|
print(result or 'No folders to clean\n')
|
||||||
|
else:
|
||||||
|
print('Directory is not a git repository')
|
||||||
|
|
||||||
if cwd.working_directory != cwd.original_directory:
|
if cwd.working_directory != cwd.original_directory:
|
||||||
print('Returning to directory: ', cwd.original_directory)
|
print('Returning to directory: ', cwd.original_directory)
|
||||||
|
|
||||||
print('\n-- Cleanup finished --\n')
|
print('\n-- Cleanup finished --\n')
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ from core.nzbToMediaUtil import (
|
||||||
from core.transcoder import transcoder
|
from core.transcoder import transcoder
|
||||||
from core.databases import mainDB
|
from core.databases import mainDB
|
||||||
|
|
||||||
__version__ = '11.8.0'
|
__version__ = '11.8.1'
|
||||||
|
|
||||||
# Client Agents
|
# Client Agents
|
||||||
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']
|
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -18,7 +18,7 @@ def read(*names, **kwargs):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='nzbToMedia',
|
name='nzbToMedia',
|
||||||
version='11.8.0',
|
version='11.8.1',
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
description='Efficient on demand post processing',
|
description='Efficient on demand post processing',
|
||||||
long_description="""
|
long_description="""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue