chiark / gitweb /
Assume initial digits in a track name are a sort key even without the
authorRichard Kettlewell <rjk@greenend.org.uk>
Sat, 18 Oct 2008 13:01:38 +0000 (14:01 +0100)
committerRichard Kettlewell <rjk@greenend.org.uk>
Sat, 18 Oct 2008 13:01:38 +0000 (14:01 +0100)
punctuation hints we've previously relied on.  This plays better with
the default filenames iTunes chooses.

lib/configuration.c

index 540084cd0654cedd2f4beef276037d84feeabf99..28bf8e95d3b8ab342adf314caf1fc0e825d54865 100644 (file)
@@ -1248,7 +1248,7 @@ static void config_postdefaults(struct config *c,
   int n;
 
   static const char *namepart[][4] = {
-    { "title",  "/([0-9]+ *[-:] *)?([^/]+)\\.[a-zA-Z0-9]+$", "$2", "display" },
+    { "title",  "/([0-9]+ *[-:]? *)?([^/]+)\\.[a-zA-Z0-9]+$", "$2", "display" },
     { "title",  "/([^/]+)\\.[a-zA-Z0-9]+$",           "$1", "sort" },
     { "album",  "/([^/]+)/[^/]+$",                    "$1", "*" },
     { "artist", "/([^/]+)/[^/]+/[^/]+$",              "$1", "*" },
@@ -1257,7 +1257,7 @@ static void config_postdefaults(struct config *c,
 #define NNAMEPART (int)(sizeof namepart / sizeof *namepart)
 
   static const char *transform[][5] = {
-    { "track", "^.*/([0-9]+ *[-:] *)?([^/]+)\\.[a-zA-Z0-9]+$", "$2", "display", "" },
+    { "track", "^.*/([0-9]+ *[-:]? *)?([^/]+)\\.[a-zA-Z0-9]+$", "$2", "display", "" },
     { "track", "^.*/([^/]+)\\.[a-zA-Z0-9]+$",           "$1", "sort", "" },
     { "dir",   "^.*/([^/]+)$",                          "$1", "*", "" },
     { "dir",   "^(the) ([^/]*)",                        "$2, $1", "sort", "i", },