Move Info tab content to a separate widget.
[maemo-rb.git] / rbutil / rbutilqt / version.h
bloba081c19fa6609c2864c5563166d58760e56f4850
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Riebeling
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
21 // PUREVERSION is needed to be able to just compare versions. It does not
22 // contain a build timestamp because it needs to be the same in different
23 // files
24 // VERSION is the plain version number, used for http User-Agent string.
25 // BUILDID is an additional build string to handle package updates (i.e.
26 // rebuilds because of issues like dependency problems or library updates).
27 // Usually empty.
28 #define BUILDID ""
29 #define VERSION "1.2.12" BUILDID
30 // PUREVERSION should identify the build uniquely. Use version string for now.
31 #define PUREVERSION VERSION
33 #define FULLVERSION VERSION", built "__DATE__" "__TIME__