Wrong version number of the editor

Hello guys!
I’m not sure if it’s a bug, ir i’m doing something wrong when switching version with source code.
This is not a critical isssue, i’m just curious about it.
To check it out, yesterday i cloned a fresh repo from github.

These are the steps i followed:

  • clone the repo from github
  • created a new branch with the version i want to use (git checkout -b 4.10.1-release)
  • executed setup.bat and GenerateProjectFiles.bat
  • build it and run

It seems it’s using the code of 4.10.1, but at launch (and in the info menu) it shows 4.11.0

What is happening? :slight_smile:

Hi zamy,

This is an issue that we recently became aware of. When the 4.11 Preview 1 was made available, we mistakenly included that update in the Release branch on GitHub. While our latest official release version is 4.10.1, if you clone the release branch right now you will get 4.11 Preview 1 instead. In order to get 4.10.1, you will want to use the 4.10.1-release tag.

Thanks for the answer .
Actually, the command i used (git checkout -b 4.10.1-release) is supposed to create a local branch at the tag said.
Or am i wrong?

Ok, my bad.
It can’t be done with just one command, i have to first do a checkout on the tag and only then create the new branch.

EDIT actually the command was wrong, it should be:

git checkout 4.10.1-release -b My4.10.1-release