1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-12-04 08:19:10 +01:00

Compare commits

...

2 Commits

Author SHA1 Message Date
c449024584 Version++ 2023-06-14 00:42:16 +02:00
41188360bf Make the Mapsforge tiles sufficient large for the layout 2023-06-14 00:40:00 +02:00
4 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
version: 13.4.{build}
version: 13.5.{build}
configuration:
- Release

View File

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

View File

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

View File

@ -59,7 +59,8 @@ public:
RectC bounds() const;
Range zooms() const
{return Range(_subFiles.first().min, _subFiles.last().max);}
int tileSize() const {return _tileSize;}
int tileSize() const
{return _tileSize < 384 ? _tileSize << 1 : _tileSize;}
void points(const RectC &rect, int zoom, QList<Point> *list);
void paths(const RectC &searchRect, const RectC &boundsRect, int zoom,