mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-12-04 16:29:09 +01:00
Compare commits
2 Commits
1086a74f99
...
c449024584
Author | SHA1 | Date | |
---|---|---|---|
c449024584 | |||
41188360bf |
@ -1,4 +1,4 @@
|
|||||||
version: 13.4.{build}
|
version: 13.5.{build}
|
||||||
|
|
||||||
configuration:
|
configuration:
|
||||||
- Release
|
- Release
|
||||||
|
@ -3,7 +3,8 @@ unix:!macx:!android {
|
|||||||
} else {
|
} else {
|
||||||
TARGET = GPXSee
|
TARGET = GPXSee
|
||||||
}
|
}
|
||||||
VERSION = 13.4
|
VERSION = 13.5
|
||||||
|
|
||||||
|
|
||||||
QT += core \
|
QT += core \
|
||||||
gui \
|
gui \
|
||||||
|
@ -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 "13.4"
|
!define VERSION "13.5"
|
||||||
|
|
||||||
; The file to write
|
; The file to write
|
||||||
OutFile "GPXSee-${VERSION}_x64.exe"
|
OutFile "GPXSee-${VERSION}_x64.exe"
|
||||||
|
@ -59,7 +59,8 @@ public:
|
|||||||
RectC bounds() const;
|
RectC bounds() const;
|
||||||
Range zooms() const
|
Range zooms() const
|
||||||
{return Range(_subFiles.first().min, _subFiles.last().max);}
|
{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 points(const RectC &rect, int zoom, QList<Point> *list);
|
||||||
void paths(const RectC &searchRect, const RectC &boundsRect, int zoom,
|
void paths(const RectC &searchRect, const RectC &boundsRect, int zoom,
|
||||||
|
Loading…
Reference in New Issue
Block a user