Subversion Repositories Projects

Rev

Rev 279 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 279 Rev 305
Line 54... Line 54...
54
static const int SETTINGS_ID = 2;
54
static const int SETTINGS_ID = 2;
Line 55... Line 55...
55
 
55
 
Line 56... Line 56...
56
static const int SLEEP = 500000;
56
static const int SLEEP = 500000;
57
 
57
 
Line 58... Line 58...
58
static const QString QA_NAME = "QMK-Groundstation";
58
static const QString QA_NAME = "QMK-Groundstation";
59
static const QString QA_VERSION_NR = "0.7.3";
59
static const QString QA_VERSION_NR = "0.7.8";
60
 
60
 
61
#ifdef _BETA_
61
#ifdef _BETA_
62
    static const QString QA_VERSION = QA_VERSION_NR + " (BETA)";
62
    static const QString QA_VERSION = QA_VERSION_NR + " (BETA)";
63
    static const QString QA_HWVERSION = "FlightCtrl v0.72f & NaviCtrl v0.13a";
63
    static const QString QA_HWVERSION = "FlightCtrl v0.72p & NaviCtrl v0.14b";
64
#else
64
#else
Line -... Line 65...
-
 
65
    static const QString QA_VERSION = QA_VERSION_NR;
-
 
66
    static const QString QA_HWVERSION = "FlightCtrl v0.72p & NaviCtrl v0.14b";
-
 
67
#endif
-
 
68
 
-
 
69
#ifdef Q_OS_LINUX
-
 
70
    static const QString QA_OS = "Linux";
-
 
71
#else
-
 
72
    #ifdef Q_OS_DARWIN
-
 
73
        static const QString QA_OS = "OSX";
-
 
74
    #else
-
 
75
        #ifdef Q_OS_WIN32
-
 
76
            static const QString QA_OS = "Windows";
-
 
77
        #else
-
 
78
            static const QString QA_OS = "n/a";
-
 
79
        #endif
65
    static const QString QA_VERSION = QA_VERSION_NR;
80
    #endif
66
    static const QString QA_HWVERSION = "FlightCtrl v0.72p & NaviCtrl v0.14a";
81
#endif
67
#endif
82
 
68
 
83
 
Line 69... Line 84...
69
static const QString QA_DATE = "02.03.2009";
84
static const QString QA_DATE = "02.03.2009";
70
static const QString QA_YEAR = "2008-2009";
85
static const QString QA_YEAR = "2008-2009";
71
static const QString QA_AUTHOR = "Manuel Schrape";
86
static const QString QA_AUTHOR = "Manuel Schrape";
72
static const QString QA_EMAIL  = "manuel.schrape@gmx.de";
87
static const QString QA_EMAIL  = "manuel.schrape@gmx.de";
73
 
88
 
74
static const QString QA_ABOUT =
89
static const QString QA_ABOUT =
75
    "<HTML>"
90
    "<HTML>"
76
    "<p><b><font size=8>" + QA_NAME + "</font></b></p>"
91
    "<p><b><font size=8>" + QA_NAME + "</font></b></p>"
77
    "<br />"
92
    "<br />"
78
    "Version " + QA_VERSION + " - " + QA_DATE + ""
93
    "Version " + QA_VERSION + " - " + QA_DATE + " on " + QA_OS + ""