1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-05 15:12:51 +02:00

Compare commits

...

2 Commits
4.18 ... 4.19

5 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
version: 4.18.{build} version: 4.19.{build}
configuration: Release configuration: Release
platform: Any CPU platform: Any CPU
environment: environment:

View File

@ -1,5 +1,5 @@
TARGET = GPXSee TARGET = GPXSee
VERSION = 4.18 VERSION = 4.19
QT += core \ QT += core \
gui \ gui \
network network

View File

@ -5,7 +5,7 @@
; The name of the installer ; The name of the installer
Name "GPXSee" Name "GPXSee"
; Program version ; Program version
!define VERSION "4.18" !define VERSION "4.19"
; The file to write ; The file to write
OutFile "GPXSee-${VERSION}.exe" OutFile "GPXSee-${VERSION}.exe"

View File

@ -5,7 +5,7 @@
; The name of the installer ; The name of the installer
Name "GPXSee" Name "GPXSee"
; Program version ; Program version
!define VERSION "4.18" !define VERSION "4.19"
; The file to write ; The file to write
OutFile "GPXSee-${VERSION}_x64.exe" OutFile "GPXSee-${VERSION}_x64.exe"

View File

@ -566,6 +566,9 @@ void MapView::clear()
_wr = RectC(); _wr = RectC();
digitalZoom(0); digitalZoom(0);
// If not reset, causes huge redraw areas (and system memory exhaustion)
resetCachedContent();
} }
void MapView::showTracks(bool show) void MapView::showTracks(bool show)