Where is the SLMv0.4.1-alpha-46-g6fe14df-alpha build for windows, if any?
It's not significant, as yet. The only changes since before Christmas have been to the build system, not the running code.
Might as well trot this one out for all to “enjoy”.
If you want to d/l the source, make some changes, change the version number to something you find amusing, compile and use the result - that's entirely a matter for your good self.
It all happens in
src/version.h and
src/version.cpp.
// slimcoin version - intended for display purpose ONLY
#define SLIMCOIN_VERSION_MAJOR 0
#define SLIMCOIN_VERSION_MINOR 4
#define SLIMCOIN_VERSION_REVISION 0
#define SLIMCOIN_VERSION_BUILD 0
static const int SLIMCOIN_VERSION =
1000000 * SLIMCOIN_VERSION_MAJOR
+ 10000 * SLIMCOIN_VERSION_MINOR
+ 100 * SLIMCOIN_VERSION_REVISION
+ 1 * SLIMCOIN_VERSION_BUILD;
There's a wikipedia article on the subject of
software versioning. If you've read it and understood it all, you're ahead of me.
0.4.0 is where we are, 0.4.1 is what will be released after this period of testing is complete.
* gjhiggins makes a mental note to find time to learn how to make releases on github
Cheers
Graham
P.S. The
actual state of play on my m/c is (lightly edited for clarity):
gjh@ashpool:$ grep -rn BUILD_DESC slimcoin-master
slimcoin-master/build/build.h:1:#define BUILD_DESC "SLMv0.4.1-alpha-46-g6fe14df"
slimcoin-master/src/version.cpp:45:#define BUILD_DESC_FROM_COMMIT(maj,min,rev,build,commit) \
slimcoin-master/src/version.cpp:48:#define BUILD_DESC_FROM_UNKNOWN(maj,min,rev,build) \
slimcoin-master/src/version.cpp:51:#ifndef BUILD_DESC
slimcoin-master/src/version.cpp:53:# define BUILD_DESC BUILD_DESC_FROM_COMMIT(SLIMCOIN_VERSION_MAJOR, SLIMCOIN_VERSION_MINOR, SLIMCOIN_VERSION_REVISION, SLIMCOIN_VERSION_BUILD, GIT_COMMIT_ID)
slimcoin-master/src/version.cpp:55:# define BUILD_DESC BUILD_DESC_FROM_UNKNOWN(SLIMCOIN_VERSION_MAJOR, SLIMCOIN_VERSION_MINOR, SLIMCOIN_VERSION_REVISION, SLMCOIN_VERSION_BUILD)
slimcoin-master/src/version.cpp:67:const std::string CLIENT_BUILD(BUILD_DESC CLIENT_VERSION_SUFFIX);
slimcoin-master/share/genbuild.sh:26: NEWINFO="#define BUILD_DESC \"$DESC\""
(and there's a remaining typo, right there - “SLMCOIN_VERSION_BUILD” - hint, scroll to the right).