gui/imageinfo.cpp: add release/beta to image version

Origin commit data
------------------
Branch: ni/coolstream
Commit: b461483f2f
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-10-11 (Thu, 11 Oct 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-10-11 20:33:11 +04:00
parent 2acba77dab
commit ae0ea13510

View File

@@ -219,9 +219,13 @@ void CImageInfo::paint()
std::string Version_Kernel;
if( uname(&uts_info) < 0 ) {
Version_Kernel = releaseCycle;
Version_Kernel += " ";
Version_Kernel += versionInfo.getType();
}else{
Version_Kernel = releaseCycle;
Version_Kernel += " - Kernel: ";
Version_Kernel += " ";
Version_Kernel += versionInfo.getType();
Version_Kernel += " - Kernel: ";
Version_Kernel += uts_info.release;
}