Document ascii-only

This commit is contained in:
Vincent Riquer 2013-10-09 18:21:44 +02:00
parent 0c91e93580
commit bd0b5b2d26
2 changed files with 9 additions and 0 deletions

View File

@ -70,8 +70,13 @@ Sections:
%{track}, %{track},
%{year}. %{year}.
Untagged files or files in unrecognized formats will not be changed. Untagged files or files in unrecognized formats will not be changed.
Surrounding a field with [] makes it optional, meaning renaming will still
happen if the corresponding tag is not defined.
* fat32compat <yes>/<no>: Rename files for compatibility with FAT32 * fat32compat <yes>/<no>: Rename files for compatibility with FAT32
filesystems. filesystems.
* ascii-only <yes>/<no>: Rename files for compatibility with ASCII-only
systems. Uses Perl with Text::Unidecode to replace cyrillic or kanji
with an ASCII representation.
* skip_mime-type <mime-type>: Files with mime-type <mime-type> will not * skip_mime-type <mime-type>: Files with mime-type <mime-type> will not
be included in that destination. For more than one mime-type, use multiple be included in that destination. For more than one mime-type, use multiple
times, as needed. The '*' character is a wildcard. times, as needed. The '*' character is a wildcard.

View File

@ -246,6 +246,8 @@ setupDestination() {
%{track}, %{track},
%{year}. %{year}.
Untagged files or files in unrecognized formats will not be changed. Untagged files or files in unrecognized formats will not be changed.
Surrounding a field with [] makes it optional, meaning renaming
will still happen if the corresponding tag is not defined.
Leave blank if you don't want file renaming. Leave blank if you don't want file renaming.
EODesc EODesc
@ -298,6 +300,8 @@ setupDestination() {
ASCII-only filenames (boolean): ASCII-only filenames (boolean):
Rename files for compatibility with ASCII-only systems (most car Rename files for compatibility with ASCII-only systems (most car
radios). radios).
Uses Perl with Text::Unidecode to replace cyrillic or kanji
with an ASCII representation.
EODesc EODesc
case ${destinationascii["$destination"]} in case ${destinationascii["$destination"]} in
0) initialvalue=n ;; 0) initialvalue=n ;;