-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.h
42 lines (32 loc) · 1.35 KB
/
version.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
DGP - Deterministically Generated Passwords
Filename: version.h
Description: Version information required for Windows compilation.
Author: Adam Oldham ([email protected])
Copyright (c) 2020 Adam Oldham
All rights reserved.
Distributed under the MIT/X11 software license, see the accompanying
file license.txt or http://www.opensource.org/licenses/mit-license.php.
*/
#ifndef VERSION_H
#define VERSION_H
#define VER_FILEVERSION 0,2,0,0
#define VER_FILEVERSION_STR "0.2.0.0\0"
#define VER_PRODUCTVERSION 0,2,0,0
#define VER_PRODUCTVERSION_STR "0.2\0"
#define VER_SHORTNAME "DGP"
#define VER_COMPANYNAME_STR "ekcdd"
#define VER_FILEDESCRIPTION_STR "Generate complex and derived passwords"
#define VER_INTERNALNAME_STR "Deterministically Generated Passwords"
#define VER_LEGALCOPYRIGHT_STR "Copyright © 2020 ekcdd"
#define VER_LEGALTRADEMARKS1_STR "All Rights Reserved"
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
#ifdef QT
#define VER_ORIGINALFILENAME_STR "DGP-Qt.exe"
#define VER_PRODUCTNAME_STR "DGP-Qt"
#else
#define VER_ORIGINALFILENAME_STR "DGP-CLI.exe"
#define VER_PRODUCTNAME_STR "DGP-CLI"
#endif
#define VER_COMPANYDOMAIN_STR "https://www.github.com/ekcdd/DGP/"
#endif // VERSION_H