Aah, there’s an unfortunate issue with the zip archive, github makes a snapshot of the code at some point, and we have 0 control over when that happens, so if you have a recent issue, I have no idea when you’ll get the fix for it if you’re working from the zip archive.
The version string should look something like 0.4-996-gee92ac5
To break that down:
0.4 is the most recent tag, which in this case os 0.4, and ooold, this only changes when we release.
996 is the number of commits since the tag, this will (ahem, usually) steadily increment, and can more-or-less be treated as a sub-version number, but if there are development branches being referenced, there can be multiple different version of the code with the same number.
gee92ac5 is a git hash and VERY uniquely specifies what version of the code you have.
In fact that last number is the only one that’s useful at all for development, the other two are just helpful to see what version it is in very general terms.