In Delphi XE2 the automatically generated build numbers functionality now uses some kind of date and time generated values, like this:
2.4.4386.838
The last two numbers change each time you build and are based on the current date and time:
Major = 2 (user defined)
Minor = 4 (user defined)
Release = 4386 (number of days since Jan 1 2000)
Build = 838 (number of seconds since 00:00:00)
I guess this new format for Release and Build numbers was borrowed from the .NET implementation which does something very similar. In .net, the last number (Build) is equal to the number of seconds since midnight local time, divided by 2. See this link for details on .net implementation: Determining Build Date the hard way
If this can be relied upon to stay this way, then now we have a better way to determine the compilation time instead of
Using IDE plugins
Using PE Headers hacks
The questions is not how to return to the old autoincrement version numbers functionality.
The questions is does XE2 really use the date and time as I showed above, starting from Jan 1, 2010 and adding days and seconds in Build and Release numbers?