Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/0a44744c5ec1ae124ccc488877bf988ae158460a?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
39 additions and
1 deletions
@ -186,3 +186,17 @@
.icon(@exclamation-sign);
color : @brand-danger;
}
.icon-nd-standard-series:before {
font-weight: bold;
content: 'S';
}
.icon-nd-daily-series:before {
.icon(@calendar-empty);
}
.icon-nd-anime:before {
font-weight: bold;
content: 'A';
}
@ -216,6 +216,27 @@ define(
tooltip : 'Ended Only' ,
icon : 'icon-stop' ,
callback : this . _setFilter
} ,
{
key : 'standard' ,
title : '' ,
tooltip : 'Standard Series Only' ,
icon : 'icon-nd-standard-series' ,
callback : this . _setFilter
} ,
{
key : 'daily' ,
title : '' ,
tooltip : 'Daily Series Only' ,
icon : 'icon-nd-daily-series' ,
callback : this . _setFilter
} ,
{
key : 'anime' ,
title : '' ,
tooltip : 'Anime Only' ,
icon : 'icon-nd-anime' ,
callback : this . _setFilter
}
]
} ;
@ -54,7 +54,10 @@ define(
'all' : [ null , null ] ,
'continuing' : [ 'status' , 'continuing' ] ,
'ended' : [ 'status' , 'ended' ] ,
'monitored' : [ 'monitored' , true ]
'monitored' : [ 'monitored' , true ] ,
'standard' : [ 'seriesType' , 'standard' ] ,
'daily' : [ 'seriesType' , 'daily' ] ,
'anime' : [ 'seriesType' , 'anime' ]
} ,
sortMappings : {