mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-25 16:04:23 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
f83e3376b4 | |||
311aeecb27 | |||
338ace6dff | |||
51e9ef4416 | |||
ebefe54510 |
@ -1,5 +1,5 @@
|
|||||||
TARGET = GPXSee
|
TARGET = GPXSee
|
||||||
VERSION = 3.9
|
VERSION = 3.10
|
||||||
QT += core \
|
QT += core \
|
||||||
gui \
|
gui \
|
||||||
network
|
network
|
||||||
|
@ -344,13 +344,13 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/gui.cpp" line="363"/>
|
<location filename="../src/gui.cpp" line="363"/>
|
||||||
<source>Total time</source>
|
<source>Total time</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Total tid</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/gui.cpp" line="368"/>
|
<location filename="../src/gui.cpp" line="368"/>
|
||||||
<location filename="../src/gui.cpp" line="876"/>
|
<location filename="../src/gui.cpp" line="876"/>
|
||||||
<source>Moving time</source>
|
<source>Moving time</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Förflyttningstid</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/gui.cpp" line="375"/>
|
<location filename="../src/gui.cpp" line="375"/>
|
||||||
@ -808,7 +808,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/optionsdialog.cpp" line="155"/>
|
<location filename="../src/optionsdialog.cpp" line="155"/>
|
||||||
<source>Moving time</source>
|
<source>Moving time</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Förflyttningstid</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/optionsdialog.cpp" line="157"/>
|
<location filename="../src/optionsdialog.cpp" line="157"/>
|
||||||
@ -1000,12 +1000,12 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/trackitem.cpp" line="17"/>
|
<location filename="../src/trackitem.cpp" line="17"/>
|
||||||
<source>Total time</source>
|
<source>Total time</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Total tid</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/trackitem.cpp" line="19"/>
|
<location filename="../src/trackitem.cpp" line="19"/>
|
||||||
<source>Moving time</source>
|
<source>Moving time</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Förflyttningstid</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/trackitem.cpp" line="21"/>
|
<location filename="../src/trackitem.cpp" line="21"/>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
; The name of the installer
|
; The name of the installer
|
||||||
Name "GPXSee"
|
Name "GPXSee"
|
||||||
; Program version
|
; Program version
|
||||||
!define VERSION "3.9"
|
!define VERSION "3.10"
|
||||||
|
|
||||||
; The file to write
|
; The file to write
|
||||||
OutFile "GPXSee-${VERSION}.exe"
|
OutFile "GPXSee-${VERSION}.exe"
|
||||||
@ -163,6 +163,7 @@ Section "MSVC runtime" SEC_MSVC
|
|||||||
SetOutPath $TEMP
|
SetOutPath $TEMP
|
||||||
File "VC_redist.x86.exe"
|
File "VC_redist.x86.exe"
|
||||||
ExecWait '"$TEMP/VC_redist.x86.exe" /install /quiet /norestart'
|
ExecWait '"$TEMP/VC_redist.x86.exe" /install /quiet /norestart'
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
|
||||||
done:
|
done:
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
; The name of the installer
|
; The name of the installer
|
||||||
Name "GPXSee"
|
Name "GPXSee"
|
||||||
; Program version
|
; Program version
|
||||||
!define VERSION "3.9"
|
!define VERSION "3.10"
|
||||||
|
|
||||||
; The file to write
|
; The file to write
|
||||||
OutFile "GPXSee-${VERSION}_x64.exe"
|
OutFile "GPXSee-${VERSION}_x64.exe"
|
||||||
@ -165,6 +165,7 @@ Section "MSVC runtime" SEC_MSVC
|
|||||||
SetOutPath $TEMP
|
SetOutPath $TEMP
|
||||||
File "VC_redist.x64.exe"
|
File "VC_redist.x64.exe"
|
||||||
ExecWait '"$TEMP/VC_redist.x64.exe" /install /quiet /norestart'
|
ExecWait '"$TEMP/VC_redist.x64.exe" /install /quiet /norestart'
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
|
||||||
done:
|
done:
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
SpeedGraph::SpeedGraph(QWidget *parent) : GraphTab(parent)
|
SpeedGraph::SpeedGraph(QWidget *parent) : GraphTab(parent)
|
||||||
{
|
{
|
||||||
_units = Metric;
|
_units = Metric;
|
||||||
|
_timeType = Total;
|
||||||
_showTracks = true;
|
_showTracks = true;
|
||||||
|
|
||||||
setYUnits();
|
setYUnits();
|
||||||
|
Reference in New Issue
Block a user