Show
Ignore:
Timestamp:
03/30/08 16:05:35 (9 months ago)
Author:
peter
Message:

source/punch_fits.cpp:
source/assert_results.cpp:
source/Makefile:
source/version.h:
source/parse_commands.cpp:
source/parse_print.cpp:
source/prt_comment.cpp:

Implement the new version numbering system for the C08 release.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/source/punch_fits.cpp

    r1891 r1896  
    725725STATIC void writeCloudyDetails( void ) 
    726726{ 
    727         char chVer[10]; 
    728727        char timeString[30]=""; 
    729728        char tempString[70]; 
     
    731730        long i, j, k; 
    732731 
    733         cdVersion( chVer ); 
    734  
    735732        /* usually print date and time info - do not if "no times" command entered,  
    736733         * which set this flag false */ 
     
    752749        } 
    753750 
    754         strcpy( tempString, "Generated by Cloudy version " ); 
    755         strcat( tempString, chVer ); 
     751        strcpy( tempString, "Generated by Cloudy " ); 
     752        strcat( tempString, version::Inst().chVersion ); 
    756753        bytesAdded += addComment( tempString ); 
    757754        bytesAdded += addComment( version::Inst().chInfo );