Default collection sort order in desktop app
Are collections sorted at all?
When I rename a collection, its position may change, so there is some kind of ordering related to the name, but I cannot understand what that order is and why they are not at least sorted alphabetically.
I understand that implementing the sorting feature that works across various alphabets might be trickier than for just the Latin alphabet. For Latin alphabet, sorting can be performed via SQL/SQLite. SQLite does sort non-Latin strings as well, but it cannot perform case-incentive sorting if not built with the ICU extension.
Basically, I think the most natural default collection order would be alphabetical case-insensitive.

When I rename a collection, its position may change, so there is some kind of ordering related to the name, but I cannot understand what that order is and why they are not at least sorted alphabetically.
I understand that implementing the sorting feature that works across various alphabets might be trickier than for just the Latin alphabet. For Latin alphabet, sorting can be performed via SQL/SQLite. SQLite does sort non-Latin strings as well, but it cannot perform case-incentive sorting if not built with the ICU extension.
Basically, I think the most natural default collection order would be alphabetical case-insensitive.
Collections should be sorted as case-insensitive strings by default. No attempt to do any "smart" sorting should be made, because the result will be nonsensical most of the time regardless of any scheme.
https://en.wikipedia.org/wiki/Natural_sort_order
1) Adds a checkbox to the settings dialog controlling if natural sorting should be employed;
2) Adds associated preference handling in the preference file;
3) Extends the sorting logic to make this option possible.
is it going to be considered for inclusion in beta?
numeric: true
lines in intl.js:https://github.com/zotero/zotero/blob/6f8da4825e2d42f1d531fb685f23e7d00e2ceb05/chrome/content/zotero/xpcom/intl.js#L251-L265
extensions.zotero.naturalSorting
is now available in Zotero 7.0.14.