Open
Description
- Gitea version (or commit ref): 1.15.0+dev-171-gf719ffc78
- Git version: Not relevant
- Operating system:
- Not relevant
- Database (use
[x]
):- sqlite3
- Can you reproduce the bug at https://try.gitea.io:
- Log gist:
- Not relevant
Description
The alphabetical sorting is currently not alphabetical, as lower- and uppercase letters are "sorted" seperately. This is likely due to ASCII Code comparison (e.g. "B = 66", "a" = 97).
In the linked example i made three repositories to showcase this: Beta and Omega, starting both with uppercase letters and alpha, starting with a lowercase. With an alphabetical sorting it would be expected to be sorted as "alpha", "Beta", "Omega". Instead, "alpha" is pushed to the back.
Among other things, this can be an error source for people migrating old, inconsistently named VCS to Gitea.