equal
deleted
inserted
replaced
|
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // @internalComponent |
|
15 // @released |
|
16 // |
|
17 |
|
18 #ifndef VERSION_H |
|
19 #define VERSION_H |
|
20 /** |
|
21 Constant values needs to be updated for every release of imgcheck tool |
|
22 |
|
23 @internalComponent |
|
24 @released |
|
25 */ |
|
26 /** |
|
27 The versions should be in three parts as |
|
28 <major>.<minor>.<maintenance> |
|
29 For any architectural change the major version should be incremented |
|
30 For any change in the input or output format or enhancements or feature support the minor version should be incremented |
|
31 For any patch or maintenance(defect fixes) changes the maintenance version should be incremented. |
|
32 The maintenance version should be reset to 0 if the minor version is incremented. |
|
33 */ |
|
34 const String gMajorVersion("V1"); |
|
35 const String gMinorVersion(".3"); |
|
36 const String gMaintenanceVersion(".5 \n"); |
|
37 |
|
38 /** |
|
39 Copyright to be displayed |
|
40 |
|
41 @internalComponent |
|
42 @released |
|
43 */ |
|
44 const String gCopyright("Copyright (c) 2007-2009 Nokia Corporation.\n"); |
|
45 |
|
46 /** |
|
47 Tool description |
|
48 |
|
49 @internalComponent |
|
50 @released |
|
51 */ |
|
52 const String gToolDesc("\nIMGCHECK - Tool for ROM/ROFS partition check "); |
|
53 |
|
54 #endif //VERSION_H |