mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-06-07 18:53:02 +02:00
Compare commits
7 Commits
50100b02dc
...
0c0d5dd273
Author | SHA1 | Date | |
---|---|---|---|
0c0d5dd273 | |||
|
7059eafc81 | ||
b4497aaa3e | |||
f90ac6a37e | |||
28caeef105 | |||
e2988d4621 | |||
|
285ffd680e |
@ -1,4 +1,4 @@
|
|||||||
version: 13.41.{build}
|
version: 13.42.{build}
|
||||||
|
|
||||||
configuration:
|
configuration:
|
||||||
- Release
|
- Release
|
||||||
|
@ -3,7 +3,7 @@ unix:!macx:!android {
|
|||||||
} else {
|
} else {
|
||||||
TARGET = GPXSee
|
TARGET = GPXSee
|
||||||
}
|
}
|
||||||
VERSION = 13.41
|
VERSION = 13.42
|
||||||
|
|
||||||
QT += core \
|
QT += core \
|
||||||
gui \
|
gui \
|
||||||
|
@ -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 type="unfinished"></translation>
|
<translation>Arxius VKX</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/data/data.cpp" line="255"/>
|
<location filename="../src/data/data.cpp" line="255"/>
|
||||||
|
@ -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.41"
|
!define VERSION "13.42"
|
||||||
|
|
||||||
; The file to write
|
; The file to write
|
||||||
OutFile "GPXSee-${VERSION}_x64.exe"
|
OutFile "GPXSee-${VERSION}_x64.exe"
|
||||||
|
@ -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 == LNDARE || baseType == LNDRGN || baseType == I_BUNSTA
|
||||||
|| 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)
|
||||||
|
@ -232,7 +232,11 @@ 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user