1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
baee8b3484 Version++ 2022-04-19 22:19:44 +02:00
c694c3e300 A (hopefully) complete path shape parsing fix
fixes #430
2022-04-19 22:17:19 +02:00
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
version: 10.6.{build} version: 10.7.{build}
configuration: configuration:
- Release - Release

View File

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

View File

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

View File

@ -238,12 +238,12 @@ bool NETFile::readShape(const NODFile *nod, SubFile::Handle &nodHdl,
if (!stream.readNext(lonDelta, latDelta)) if (!stream.readNext(lonDelta, latDelta))
break; break;
if (!(lonDelta | latDelta) && !startWithStream)
break;
if (hasAdjustBit && !stream.read(1, adjustBit)) if (hasAdjustBit && !stream.read(1, adjustBit))
return false; return false;
if (!(lonDelta | latDelta) && !startWithStream && !hasAdjustBit)
break;
stepsCnt++; stepsCnt++;
if (useEosBit) { if (useEosBit) {