Changeset 4623 for pymolproxy


Ignore:
Timestamp:
Aug 19, 2014 6:02:17 PM (10 years ago)
Author:
ldelgass
Message:

bump versions

Location:
pymolproxy
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pymolproxy/branches/1.0/pymolproxy.c

    r4592 r4623  
    7979#include <pthread.h>
    8080#include <md5.h>
     81
     82#define PYMOLPROXY_VERSION "1.0.1"
    8183
    8284#undef INLINE
     
    21102112    DEBUG("Entering InitProxy\n");
    21112113#endif
    2112     /* Create tow pipes for communication with the external application. One
     2114    /* Create two pipes for communication with the external application. One
    21132115     * each for the applications's: stdin and stdout.  */
    21142116
     
    24432445        frecord = fopen(fileName, "w");
    24442446    }   
    2445     sprintf(version, "PymolProxy 1.0 (build %s)\n", SVN_VERSION);
     2447    sprintf(version, "PymolProxy %s (build %s)\n", PYMOLPROXY_VERSION, SVN_VERSION);
    24462448    numBytes = strlen(version);
    24472449    numWritten = write(CLIENT_WRITE, version, numBytes);
  • pymolproxy/trunk/pymolproxy.c

    r4592 r4623  
    7979#include <pthread.h>
    8080#include <md5.h>
     81
     82#define PYMOLPROXY_VERSION "1.1.0"
    8183
    8284#undef INLINE
     
    21102112    DEBUG("Entering InitProxy\n");
    21112113#endif
    2112     /* Create tow pipes for communication with the external application. One
     2114    /* Create two pipes for communication with the external application. One
    21132115     * each for the applications's: stdin and stdout.  */
    21142116
     
    24422444        sprintf(fileName, "/tmp/pymolproxy%d.py", getpid());
    24432445        frecord = fopen(fileName, "w");
    2444     }   
    2445     sprintf(version, "PymolProxy 1.0 (build %s)\n", SVN_VERSION);
     2446    }
     2447    sprintf(version, "PymolProxy %s (build %s)\n", PYMOLPROXY_VERSION, SVN_VERSION);
    24462448    numBytes = strlen(version);
    24472449    numWritten = write(CLIENT_WRITE, version, numBytes);
Note: See TracChangeset for help on using the changeset viewer.