korganizer
version.h
00001 /* 00002 This file is part of KOrganizer. 00003 00004 Copyright (c) 1998-1999 Preston Brown <pbrown@kde.org> 00005 Copyright (c) 2000-2004 Cornelius Schumacher <schumacher@kde.org> 00006 00007 This program is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by 00009 the Free Software Foundation; either version 2 of the License, or 00010 (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with this program; if not, write to the Free Software 00019 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00020 00021 As a special exception, permission is given to link this program 00022 with any edition of Qt, and distribute the resulting executable, 00023 without including the source code for Qt in the source distribution. 00024 */ 00025 #ifndef KORG_VERSION_H 00026 #define KORG_VERSION_H 00027 00028 /* 00029 Version scheme: "x.y.z build". 00030 00031 x is the version number. 00032 y is the major release number. 00033 z is the minor release number. 00034 00035 "x.y.z" follow the kdelibs version KOrganizer is released with. 00036 00037 If "z" is 0, it the version is "x.y" 00038 00039 "build" is empty for final versions. For development versions "build" is 00040 something like "pre", "alpha1", "alpha2", "beta1", "beta2", "rc1", "rc2". 00041 00042 Examples in chronological order: 00043 00044 3.0 00045 3.0.1 00046 3.1 alpha1 00047 3.1 beta1 00048 3.1 beta2 00049 3.1 rc1 00050 3.1 00051 3.1.1 00052 3.2 pre 00053 3.2 alpha1 00054 */ 00055 00056 static const char korgVersion[] = "3.5.6"; 00057 00058 #endif