version.h
00001 #ifndef KORG_VERSION_H 00002 #define KORG_VERSION_H 00003 00004 /* 00005 Version scheme: "x.y.z build". 00006 00007 "x.y.z" follow the kdelibs version KOrganizer is released with. 00008 00009 If "z" is 0, it the version is "x.y" 00010 00011 "build" is empty for final versions. For developer version "build" is 00012 something like "pre", "alpha1", "alpha2", "beta1", "beta2", "rc1", "rc2". 00013 00014 Examples in chronological order: 00015 00016 3.0 00017 3.0.1 00018 3.1 alpha1 00019 3.1 beta1 00020 3.1 beta2 00021 3.1 rc1 00022 3.1 00023 3.1.1 00024 3.2 pre 00025 3.2 alpha1 00026 */ 00027 00028 static const char korgVersion[] = "3.2.1"; 00029 00030 #endif