Menu

[1ea1fc]: / version.cpp  Maximize  Restore  History

Download this file

62 lines (52 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "version.h"
#include <QDebug>
#include <QRegExp>
bool checkVersion (const QString &v)
{
// returns true, if vym is able to read file regarding
// the version set with setVersion
return checkVersion (v,__VYM_VERSION);
}
bool checkVersion (const QString &v, const QString &vstatic)
{
bool ok=false;
int v1=0;
int v2=0;
int v3=0;
int vs1=0;
int vs2=0;
int vs3=0;
QRegExp rx("(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})");
int pos=rx.indexIn (v);
if (pos>-1)
{
v1=rx.cap(1).toInt(&ok);
if (ok) v2=rx.cap(2).toInt(&ok);
if (ok) v3=rx.cap(3).toInt(&ok);
}
pos=rx.indexIn (vstatic);
if (ok && pos>-1)
{
vs1=rx.cap(1).toInt(&ok);
if (ok) vs2=rx.cap(2).toInt(&ok);
if (ok) vs3=rx.cap(3).toInt(&ok);
}
if (!ok)
{
qWarning ()<<QString ("Warning: Checking version failed: v=%1").arg(v);
return false;
}
if (vs1 > v1)
return true;
if (vs1 < v1)
return false;
if (vs2 > v2)
return true;
if (vs2 < v2)
return false;
if (vs3 > v3)
return true;
if (vs3 < v3)
return false;
return true;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.