1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-18 21:04:24 +02:00

Compare commits

..

5 Commits
3.9 ... 3.10

Author SHA1 Message Date
f83e3376b4 Version++ 2017-02-13 20:17:05 +01:00
311aeecb27 Fixed broken OpenSSL/ANGLE install when MSVC runtime is installed. 2017-02-13 20:13:13 +01:00
338ace6dff Added missing inicialization 2017-02-13 20:12:48 +01:00
51e9ef4416 Merge pull request #20 from eson57/patch-3
Update gpxsee_sv.ts
2017-02-13 10:19:29 +01:00
ebefe54510 Update gpxsee_sv.ts 2017-02-13 04:19:23 +01:00
5 changed files with 11 additions and 8 deletions

View File

@ -1,5 +1,5 @@
TARGET = GPXSee
VERSION = 3.9
VERSION = 3.10
QT += core \
gui \
network

View File

@ -344,13 +344,13 @@
<message>
<location filename="../src/gui.cpp" line="363"/>
<source>Total time</source>
<translation type="unfinished"></translation>
<translation>Total tid</translation>
</message>
<message>
<location filename="../src/gui.cpp" line="368"/>
<location filename="../src/gui.cpp" line="876"/>
<source>Moving time</source>
<translation type="unfinished"></translation>
<translation>Förflyttningstid</translation>
</message>
<message>
<location filename="../src/gui.cpp" line="375"/>
@ -808,7 +808,7 @@
<message>
<location filename="../src/optionsdialog.cpp" line="155"/>
<source>Moving time</source>
<translation type="unfinished"></translation>
<translation>Förflyttningstid</translation>
</message>
<message>
<location filename="../src/optionsdialog.cpp" line="157"/>
@ -1000,12 +1000,12 @@
<message>
<location filename="../src/trackitem.cpp" line="17"/>
<source>Total time</source>
<translation type="unfinished"></translation>
<translation>Total tid</translation>
</message>
<message>
<location filename="../src/trackitem.cpp" line="19"/>
<source>Moving time</source>
<translation type="unfinished"></translation>
<translation>Förflyttningstid</translation>
</message>
<message>
<location filename="../src/trackitem.cpp" line="21"/>

View File

@ -5,7 +5,7 @@
; The name of the installer
Name "GPXSee"
; Program version
!define VERSION "3.9"
!define VERSION "3.10"
; The file to write
OutFile "GPXSee-${VERSION}.exe"
@ -163,6 +163,7 @@ Section "MSVC runtime" SEC_MSVC
SetOutPath $TEMP
File "VC_redist.x86.exe"
ExecWait '"$TEMP/VC_redist.x86.exe" /install /quiet /norestart'
SetOutPath $INSTDIR
done:
SectionEnd

View File

@ -5,7 +5,7 @@
; The name of the installer
Name "GPXSee"
; Program version
!define VERSION "3.9"
!define VERSION "3.10"
; The file to write
OutFile "GPXSee-${VERSION}_x64.exe"
@ -165,6 +165,7 @@ Section "MSVC runtime" SEC_MSVC
SetOutPath $TEMP
File "VC_redist.x64.exe"
ExecWait '"$TEMP/VC_redist.x64.exe" /install /quiet /norestart'
SetOutPath $INSTDIR
done:
SectionEnd

View File

@ -6,6 +6,7 @@
SpeedGraph::SpeedGraph(QWidget *parent) : GraphTab(parent)
{
_units = Metric;
_timeType = Total;
_showTracks = true;
setYUnits();