Currently, the script always displays the media type and file format in album folder names (e.g., [CD - MP3], [Vinyl - FLAC]) when the %media% tag is present. There's no configuration option to disable this. Current behavior:
/B/Beatles, The/(1969) Abbey Road [CD - MP3]/
Desired behavior with _showMediaType set to 0:
/B/Beatles, The/(1969) Abbey Road/
Implementation: Add a new configuration variable in Section 2.2:
$noop( Show Media Type in Album Folder Name )
$noop( 0 = Don't show media type )
$noop( 1 = Show media type [CD - MP3] [Vinyl - FLAC] )
$noop( Example: "(1985) Album [CD - MP3]" vs "(1985) Album" )
$set(_showMediaType,1)
Then modify line 1134 from:
$noop( Media Type - [Vinyl] [CD] )
$if(%media%, [$title(%media% - $upper(%_extension%)]),)
To:
$noop( Media Type - [Vinyl] [CD] )
$if($eq(%_showMediaType%,1),$if(%media%, [$title(%media% - $upper(%_extension%)]),))
Until implemented, we can disable this by wrapping line 1134 in $noop():
Currently, the script always displays the media type and file format in album folder names (e.g., `[CD - MP3]`, `[Vinyl - FLAC]`) when the `%media%` tag is present. There's no configuration option to disable this. Current behavior:
```
/B/Beatles, The/(1969) Abbey Road [CD - MP3]/
```
Desired behavior with `_showMediaType` set to `0`:
```
/B/Beatles, The/(1969) Abbey Road/
```
Implementation: Add a new configuration variable in Section 2.2:
```
$noop( Show Media Type in Album Folder Name )
$noop( 0 = Don't show media type )
$noop( 1 = Show media type [CD - MP3] [Vinyl - FLAC] )
$noop( Example: "(1985) Album [CD - MP3]" vs "(1985) Album" )
$set(_showMediaType,1)
```
Then modify line 1134 from:
```
$noop( Media Type - [Vinyl] [CD] )
$if(%media%, [$title(%media% - $upper(%_extension%)]),)
```
To:
```
$noop( Media Type - [Vinyl] [CD] )
$if($eq(%_showMediaType%,1),$if(%media%, [$title(%media% - $upper(%_extension%)]),))
```
Until implemented, we can disable this by wrapping line 1134 in `$noop()`:
```
$noop($if(%media%, [$title(%media% - $upper(%_extension%)]),))
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Currently, the script always displays the media type and file format in album folder names (e.g.,
[CD - MP3],[Vinyl - FLAC]) when the%media%tag is present. There's no configuration option to disable this. Current behavior:Desired behavior with
_showMediaTypeset to0:Implementation: Add a new configuration variable in Section 2.2:
Then modify line 1134 from:
To:
Until implemented, we can disable this by wrapping line 1134 in
$noop():