mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
This seems to be quite a bit faster and solves the wavy line problems on mac. I implemented a switch so this can be turned on/off in gGraphView::DrawTextQue() change use_pixmap_cache to false to turn it off. I'll remove the graph title and yaxis bits and put them back as this has the same effect
25 lines
658 B
C
25 lines
658 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#include <qglobal.h>
|
|
|
|
const int major_version=0;
|
|
const int minor_version=9;
|
|
const int revision_number=3;
|
|
const int release_number=0;
|
|
|
|
const QString VersionString=QString().sprintf("%i.%i.%i",major_version,minor_version,revision_number);
|
|
const QString FullVersionString=QString().sprintf("%i.%i.%i-%i",major_version,minor_version,revision_number,release_number);
|
|
|
|
const QString ReleaseStatus="beta";
|
|
|
|
#ifdef Q_OS_MAC
|
|
const QString PlatformString="MacOSX";
|
|
#elif defined(Q_WS_WIN32)
|
|
const QString PlatformString="Win32";
|
|
#elif defined(Q_WS_X11)
|
|
const QString PlatformString="Linux";
|
|
#endif
|
|
|
|
#endif // VERSION_H
|