1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-08 03:03:02 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
e43c4b44f4 Also show the depths for underwater rocks 2025-05-08 15:31:36 +02:00
16d5e656bf Version++ 2025-05-08 15:31:07 +02:00
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
version: 13.42.{build} version: 13.43.{build}
configuration: configuration:
- Release - Release

View File

@ -3,7 +3,7 @@ unix:!macx:!android {
} else { } else {
TARGET = GPXSee TARGET = GPXSee
} }
VERSION = 13.42 VERSION = 13.43
QT += core \ QT += core \
gui \ gui \

View File

@ -49,7 +49,7 @@ Unicode true
; The name of the installer ; The name of the installer
Name "GPXSee" Name "GPXSee"
; Program version ; Program version
!define VERSION "13.42" !define VERSION "13.43"
; The file to write ; The file to write
OutFile "GPXSee-${VERSION}_x64.exe" OutFile "GPXSee-${VERSION}_x64.exe"

View File

@ -447,7 +447,7 @@ MapData::Point::Point(uint type, const Coordinates &c, const Attributes &attr,
if (ok && clr > 0) if (ok && clr > 0)
_label = QString::fromUtf8("\xE2\x86\x95") + UNIT_SPACE _label = QString::fromUtf8("\xE2\x86\x95") + UNIT_SPACE
+ QString::number(clr) + UNIT_SPACE + hUnits(HUNI); + QString::number(clr) + UNIT_SPACE + hUnits(HUNI);
} else if (type == OBSTRN || type == WRECKS) { } else if (type == OBSTRN || type == WRECKS || type == UWTROC) {
double depth = _attr.value(VALSOU).toDouble(&ok); double depth = _attr.value(VALSOU).toDouble(&ok);
if (ok && _label.isEmpty()) if (ok && _label.isEmpty())
_label = QString::number(depth); _label = QString::number(depth);