v2.45 - new prefer special editions config option
#254 - Resolves this?
This commit is contained in:
parent
d3113f7f42
commit
24c40c9c6f
1 changed files with 17 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
scriptVersion="2.44"
|
scriptVersion="2.45"
|
||||||
scriptName="Audio"
|
scriptName="Audio"
|
||||||
|
|
||||||
### Import Settings
|
### Import Settings
|
||||||
|
@ -64,6 +64,10 @@ verifyConfig () {
|
||||||
if [ -z "$downloadClientTimeOut" ]; then
|
if [ -z "$downloadClientTimeOut" ]; then
|
||||||
downloadClientTimeOut="10m" # if not set, set to 10 minutes
|
downloadClientTimeOut="10m" # if not set, set to 10 minutes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -z "$preferSpecialEditions" ]; then
|
||||||
|
preferSpecialEditions="true"
|
||||||
|
fi
|
||||||
|
|
||||||
audioPath="$downloadPath/audio"
|
audioPath="$downloadPath/audio"
|
||||||
|
|
||||||
|
@ -111,7 +115,7 @@ Configuration () {
|
||||||
else
|
else
|
||||||
log "Add Deezer Top Artists is disabled (enable by setting addDeezerTopArtists=true)"
|
log "Add Deezer Top Artists is disabled (enable by setting addDeezerTopArtists=true)"
|
||||||
fi
|
fi
|
||||||
|
1708 W Rogers Ave, Baltimore, MD 21209, United States
|
||||||
if [ "$addDeezerTopAlbumArtists" == "true" ]; then
|
if [ "$addDeezerTopAlbumArtists" == "true" ]; then
|
||||||
log "Add Deezer Top $topLimit Album Artists is enabled"
|
log "Add Deezer Top $topLimit Album Artists is enabled"
|
||||||
else
|
else
|
||||||
|
@ -178,6 +182,12 @@ Configuration () {
|
||||||
log "Beets Tagging Disabled"
|
log "Beets Tagging Disabled"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$preferSpecialEditions" == "true" ]; then
|
||||||
|
log "Prefer Special Editions Enabled"
|
||||||
|
else
|
||||||
|
log "Prefer Special Editions Disabled"
|
||||||
|
fi
|
||||||
|
|
||||||
log "Failed Download Attempt Threshold: $failedDownloadAttemptThreshold"
|
log "Failed Download Attempt Threshold: $failedDownloadAttemptThreshold"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1291,7 +1301,11 @@ SearchProcess () {
|
||||||
# Get Release Titles
|
# Get Release Titles
|
||||||
OLDIFS="$IFS"
|
OLDIFS="$IFS"
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
lidarrReleaseTitles=$(cat /temp-release-list | awk '{ print length, $0 }' | sort -u -n -s -r | cut -d" " -f2-)
|
if [ "$preferSpecialEditions" == "true" ]; then
|
||||||
|
lidarrReleaseTitles=$(cat /temp-release-list | awk '{ print length, $0 }' | sort -u -n -s -r | cut -d" " -f2-)
|
||||||
|
else
|
||||||
|
lidarrReleaseTitles=$(cat /temp-release-list | awk '{ print length, $0 }' | sort -u -n -s | cut -d" " -f2-)
|
||||||
|
fi
|
||||||
lidarrReleaseTitles=($(echo "$lidarrReleaseTitles"))
|
lidarrReleaseTitles=($(echo "$lidarrReleaseTitles"))
|
||||||
IFS="$OLDIFS"
|
IFS="$OLDIFS"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue