UnityLauncherPro icon indicating copy to clipboard operation
UnityLauncherPro copied to clipboard

new unity version numbers (Unity 6)

Open unitycoder opened this issue 2 years ago • 4 comments

so there will be Unity 6 next year.. need to figure out how to sort version numbers again.

  • [ ] correctly sort version numbers for 3.x to 2023.x, then 6.x and forward
  • [ ] detect LTS versions from 6.x

https://blog.unity.com/news/unite-2023-keynote-game-development-unity-6

unitycoder avatar Nov 16 '23 14:11 unitycoder

seems to be 6000.. need to figure out what is LTS version then. https://unity.com/releases/editor/beta/6000.0.0b11

unity said: "Unity 6 Beta -> Unity 6 Preview -> Unity 6"

unitycoder avatar Mar 14 '24 16:03 unitycoder

so far works, correctly sorted image

unitycoder avatar Mar 14 '24 16:03 unitycoder

upload_2024-3-14_13-58-19 https://forum.unity.com/threads/unity-6-new-naming-convention.1558592/

unitycoder avatar Mar 14 '24 19:03 unitycoder

^that causes some issues, would have to fetch that info from their server.. too slow for full updates list, but probably need to request and cache it locally (for versions 6000 or later..)

both have the same number format because they are the same stream, with the same set of features etc. Whilst historically we would have bumped the minor version at the transition to LTS, that bump wasn't semantically correct, strictly speaking.

The LTS assignation is therefore more a signal of hardening/stabilisation, but not one that implies any semantic changes.

That being said, you can determine whether a given build is a Beta, Tech or LTS from the release metadata you can get from the release API: https://services.docs.unity.com/release/v1/#tag/Release/operation/getUnityReleases

https://forum.unity.com/threads/unity-6-new-naming-convention.1558592/#post-9702026

api: https://services.api.unity.com/unity/editor/release/v1/releases?limit=2&offset=0

unitycoder avatar Mar 15 '24 07:03 unitycoder

this seems to work already

unitycoder avatar Nov 11 '24 22:11 unitycoder