Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/e671cce0213ece05e9161681ec85b75a87bdec6d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
9 changed files with
14 additions and
47 deletions
@ -132,7 +132,7 @@ CircularProgressBar.defaultProps = {
containerClassName : styles . circularProgressBarContainer ,
size : 60 ,
strokeWidth : 5 ,
strokeColor : colors . prowlarr Yellow ,
strokeColor : colors . prowlarr Orange ,
showProgressText : false
} ;
@ -4,7 +4,8 @@
align-items : center ;
flex : 0 0 auto ;
height : $ headerHeight ;
background-color : # 464b51 ;
background-color : $ prowlarrOrange ;
box-shadow : 0 4px 8px 0 rgba ( 0 , 0 , 0 , 0 . 2 ) , 0 6px 20px 0 rgba ( 0 , 0 , 0 , 0 . 19 ) ;
color : $ white ;
}
@ -16,8 +17,9 @@
}
. appTitle {
display : none ;
color : # 555 ;
font-size : 30px ;
color : # fff
}
. logoFull ,
@ -49,8 +49,8 @@ const links = [
to : '/settings' ,
children : [
{
title : translate ( ' Indexer s') ,
to : '/settings/ indexer s'
title : translate ( ' App s') ,
to : '/settings/ appl icatio ns'
} ,
{
title : translate ( 'Connect' ) ,
@ -65,9 +65,6 @@ class MovieIndexRow extends Component {
render ( ) {
const {
id ,
tmdbId ,
imdbId ,
youTubeTrailerId ,
monitored ,
status ,
title ,
@ -16,20 +16,20 @@ function Settings() {
< PageContentBody >
< Link
className = { styles . link }
to = "/settings/ indexer s"
to = "/settings/ appl icatio ns"
>
{ translate ( 'Indexers' ) }
Applications
< / L i n k >
< div className = { styles . summary } >
{ translate ( 'IndexersSettingsSummary' ) }
Applications and settings to configure how prowlarr interacts with your PVR programs
< / d i v >
< Link
className = { styles . link }
to = "/settings/connect"
>
{ translate ( 'Connect' ) }
Notifications
< / L i n k >
< div className = { styles . summary } >
@ -43,11 +43,6 @@ export const timeFormatOptions = [
{ key : 'HH:mm' , value : '17:00/17:30' }
] ;
export const movieRuntimeFormatOptions = [
{ key : 'hoursMinutes' , value : '1h 15m' } ,
{ key : 'minutes' , value : '75 mins' }
] ;
class UISettings extends Component {
//
@ -120,20 +115,6 @@ class UISettings extends Component {
< / F o r m G r o u p >
< / F i e l d S e t >
< FieldSet legend = { translate ( 'Movies' ) } >
< FormGroup >
< FormLabel > { translate ( 'SettingsRuntimeFormat' ) } < / F o r m L a b e l >
< FormInputGroup
type = { inputTypes . SELECT }
name = "movieRuntimeFormat"
values = { movieRuntimeFormatOptions }
onChange = { onInputChange }
{ ... settings . movieRuntimeFormat }
/ >
< / F o r m G r o u p >
< / F i e l d S e t >
< FieldSet legend = { translate ( 'Dates' ) } >
< FormGroup >
< FormLabel > { translate ( 'SettingsShortDateFormat' ) } < / F o r m L a b e l >
@ -197,19 +178,6 @@ class UISettings extends Component {
< / F i e l d S e t >
< FieldSet legend = { translate ( 'Language' ) } >
< FormGroup >
< FormLabel > { translate ( 'MovieInfoLanguage' ) } < / F o r m L a b e l >
< FormInputGroup
type = { inputTypes . SELECT }
name = "movieInfoLanguage"
values = { languages }
helpText = { translate ( 'MovieInfoLanguageHelpText' ) }
helpTextWarning = { translate ( 'MovieInfoLanguageHelpTextWarning' ) }
onChange = { onInputChange }
{ ... settings . movieInfoLanguage }
/ >
< / F o r m G r o u p >
< FormGroup >
< FormLabel > { translate ( 'UILanguage' ) } < / F o r m L a b e l >
< FormInputGroup
@ -1,4 +1,4 @@
const prowlarr Yellow = '#aaa ';
const prowlarr Orange = '#e66000 ';
module . exports = {
textColor : '#515253' ,
@ -17,7 +17,7 @@ module.exports = {
queueColor : '#7a43b6' ,
purple : '#7a43b6' ,
pink : '#ff69b4' ,
prowlarr Yellow ,
prowlarr Orange ,
helpTextColor : '#909293' ,
darkGray : '#888' ,
gray : '#adadad' ,
@ -26,7 +26,7 @@ module.exports = {
// Theme Colors
themeBlue : prowlarr Yellow ,
themeBlue : prowlarr Orange ,
themeRed : '#c4273c' ,
themeDarkColor : '#595959' ,
themeLightColor : '#707070' ,