Currently tags in the sidebar are sorted strictly in alphanumeric order. When tagging a lot of release versions, this leads to counterintuitive sorting:
3.4.0
3.4.1
3.4.10
3.4.11
3.4.2
…
With numerical sorting (like the Windows Explorer does for folder names), it would be much easier to find the most recent version:
3.4.0
3.4.1
3.4.2
…
3.4.10
3.4.11
- duplicates
-
SRCTREEWIN-10909 Sort git tags naturally
- Closed
-
SRCTREEWIN-2267 Ordering of the tags
- Closed
-
SRCTREEWIN-3905 Tags do not order properly
- Closed
-
SRCTREEWIN-5439 Can you add tag sort feature
- Closed
Unfortunately this doesn't sort properly if they are not fully numeric.
Some places use 'v1.0', 'v2.0' and so this sort is broken.
EDIT: It may be that it is working but is for some reason sorting ascending rather than descending which seems like the wrong kind of sort considering there is no way to limit the number of tags (which can be in the hundreds).