From d52eff51eaa24e061095b1807cc543990e888dfa Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Tue, 15 Apr 2014 10:31:42 +0930 Subject: [PATCH] remove braids and quick cleanup. --- .braids | 8 -------- changelog.txt | 16 +++++++++++++--- nzbtomedia/linktastic/.gitignore | 2 -- nzbtomedia/linktastic/README.txt | 19 ------------------- nzbtomedia/linktastic/setup.py | 13 ------------- 5 files changed, 13 insertions(+), 45 deletions(-) delete mode 100644 .braids delete mode 100644 nzbtomedia/linktastic/.gitignore delete mode 100644 nzbtomedia/linktastic/README.txt delete mode 100644 nzbtomedia/linktastic/setup.py diff --git a/.braids b/.braids deleted file mode 100644 index 32de483e..00000000 --- a/.braids +++ /dev/null @@ -1,8 +0,0 @@ ---- -linktastic: - branch: master - remote: master/braid/linktastic - revision: cf644f11cbe26d3d802618977b525135261b7c0f - squashed: true - type: git - url: https://github.com/berkona/linktastic.git diff --git a/changelog.txt b/changelog.txt index 2344c650..d938d209 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ Change_LOG / History -V9.3 XX/04/2014 +V10.0 XX/04/2014 Impacts Torrents Allow Headphones to remove torrents and data after processing. @@ -9,17 +9,27 @@ Added forceClean for outputDir. Works in file permissions prevent CP/SB from mov Ignore .x264 from archive "part" checks. Changed handling of TPB/Pistachitos SB forks. Default is to link/extract here. Disabled by Torrent_NoLink = 1. Changed handling for HeadPhones Now that HeadPhones allows process directory to be defined. - +Restructured Flow and streamlines process Impacts NZBs Fix setting of Mylar config from NZBGet. +Created sheel scripts to nzbTo{App}. All now call the common nzbToMedia.py Impacts All Changes to Couchpotato API for [nosql] added. Keeps aligned with current CouchPotato develop branch. Add Auto Detection of SickBeard Fork. Thanks @echel0n -Added config class, re-coded migratecfg, misc bugfixes and code cleanup. Thanks @echel0n +Added config class, re-coded migratecfg, misc bugfixes and code cleanup. Added dynamic timeout based on directory size. Added process_Method for SickBeard. +Changed configuration migrate process. +Major structure and process re-format. +Improved Manual Call Handling +Now prints github version into log when available. +Changed log location and format. +Added autoUpdate option via git. +All calls now use requests, not urllib. + +Huge Thanks @echel0n V9.2 05/03/2014 diff --git a/nzbtomedia/linktastic/.gitignore b/nzbtomedia/linktastic/.gitignore deleted file mode 100644 index 716671e0..00000000 --- a/nzbtomedia/linktastic/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -build -*.py[oc] diff --git a/nzbtomedia/linktastic/README.txt b/nzbtomedia/linktastic/README.txt deleted file mode 100644 index 7fad24db..00000000 --- a/nzbtomedia/linktastic/README.txt +++ /dev/null @@ -1,19 +0,0 @@ -Linktastic - -Linktastic is an extension of the os.link and os.symlink functionality provided -by the python language since version 2. Python only supports file linking on -*NIX-based systems, even though it is relatively simple to engineer a solution -to utilize NTFS's built-in linking functionality. Linktastic attempts to unify -linking on the windows platform with linking on *NIX-based systems. - -Usage - -Linktastic is a single python module and can be imported as such. Examples: - -# Hard linking src to dest -import linktastic -linktastic.link(src, dest) - -# Symlinking src to dest -import linktastic -linktastic.symlink(src, dest) diff --git a/nzbtomedia/linktastic/setup.py b/nzbtomedia/linktastic/setup.py deleted file mode 100644 index e15cc2b7..00000000 --- a/nzbtomedia/linktastic/setup.py +++ /dev/null @@ -1,13 +0,0 @@ -from distutils.core import setup - -setup( - name='Linktastic', - version='0.1.0', - author='Jon "Berkona" Monroe', - author_email='solipsis.dev@gmail.com', - py_modules=['linktastic'], - url="http://github.com/berkona/linktastic", - license='MIT License - See http://opensource.org/licenses/MIT for details', - description='Truly platform-independent file linking', - long_description=open('README.txt').read(), -)