mirror of
https://github.com/fiso64/slsk-batchdl.git
synced 2024-12-22 06:22:41 +00:00
commit
This commit is contained in:
parent
431c18b12c
commit
4489d08761
3 changed files with 15 additions and 5 deletions
|
@ -78,9 +78,19 @@ namespace Data
|
||||||
if (str.Length > 0)
|
if (str.Length > 0)
|
||||||
str += " - ";
|
str += " - ";
|
||||||
if (Type == TrackType.Album)
|
if (Type == TrackType.Album)
|
||||||
str += Album;
|
{
|
||||||
else if (Title.Length > 0)
|
if (Album.Length > 0)
|
||||||
str += Title;
|
str += Album;
|
||||||
|
else
|
||||||
|
str += Title;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (Title.Length > 0)
|
||||||
|
str += Title;
|
||||||
|
else
|
||||||
|
str += Album;
|
||||||
|
}
|
||||||
if (!noInfo)
|
if (!noInfo)
|
||||||
{
|
{
|
||||||
if (Length > 0)
|
if (Length > 0)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
// undocumented options
|
// undocumented options
|
||||||
// --login, --random-login, --no-modify-share-count, --unknown-error-retries
|
// --login, --random-login, --no-modify-share-count, --unknown-error-retries
|
||||||
// --invalid-replace-str, --cond, --pref, --danger-words, --pref-danger-words, --strict-title, --strict-artist, --strict-album
|
// --invalid-replace-str, --cond, --pref, --strict-title, --strict-artist, --strict-album
|
||||||
// --fast-search-delay, --fast-search-min-up-speed
|
// --fast-search-delay, --fast-search-min-up-speed
|
||||||
// --min-album-track-count, --max-album-track-count, --extract-max-track-count, --extract-min-track-count
|
// --min-album-track-count, --max-album-track-count, --extract-max-track-count, --extract-min-track-count
|
||||||
|
|
||||||
|
|
|
@ -872,7 +872,7 @@ static partial class Program
|
||||||
Console.WriteLine();
|
Console.WriteLine();
|
||||||
|
|
||||||
Loop:
|
Loop:
|
||||||
string userInput = interactiveModeLoop().Trim();
|
string userInput = interactiveModeLoop().Trim().ToLower();
|
||||||
switch (userInput)
|
switch (userInput)
|
||||||
{
|
{
|
||||||
case "p":
|
case "p":
|
||||||
|
|
Loading…
Reference in a new issue