mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Merge pull request #1057 from JackDandy/feature/ChangeAPI
Fix a couple of devel issues.
This commit is contained in:
commit
cf43fba810
4 changed files with 11 additions and 12 deletions
|
@ -94,6 +94,9 @@
|
|||
|
||||
[develop changelog]
|
||||
|
||||
* Fix API typo and a regression 'archivefirstmatch'
|
||||
* Change removed NZBGet 'remote' PostProcess guidance until it is verified to work
|
||||
|
||||
|
||||
### 0.14.1 (2018-02-03 22:40:00 UTC)
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ This is the best set up to automatically get script updates from SickGear
|
|||
|
||||
#############
|
||||
|
||||
If NZBGet is installed on a different system to SickGear or NZBGet is v16 or earlier, then as a remote/older install,
|
||||
If NZBGet v16 or earlier is installed, then as an older install,
|
||||
|
||||
1) Copy the directory with/or this single script file to path set in NZBGet Settings/PATHS/ScriptDir
|
||||
|
||||
|
@ -19,7 +19,7 @@ If NZBGet is installed on a different system to SickGear or NZBGet is v16 or ear
|
|||
|
||||
3) Click View -> Compact to remove any tick and un hide tips and suggestions
|
||||
|
||||
4) The bare minimum change is the sg_base_path setting
|
||||
4) The bare minimum change is the sg_base_path setting or enter `python -m pip install requests` at admin commandline
|
||||
|
||||
5) Navigate to any named TV category at Settings/Categories, click "Choose" Category.Extensions then Apply SickGear-NG
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#
|
||||
# #############
|
||||
#
|
||||
# If NZBGet is installed on a different system to SickGear or NZBGet is v16 or earlier, then as a remote/older install,
|
||||
# If NZBGet v16 or earlier is installed, then as an older install,
|
||||
#
|
||||
# 1) Copy the directory with/or this single script file to path set in NZBGet Settings/PATHS/ScriptDir
|
||||
#
|
||||
|
@ -24,7 +24,7 @@
|
|||
#
|
||||
# 3) Click View -> Compact to remove any tick and un hide tips and suggestions
|
||||
#
|
||||
# 4) The bare minimum change is the sg_base_path setting
|
||||
# 4) The bare minimum change is the sg_base_path setting or enter `python -m pip install requests` at admin commandline
|
||||
#
|
||||
# 5) Navigate to any named TV category at Settings/Categories, click "Choose" Category.Extensions then Apply SickGear-NG
|
||||
#
|
||||
|
@ -82,10 +82,6 @@
|
|||
# Or, if <span style="font-weight:bold">NZBGet v16 or earlier</span> is installed on the same system as SickGear and
|
||||
# if python <a href="https://pypi.python.org/pypi/requests" title="requests library page" target="_blank">requests library</a>
|
||||
# is not installed, then <strong style="font-weight:bold;color:#128D12 !important">sg_base_path</strong> must be set
|
||||
# <br /><br />
|
||||
# Or, if <span style="font-weight:bold">NZBGet</span> is installed on a different system to SickGear, then python
|
||||
# <a href="https://pypi.python.org/pypi/requests" title="requests library page" target="_blank">requests library</a>
|
||||
# must be installed onto the NZBGet system
|
||||
# </span>
|
||||
# </span>
|
||||
# <span style="display:block;padding:4px;margin-top:3px;background-color:#efefef;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px">
|
||||
|
|
|
@ -2922,8 +2922,8 @@ class CMD_SickGearShow(ApiCall):
|
|||
showDict["network"] = ""
|
||||
showDict["status"] = showObj.status
|
||||
showDict["scenenumbering"] = showObj.is_scene
|
||||
showDict["archivefirstmatch"] = showObj.upgrade_once
|
||||
showDict["irgnorewords"] = showObj.rls_ignore_words
|
||||
showDict["upgrade_once"] = showObj.upgrade_once
|
||||
showDict["ignorewords"] = showObj.rls_ignore_words
|
||||
showDict["requirewords"] = showObj.rls_require_words
|
||||
if self.overview:
|
||||
showDict["overview"] = showObj.overview
|
||||
|
@ -4127,8 +4127,8 @@ class CMD_SickGearShows(ApiCall):
|
|||
"status": curShow.status,
|
||||
"subtitles": curShow.subtitles,
|
||||
"scenenumbering": curShow.is_scene,
|
||||
"archivefirstmatch": curShow.upgrade_once,
|
||||
"irgnorewords": curShow.rls_ignore_words,
|
||||
"upgrade_once": curShow.upgrade_once,
|
||||
"ignorewords": curShow.rls_ignore_words,
|
||||
"requirewords": curShow.rls_require_words,
|
||||
"tag": curShow.tag,
|
||||
"imdb_id": curShow.imdbid,
|
||||
|
|
Loading…
Reference in a new issue