mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-29 14:35:29 -04:00
Add option to not truncate filname #340
This commit is contained in:
parent
e86e560ce0
commit
26da00f1a2
3 changed files with 13 additions and 5 deletions
|
@ -153,6 +153,9 @@ folder_format = "{albumartist} - {title} ({year}) [{container}] [{bit_depth}B-{s
|
|||
track_format = "{tracknumber}. {artist} - {title}{explicit}"
|
||||
# Only allow printable ASCII characters in filenames.
|
||||
restrict_characters = false
|
||||
# Truncate the filename if it is greater than 120 characters
|
||||
# Setting this to false may cause downloads to fail on some systems
|
||||
truncate = true
|
||||
|
||||
|
||||
# Last.fm playlists are downloaded by searching for the titles of the tracks
|
||||
|
@ -169,4 +172,4 @@ progress_bar = "dainty"
|
|||
|
||||
[misc]
|
||||
# Metadata to identify this config file. Do not change.
|
||||
version = "1.9.2"
|
||||
version = "1.9.6"
|
||||
|
|
|
@ -216,6 +216,7 @@ class RipCore(list):
|
|||
concurrency = session["downloads"]["concurrency"]
|
||||
return {
|
||||
"restrict_filenames": filepaths["restrict_characters"],
|
||||
"truncate_filenames": filepaths["truncate"],
|
||||
"parent_folder": session["downloads"]["folder"],
|
||||
"folder_format": filepaths["folder_format"],
|
||||
"track_format": filepaths["track_format"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue