Clone
ixen <ixen@copyhandler.com>
committed
on 08 Oct 16
Version bump to 1.42.
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   #define PRODUCT_VERSION2 41
  13 #define PRODUCT_VERSION2 42
14 14 #define PRODUCT_VERSION3 0
15 15 #define PRODUCT_VERSION4 0
16 16
17 17 #if SETUP_COMPILER != 1
18 18         #define PRODUCT_FULL_NUMERIC_VERSION ((unsigned long long)PRODUCT_VERSION1) << 48 | ((unsigned long long)PRODUCT_VERSION2) << 32 | ((unsigned long long)PRODUCT_VERSION3) << 16 | ((unsigned long long)PRODUCT_VERSION4)
19 19
20 20         #define STRINGIZE2(a) STRINGIZE(a)
21 21         #define STRINGIZE(a) L#a
22 22
23 23         #define PRODUCT_NUMERIC_VERSION STRINGIZE2(PRODUCT_VERSION1) L"." STRINGIZE2(PRODUCT_VERSION2) L"." STRINGIZE2(PRODUCT_VERSION3) L"." STRINGIZE2(PRODUCT_VERSION4)
24 24 #endif
25 25
26   #define PRODUCT_VERSION "1.41internal-current"
  26 #define PRODUCT_VERSION "1.42internal-current"
27 27
28 28 #if SETUP_COMPILER != 1
29 29         #define SHELLEXT_PRODUCT_FULL_VERSION SHELLEXT_PRODUCT_NAME " " PRODUCT_VERSION
30 30         #define SHELLEXT_PRODUCT_FULL_VERSION_T _T(SHELLEXT_PRODUCT_NAME) _T(" ") _T(PRODUCT_VERSION)
31 31
32 32         #define PRODUCT_FULL_VERSION PRODUCT_NAME " " PRODUCT_VERSION
33 33         #define PRODUCT_FULL_VERSION_T _T(PRODUCT_NAME) _T(" ") _T(PRODUCT_VERSION)
34 34 #endif
35 35
36 36 // copyright information
37 37 #define COPYRIGHT_INFO  "Copyright (C) 2001-2016 J�zef Starosczyk"
38 38 #define PRODUCT_SITE            "http://www.copyhandler.com"
39 39 #define UPDATE_CHECK_LINK_SECURE        "https://www.copyhandler.com/update-check"
40 40 #define UPDATE_CHECK_LINK_NONSECURE     "http://www.copyhandler.com/update-check"
41 41 #define CONTACT_INFO            "http://www.copyhandler.com/contact"
42 42
43 43 #endif