Looking up the mod version

Leoreth

Blue Period
Moderator
Joined
Aug 23, 2009
Messages
37,059
Location
東京藝術大学
With the recent update I have introduced a mod version variable to keep track of changes in the mod, and help looking up which version of the mod someone is currently using.

You can look up this mod version as part of the "game name" inside the game:
Spoiler :
Civ4ScreenShot0343.JPG


Outside of the game, you can find it in Assets/XML/GlobalDefinesVersion.xml:
Code:
<?xml version="1.0"?>
<Civ4Defines xmlns="x-schema:CIV4GlobalDefinesSchema.xml">
    <Define>
        <DefineName>DAWN_OF_CIV_MOD_VERSION</DefineName>
        <DefineTextVal>1.16.6-1</DefineTextVal>
    </Define>
</Civ4Defines>

As you can see, the mod version includes the current release version (e.g. 1.16.6) with a suffix number. This number will increase with every additional commit, so it can be used to uniquely identify which commit the game is being played on. The version is also included in every save file being created from now on, so if you upload a save I no longer have to ask which version it is from.

But expect me to ask for your mod version when you report a bug without a save - here is where you can look it up.
 
Top Bottom