Clone
ixen <ixen@copyhandler.com>
committed
on 26 Dec 15
Automatic version bump after tagging 1.40rc1
LoggerImprovements + 5 more
src/common/version.h (+2 -2)
1 1 #ifndef __VERSION_H__
2 2 #define __VERSION_H__
3 3
4 4 // note that this file is also being used by setup compiler;
5 5 // in this case the SETUP_COMPILER is defined with value 1
6 6 // Product name
7 7 #define PRODUCT_NAME "Copy Handler"
8 8 // shell extension
9 9 #define SHELLEXT_PRODUCT_NAME "Copy Handler Shell Extension"
10 10
11 11 // Version of program
12 12 #define PRODUCT_VERSION1 1
13 13 #define PRODUCT_VERSION2 40
14   #define PRODUCT_VERSION3 705
  14 #define PRODUCT_VERSION3 724
15 15 #define PRODUCT_VERSION4 0
16 16
17   #define PRODUCT_VERSION "1.40internal-svn705"
  17 #define PRODUCT_VERSION "1.40internal-svn724"
18 18
19 19 #if SETUP_COMPILER != 1
20 20         #define SHELLEXT_PRODUCT_FULL_VERSION SHELLEXT_PRODUCT_NAME " " PRODUCT_VERSION
21 21         #define SHELLEXT_PRODUCT_FULL_VERSION_T _T(SHELLEXT_PRODUCT_NAME) _T(" ") _T(PRODUCT_VERSION)
22 22
23 23         #define PRODUCT_FULL_VERSION PRODUCT_NAME " " PRODUCT_VERSION
24 24         #define PRODUCT_FULL_VERSION_T _T(PRODUCT_NAME) _T(" ") _T(PRODUCT_VERSION)
25 25 #endif
26 26
27 27 // copyright information
28 28 #define COPYRIGHT_INFO  "Copyright (C) 2001-2014 J�zef Starosczyk"
29 29 #define PRODUCT_SITE    "http://www.copyhandler.com"
30 30 #define CONTACT_INFO    "http://www.copyhandler.com/contact"
31 31
32 32 #endif
33 33