Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/c3c6c8ac011f2d47cb19bc173111efe821d2e0a4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
50 additions and
11 deletions
@ -9,9 +9,16 @@
< label class = "control-label" > Monitored< / label >
< div class = "controls" >
< div class = "switch ">
< label class = "checkbox toggle well ">
< input type = "checkbox" name = "monitored" / >
< / div >
< p >
< span > Yes< / span >
< span > No< / span >
< / p >
< div class = "btn btn-primary slide-button" > < / div >
< / label >
< span class = "help-inline-checkbox" >
< i class = "icon-question-sign" title = "Should NzbDrone download episodes for this series?" > < / i >
< / span >
@ -22,9 +29,16 @@
< label class = "control-label" > Use Season Folder< / label >
< div class = "controls" >
< div class = "switch ">
< label class = "checkbox toggle well ">
< input type = "checkbox" name = "seasonFolder" / >
< / div >
< p >
< span > Yes< / span >
< span > No< / span >
< / p >
< div class = "btn btn-primary slide-button" > < / div >
< / label >
< span class = "help-inline-checkbox" >
< i class = "icon-question-sign" title = "Should downloaded episodes be stored in season folders?" > < / i >
< / span >
@ -31,9 +31,16 @@
< label class = "control-label" > Use Scene Name< / label >
< div class = "controls" >
< div class = "switch ">
< label class = "checkbox toggle well ">
< input type = "checkbox" name = "downloadClientUseSceneName" / >
< / div >
< p >
< span > Yes< / span >
< span > No< / span >
< / p >
< div class = "btn btn-primary slide-button" > < / div >
< / label >
< span class = "help-inline-checkbox" >
< i class = "icon-question-sign" title = "Use Scene name when adding NZB to queue?" > < / i >
< / span >
@ -5,9 +5,16 @@
< label class = "control-label" > Backlog Searching< / label >
< div class = "controls" >
< div class = "switch ">
< label class = "checkbox toggle well ">
< input type = "checkbox" name = "enableBacklogSearching" / >
< / div >
< p >
< span > Yes< / span >
< span > No< / span >
< / p >
< div class = "btn btn-primary slide-button" > < / div >
< / label >
< span class = "help-inline-checkbox" >
< i class = "icon-question-sign" title = "Should NzbDrone try to download missing episodes automatically?" > < / i >
< i class = "icon-exclamation-sign danger" title = "Enabling backlog searching can use a lot of bandwidth and is not
@ -20,9 +27,16 @@
< label class = "control-label" > Ignore Deleted Episodes< / label >
< div class = "controls" >
< div class = "switch ">
< label class = "checkbox toggle well ">
< input type = "checkbox" name = "autoIgnorePreviouslyDownloadedEpisodes" / >
< / div >
< p >
< span > Yes< / span >
< span > No< / span >
< / p >
< div class = "btn btn-primary slide-button" > < / div >
< / label >
< span class = "help-inline-checkbox" >
< i class = "icon-question-sign" title = "Episodes deleted from disk are automatically ignored in NzbDrone" > < / i >
< / span >
@ -17,6 +17,7 @@ define(['app', 'Settings/Naming/NamingModel'], function () {
} ,
onRender : function ( ) {
//TODO: Move this to a mixin
this . ui . tooltip . tooltip ( { placement : 'right' } ) ;
} ,
@ -109,13 +109,16 @@ define([
initialize : function ( options ) {
this . settings = options . settings ;
this . namingSettings = new NzbDrone . Settings . Naming . NamingModel ( ) ;
this . namingSettings . fetch ( ) ;
if ( options . action ) {
this . action = options . action . toLowerCase ( ) ;
}
} ,
onRender : function ( ) {
this . naming . show ( new NzbDrone . Settings . Naming . NamingView ( {model : this . settings } )) ;
this . naming . show ( new NzbDrone . Settings . Naming . NamingView ( )) ;
this . quality . show ( new NzbDrone . Settings . Quality . QualityLayout ( { settings : this . settings } ) ) ;
this . indexers . show ( new NzbDrone . Settings . Indexers . IndexersView ( { model : this . settings } ) ) ;
this . downloadClient . show ( new NzbDrone . Settings . DownloadClient . DownloadClientView ( { model : this . settings } ) ) ;