For a long time I've been using a pane view with (among others) a category/column "A-Z" for movies.
This uses the following expression for grouping:
if(isrange([name], a-z), formatrange([name],1,0), #)which results in a column with "#ABC...Z" for filtering, so something like
# -> 2 Guns | 2 Days in the Valley | 12 Monkeys | 2001: A Space Odyssey | ...
A -> A Beautiful Mind | À La Carte! | Almost Famous | Ärger Im Gepäck | Atomic Blonde | ...
B -> Babylon | Bad Santa | Barbarella | Barton Fink | ...
C -> Car Wash | Casablanca | Casino | Chinatown | ...
...
Z -> Zabriskie Point | Zero Effect | Zodiac | Zulu | ...After the update to MC30 the column looks like this:
# -> 2 Guns | 2 Days in the Valley | 12 Monkeys | 2001: A Space Odyssey | ...
(Others) -> À La Carte! | Ärger Im Gepäck
A -> A Beautiful Mind | Almost Famous | Atomic Blonde | ...
B -> Babylon | Bad Santa | Barbarella | Barton Fink | ...
C -> Car Wash | Casablanca | Casino | Chinatown | ...
...
Z -> Zabriskie Point | Zero Effect | Zodiac | Zulu | ...So umlauts and letters with accents are not handled like letters any more.
Interestingly, the ligature "Æ" is handled like a number, so the movie "Æon Flux" is sorted to "#" (should also go to "A"...).
Is this a bug or is it by design?
If it's by design, how to get around it?
I made some attempts with adding lines like
isequal([name], À), A,
isequal([name], Ä), A,to the expression, but that does not seem to work.
As I'm not that savy with the expression language, some help would be greatly appreciated