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

Compare commits

..

No commits in common. "0c0d5dd273150b28cb0c46d32c7ca7f62c2bcc5b" and "50100b02dcccd9b1946b1b1573b380e384436aa5" have entirely different histories.

6 changed files with 5 additions and 9 deletions

View File

@ -1,4 +1,4 @@
version: 13.42.{build} version: 13.41.{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.41
QT += core \ QT += core \
gui \ gui \

View File

@ -172,7 +172,7 @@
<message> <message>
<location filename="../src/data/data.cpp" line="254"/> <location filename="../src/data/data.cpp" line="254"/>
<source>VKX files</source> <source>VKX files</source>
<translation>Arxius VKX</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../src/data/data.cpp" line="255"/> <location filename="../src/data/data.cpp" line="255"/>

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.41"
; The file to write ; The file to write
OutFile "GPXSee-${VERSION}_x64.exe" OutFile "GPXSee-${VERSION}_x64.exe"

View File

@ -188,7 +188,7 @@ static bool polygonPointCb(const MapData::Poly *polygon, void *context)
if (baseType == TSSLPT || baseType == RCTLPT || baseType == I_TRNBSN if (baseType == TSSLPT || baseType == RCTLPT || baseType == I_TRNBSN
|| baseType == BRIDGE || baseType == I_BRIDGE || baseType == BUAARE || baseType == BRIDGE || baseType == I_BRIDGE || baseType == BUAARE
|| baseType == LNDARE || baseType == LNDRGN || baseType == I_BUNSTA || baseType == LNDARE || baseType == LNDRGN
|| type == SUBTYPE(ACHARE, 2) || type == SUBTYPE(I_ACHARE, 2) || type == SUBTYPE(ACHARE, 2) || type == SUBTYPE(I_ACHARE, 2)
|| type == SUBTYPE(ACHARE, 3) || type == SUBTYPE(I_ACHARE, 3) || type == SUBTYPE(ACHARE, 3) || type == SUBTYPE(I_ACHARE, 3)
|| type == SUBTYPE(ACHARE, 9) || type == SUBTYPE(I_ACHARE, 9) || type == SUBTYPE(ACHARE, 9) || type == SUBTYPE(I_ACHARE, 9)

View File

@ -232,11 +232,7 @@ QPixmap OZF::tile(int zoom, int x, int y)
tileSize().height(), QImage::Format_Indexed8); tileSize().height(), QImage::Format_Indexed8);
img.setColorTable(z.palette); img.setColorTable(z.palette);
#if QT_VERSION < QT_VERSION_CHECK(6, 9, 0)
return QPixmap::fromImage(img.mirrored()); return QPixmap::fromImage(img.mirrored());
#else // QT 6.9
return QPixmap::fromImage(img.flipped());
#endif // QT 6.9
} }
QSize OZF::size(int zoom) const QSize OZF::size(int zoom) const