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

Compare commits

...

7 Commits

Author SHA1 Message Date
0c0d5dd273 Revert "Micro-optimizations"
This reverts commit f90ac6a37efa6480194912440cc0e034dd06cf81.
2025-04-25 00:41:21 +02:00
Hosted Weblate
7059eafc81
Merge branch 'origin/master' into Weblate. 2025-04-24 23:52:35 +02:00
b4497aaa3e Silence warning when compiling on Qt >= 6.9 2025-04-24 23:51:31 +02:00
f90ac6a37e Micro-optimizations 2025-04-24 22:57:03 +02:00
28caeef105 Render BUNSTA areas 2025-04-24 22:39:17 +02:00
e2988d4621 Version++ 2025-04-24 22:38:56 +02:00
raf
285ffd680e
Translated using Weblate (Catalan)
Currently translated at 100.0% (492 of 492 strings)

Translation: GPXSee/Translations
Translate-URL: https://hosted.weblate.org/projects/gpxsee/translations/ca/
2025-04-24 11:01:42 +02:00
6 changed files with 9 additions and 5 deletions

View File

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

View File

@ -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 \

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 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"/>

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.41" !define VERSION "13.42"
; 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 == 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)

View File

@ -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